diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2008-06-18 22:39:10 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2008-06-18 22:39:10 +0000 |
| commit | f4a227a74e6d617aad33689f38513bb8bfffb71f (patch) | |
| tree | 35d9fe32773b6c1208f91d35b4723c8ae34cd44c /src/dom/work/Main.java | |
| parent | Display helper grid for LPELattice; automatically add helper paths for LPE Pa... (diff) | |
| download | inkscape-f4a227a74e6d617aad33689f38513bb8bfffb71f.tar.gz inkscape-f4a227a74e6d617aad33689f38513bb8bfffb71f.zip | |
for validation
(bzr r5997)
Diffstat (limited to 'src/dom/work/Main.java')
| -rw-r--r-- | src/dom/work/Main.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/dom/work/Main.java b/src/dom/work/Main.java new file mode 100644 index 000000000..d4d9177d3 --- /dev/null +++ b/src/dom/work/Main.java @@ -0,0 +1,15 @@ +import java.io.*;
+import antlr.*;
+
+public class Main {
+ public static void main(String[] args) {
+ try {
+ IDLLexer lexer = new IDLLexer(new DataInputStream(System.in));
+ IDLParser parser = new IDLParser(lexer);
+ parser.specification();
+ } catch(Exception e) {
+ System.err.println("exception: "+e);
+ }
+ }
+}
+
|
