diff options
| author | bjculkin <bjculkin@localhost> | 2023-10-25 23:02:27 +0000 |
|---|---|---|
| committer | bjculkin <bjculkin@localhost> | 2023-10-25 23:02:27 +0000 |
| commit | a85154026879a191be2c581404a34f7b16a22322 (patch) | |
| tree | 084a8fa00e1fe4122172bee7c617aa5c03b2a33d | |
| parent | 02af075e89fbdeb22575f235a3acb2607e0b4edf (diff) | |
Tweak for new setup
| -rw-r--r-- | JPratt/.classpath | 13 | ||||
| -rw-r--r-- | JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/JPratt/.classpath b/JPratt/.classpath index 929a07e..3f0b463 100644 --- a/JPratt/.classpath +++ b/JPratt/.classpath @@ -24,5 +24,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 b0a3844..c2440a5 100644 --- a/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java +++ b/JPratt/src/main/java/bjc/pratt/blocks/GrammarParseBlock.java @@ -7,6 +7,7 @@ import bjc.pratt.PrattParser; 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; |
