Skip to content
Snippets Groups Projects
Commit 3828e182 authored by Ondřej Štorc's avatar Ondřej Štorc
Browse files

cli: Identifiers doesn't start with :

parent 68df6b4e
No related branches found
No related tags found
1 merge request!256Parser replacement with ANTLR
...@@ -122,7 +122,7 @@ INTEGER : [0-9]+; ...@@ -122,7 +122,7 @@ INTEGER : [0-9]+;
//FILE : ([0-9] | [a-z] | [A-Z] | '/' | '.' | '-' | '~' | '~' | '_' | ':' | '\\')+ ; //FILE : ([0-9] | [a-z] | [A-Z] | '/' | '.' | '-' | '~' | '~' | '_' | ':' | '\\')+ ;
   
// TODO: Id // TODO: Id
IDENTIFIER : ([a-z] | [A-Z] | '_' | ':' ) ([0-9] | [a-z] | [A-Z] | '_' | ':' )* ; IDENTIFIER : ([a-z] | [A-Z] | '_' ) ([0-9] | [a-z] | [A-Z] | '_' | ':' )* ;
   
   
STRING : DQUOTE ( STR_TEXT | EOL )* DQUOTE ; STRING : DQUOTE ( STR_TEXT | EOL )* DQUOTE ;
......
execute <:int #2
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment