1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

fix the type of true and false

This commit is contained in:
Kevin Glynn 2011-01-21 19:41:20 +01:00
parent 54acb6c050
commit d27c25c2c8

View File

@ -1468,8 +1468,8 @@ literal returns [TypeRepTemplate dotNetType]
| Character_literal { ns = "System.Char"; }
| STRINGLITERAL { ns = "System.String"; }
| Verbatim_string_literal { ns = "System.String"; }
| TRUE { ns = "System.Bool"; }
| FALSE { ns = "System.Bool"; }
| TRUE { ns = "System.Boolean"; }
| FALSE { ns = "System.Boolean"; }
| NULL { ns = "System.Object"; }
;