From: Thomas Walker Lynch Date: Wed, 31 Jul 2024 16:40:11 +0000 (+0000) Subject: grammar build, clean, rebuild, seems to work X-Git-Url: https://git.reasoningtechnology.com/style/static/git-favicon.png?a=commitdiff_plain;h=60ba17cf1f7da5ab8858ceecbc46636becf9ee6d;p=GQL-to-Cypher grammar build, clean, rebuild, seems to work --- diff --git a/developer/.gitignore b/developer/.gitignore index cc1918a..fd21199 100644 --- a/developer/.gitignore +++ b/developer/.gitignore @@ -1,17 +1,5 @@ -# Ignore intermediate build directories and files -/jvm/ -/javac/*.class -/javac/*.java - -# Ignore the generated ANTLR files -/javac/antlr/ - -# Ignore build directories for other tools -/linker/ -/machine/ -/compiled/ +/jvm/ +/javac/ANTLR/ /temporary/ -/experiment/ -/deprecated/ -/test/ + diff --git a/developer/test/test_0.gql b/developer/test/test_0.gql new file mode 100644 index 0000000..6217c9a --- /dev/null +++ b/developer/test/test_0.gql @@ -0,0 +1,10 @@ +{ + person(id: "123") { + name + age + friends { + name + age + } + } +} diff --git a/developer/test/test_0.sh b/developer/test/test_0.sh new file mode 100644 index 0000000..2903892 --- /dev/null +++ b/developer/test/test_0.sh @@ -0,0 +1,2 @@ + +java -cp developer/jvm/GQLEchoParser.jar gql.EchoParser test_0.gql