-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved action-lang notation script stuff to notation-script module. Re…
…moved basic antlr test
- Loading branch information
1 parent
f8b58a5
commit 3430c81
Showing
22 changed files
with
32 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +0,0 @@ | ||
plugins { | ||
id 'java' | ||
id 'antlr' | ||
} | ||
|
||
version = '0.0.1-SNAPSHOT' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
dependencies { | ||
antlr 'org.antlr:antlr4:4.11.1' // use ANTLR version 4 | ||
} | ||
compileJava { | ||
// options.compilerArgs << "-XepExcludedPaths:.*/build/generated-src/.*" // for antlr generated folder to remove errorprone warnings from ANTLR | ||
} | ||
generateGrammarSource { | ||
maxHeapSize = "64m" | ||
arguments += [ | ||
"-visitor", "-long-messages", | ||
] | ||
} | ||
82 changes: 0 additions & 82 deletions
82
action-lang/src/test/java/me/retrodaredevil/action/lang/ArithmeticAntlrTest.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
plugins { | ||
id 'java' | ||
id 'antlr' | ||
} | ||
|
||
version = '0.0.1-SNAPSHOT' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
|
||
dependencies { | ||
antlr 'org.antlr:antlr4:4.11.1' // use ANTLR version 4 | ||
api "com.fasterxml.jackson.core:jackson-annotations:$jacksonVersion" | ||
api "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion" | ||
} | ||
compileJava { | ||
// options.compilerArgs << "-XepExcludedPaths:.*/build/generated-src/.*" // for antlr generated folder to remove errorprone warnings from ANTLR | ||
} | ||
generateGrammarSource { | ||
maxHeapSize = "64m" | ||
arguments += [ | ||
"-visitor", "-long-messages", | ||
] | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters