fabriciocolombo / sonar-delphi

SonarQube Delphi Plugin
91 stars 46 forks source link

Accept PACKAGE keyword as identifier #38

Open fabriciocolombo opened 8 years ago

fabriciocolombo commented 8 years ago

The following code causes a parser error because PACKAGE is treated as a keyword.

unit PackageAsIdentifier;

interface

implementation

var
  Package: Boolean;

end.