aboutsummaryrefslogtreecommitdiff
path: root/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath_Lexer.g3
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath_Lexer.g3')
-rw-r--r--runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath_Lexer.g317
1 files changed, 0 insertions, 17 deletions
diff --git a/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath_Lexer.g3 b/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath_Lexer.g3
deleted file mode 100644
index fde3390..0000000
--- a/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath_Lexer.g3
+++ /dev/null
@@ -1,17 +0,0 @@
-lexer grammar VecMath_Lexer;
-
-
-PRINT : 'print';
-ID : 'a'..'z'+ ;
-INT : '0'..'9'+ ;
-WS : (' '|'\r'|'\n')+ {Skip();} ;
-PLUS : '+';
-MINUS : '-';
-MULT : '*';
-EQUAL : '=';
-DOT : '.';
-OPEN_BRACE : '(';
-OPEN_SQUARE : '[';
-CLOSE_BRACE : ')';
-CLOSE_SQUARE : ']';
-COMMA : ','; \ No newline at end of file