diff options
| -rw-r--r-- | JPratt/.classpath | 13 | ||||
| -rw-r--r-- | JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java | 2 |
2 files changed, 15 insertions, 0 deletions
diff --git a/JPratt/.classpath b/JPratt/.classpath index 2236a24..ba3f517 100644 --- a/JPratt/.classpath +++ b/JPratt/.classpath @@ -26,5 +26,18 @@ <attribute name="test" value="true"/> </attributes> </classpathentry> + <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + <attribute name="optional" value="true"/> + </attributes> + </classpathentry> + <classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"> + <attributes> + <attribute name="maven.pomderived" value="true"/> + <attribute name="test" value="true"/> + <attribute name="optional" value="true"/> + </attributes> + </classpathentry> <classpathentry kind="output" path="target/classes"/> </classpath> diff --git a/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java b/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java index b18c8c4..446b80b 100644 --- a/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java +++ b/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java @@ -9,6 +9,8 @@ import bjc.pratt.commands.CommandResult; import bjc.pratt.tokens.Token; import bjc.pratt.tokens.TokenStream; import bjc.typeclasses.Isomorphism; +import bjc.data.Tree; +import bjc.functypes.*; import bjc.utils.parserutils.ParserException; /** |
