diff options
Diffstat (limited to 'src/parser/parser.ts')
-rw-r--r-- | src/parser/parser.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser/parser.ts b/src/parser/parser.ts index b196866..934f3ff 100644 --- a/src/parser/parser.ts +++ b/src/parser/parser.ts @@ -512,7 +512,7 @@ function peg$parse(input, options) { return real; };// @ts-ignore var peg$f18 = function(bool) {// @ts-ignore - return bool; };// @ts-ignore + return { bool: bool.int }; };// @ts-ignore var peg$f19 = function(string) {// @ts-ignore return string; };// @ts-ignore @@ -5395,7 +5395,7 @@ export type VarStatement = Identifier; export type LabelStatement = Identifier; export type IntStatement = Integer; export type RealStatement = Real; -export type BoolStatement = Integer; +export type BoolStatement = { bool: any }; export type StringStatement = QuotedString; export type AccessStatement = OffsetStatement | SelectStatement; export type OffsetStatement = Integer; |