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
Fix issue Failure to parse HIGHCHARUNICODE compiler directive
joewhite#4
Add an ignored directive type for "HIGHCHARUNICODE"]
to Source/DGrok.Framework/Framework/TokenFilter.cs
Add a new test case HighCharUnicodeCompilerDirectivesAreIgnored()
to verifiy that {$HIGHCHARUNICODE ... } is ignored
( doesn't really check the value of the parameter ON/OFF )
The examples that come with the Object Pascal Handbook yield the following parse error
This example can be found here on github:
https://github.com/MarcoDelphiBooks/ObjectPascalHandbook/tree/master/06/CharTest
HIGHCHARUNICODE is described here:
http://docwiki.embarcadero.com/RADStudio/Sydney/en/HIGHCHARUNICODE_directive_(Delphi)
Assuming that we need to add
_directiveTypes["HIGHCHARUNICODE"] = DirectiveType.Ignored;
to the TokenFilter constructor in TokenFilter.cs
The text was updated successfully, but these errors were encountered: