You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This bug appeared in function declaration code, while assigning default value to a generic type without spacing between closing angle bracket and equality sign
For example, the following code: function doSomething(const var1 : integer; const myGenericType : GenericType<integer>=nil);
causes exception with the following error message: Failed to make AST for unit '<unitName>'. Problems on line : '31', column : 142' 'Greater' expected found '>='
The problem is currently solved by adding the space inbetween, but former code is a valid Delphi code 😃
The text was updated successfully, but these errors were encountered:
This bug appeared in function declaration code, while assigning default value to a generic type without spacing between closing angle bracket and equality sign
For example, the following code:
function doSomething(const var1 : integer; const myGenericType : GenericType<integer>=nil);
causes exception with the following error message:
Failed to make AST for unit '<unitName>'. Problems on line : '31', column : 142' 'Greater' expected found '>='
The problem is currently solved by adding the space inbetween, but former code is a valid Delphi code 😃
The text was updated successfully, but these errors were encountered: