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
The examples that come with the Object Pascal Handbook yield the following parse error
Failing (1) Expected EqualSign but found ProcedureKeyword (1) .\NestedClass.pas:263
The Offending file is here on github? https://github.com/MarcoDelphiBooks/ObjectPascalHandbook/tree/master/07/NestedTypes
Stripping down the code to this:
unit NestedClass; interface type TOne = class public type TInside = class type TInsideInside = class end; public procedure InsideHello; end; end; end.
--- We still get the error
Failing (1) Expected EqualSign but found ProcedureKeyword (1) .\NestedClass.pas:145
Will need to study this some more
See: http://docwiki.embarcadero.com/RADStudio/Rio/en/Nested_Type_Declarations
I manually applied the pull request #2 Fix the wrong look-ahead for the TypeDecl rule #2 and it fixes the above issue ( Thanks tomalla5120x ! )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The examples that come with the Object Pascal Handbook yield the following parse error
The Offending file is here on github?
https://github.com/MarcoDelphiBooks/ObjectPascalHandbook/tree/master/07/NestedTypes
Stripping down the code to this:
--- We still get the error
Will need to study this some more
See: http://docwiki.embarcadero.com/RADStudio/Rio/en/Nested_Type_Declarations
I manually applied the pull request #2
Fix the wrong look-ahead for the TypeDecl rule #2
and it fixes the above issue ( Thanks tomalla5120x ! )
The text was updated successfully, but these errors were encountered: