alefragnani / vscode-language-pascal

Pascal language extension for Visual Studio Code
MIT License
216 stars 47 forks source link

Adding missing data type keywords: #147

Closed robdaemon closed 4 months ago

robdaemon commented 5 months ago

Adds the following data type keywords: Int8, Int16, Int32, UInt8, UInt16, UInt32, IntPtr, UIntPtr

alefragnani commented 5 months ago

Hi @robdaemon ,

First of all, thank you for your PR.

Just out of curiosity, in which Pascal flavor are these data types available? Delphi, FreePascal, Oxygene?

Thank you

robdaemon commented 4 months ago

@alefragnani Sorry for the delayed response. These are from Free Pascal.

type UInt32 = Cardinal;
type UInt64 = QWord;
type UInt8 = Byte;
type UInt16 = Word;
alefragnani commented 4 months ago

Hi @robdaemon ,

No need to be sorry. The question was only to properly document in the release notes 😬

Thank you