We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For the following valid Delphi code:
VAR List: TList<Integer>= nil;
you get the error: 'Greater' expected found '>='
'Greater' expected found '>='
The important thing is >= of course. You don't get the error if you just put a space in between those two symbols:
>=
VAR List: TList<Integer> = nil;
The text was updated successfully, but these errors were encountered:
Workaround for GreaterEqual symbol in TypeSimple (fix RomanYankovsky#317
fbe6757
)
9e1ac5f
5122e43
Added Test for RomanYankovsky#317
99ba3cc
9c44d60
I added comment in the #318. Same here: @RomanYankovsky time to close that issue
Sorry, something went wrong.
No branches or pull requests
For the following valid Delphi code:
you get the error:
'Greater' expected found '>='
The important thing is
>=
of course.You don't get the error if you just put a space in between those two symbols:
The text was updated successfully, but these errors were encountered: