aboutsummaryrefslogtreecommitdiff
path: root/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath.g3
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath.g3')
-rw-r--r--runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath.g322
1 files changed, 0 insertions, 22 deletions
diff --git a/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath.g3 b/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath.g3
deleted file mode 100644
index f61a7f8..0000000
--- a/runtime/CSharp3/Sources/Antlr3.Runtime.Test/Composition/VecMath.g3
+++ /dev/null
@@ -1,22 +0,0 @@
-grammar VecMath;
-
-options
-{
- ASTLabelType=CommonTree;
- output=AST;
- language=CSharp3;
-}
-
-import VecMath_Lexer, VecMath_Parser;
-
-@lexer::namespace{Antlr3.Runtime.Test.Composition}
-@parser::namespace{Antlr3.Runtime.Test.Composition}
-
-public
-main
- : prog
- ;
-
-dummy
- : 'DUMMY' // 1. If the parser or the composite grammar does not contain a token, no lexer is generated.
- ;