diff options
author | Chimrod <> | 2024-02-05 09:37:27 +0100 |
---|---|---|
committer | Chimrod <> | 2024-02-08 11:45:10 +0100 |
commit | 82c63921c09e2b07d3d5fbf82a912bbe707ffecb (patch) | |
tree | 74cae4200f0405eb2bb2f569d82afd28fe6e2332 /lib/qparser/expression_parser.messages | |
parent | e2bcf0a034b9c83b44158d299b2b255d328b17b0 (diff) |
Added a new error message
Diffstat (limited to 'lib/qparser/expression_parser.messages')
-rw-r--r-- | lib/qparser/expression_parser.messages | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/qparser/expression_parser.messages b/lib/qparser/expression_parser.messages index 264e37d..6bf33d9 100644 --- a/lib/qparser/expression_parser.messages +++ b/lib/qparser/expression_parser.messages @@ -36,6 +36,10 @@ main: LOCATION_START EOL IF IDENT COLUMN EOL ELSE EOL LOCATION_END A block starting with `IF` is not closed by `END` If there are nested blocks, the error will points the highest block. +main: LOCATION_START EOL ACT IDENT COLUMN EOL IDENT AMPERSAND LOCATION_END + + A block starting with `ACT` is not closed by `END` + main: LOCATION_START EOL IDENT AMPERSAND END Unexpected `END`. @@ -107,3 +111,4 @@ main: LOCATION_START EOL ACT IDENT COLUMN EOL END TEXT_MARKER main: LOCATION_START EOL FUNCTION L_PAREN IDENT COMA IDENT EOL Unclosed `(` + |