Skip to content

Commit 2f9eb47

Browse files
committed
Moved libraries inside project, bumped ANTLR version to 4.9
1 parent db282f0 commit 2f9eb47

12 files changed

Lines changed: 11 additions & 35 deletions

.idea/artifacts/DecafKotlin_jar.xml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.idea/libraries/antlr4_4_8_2_SNAPSHOT_complete.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DecafKotlin.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<orderEntry type="inheritedJdk" />
1212
<orderEntry type="sourceFolder" forTests="false" />
1313
<orderEntry type="library" name="KotlinJavaRuntime" level="project" />
14-
<orderEntry type="library" name="antlr4-4.8-2-SNAPSHOT-complete" level="project" />
14+
<orderEntry type="library" name="antlr-4.9-complete" level="project" />
1515
<orderEntry type="library" name="picocli-4.5.2" level="project" />
1616
</component>
1717
</module>

libs/antlr-4.9-complete.jar

2 MB
Binary file not shown.

libs/picocli-4.5.2.jar

381 KB
Binary file not shown.

src/main/kotlin/deep/decaf/parser/DecafBaseListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from /home/deep/work/kotlin/DecafKotlin/src/grammar/Decaf.g4 by ANTLR 4.8
1+
// Generated from /home/deep/IdeaProjects/DecafCompiler/src/grammar/Decaf.g4 by ANTLR 4.9
22
package deep.decaf.parser;
33

44
import org.antlr.v4.runtime.ParserRuleContext;

src/main/kotlin/deep/decaf/parser/DecafBaseVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from /home/deep/work/kotlin/DecafKotlin/src/grammar/Decaf.g4 by ANTLR 4.8
1+
// Generated from /home/deep/IdeaProjects/DecafCompiler/src/grammar/Decaf.g4 by ANTLR 4.9
22
package deep.decaf.parser;
33
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
44

src/main/kotlin/deep/decaf/parser/DecafLexer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from /home/deep/work/kotlin/DecafKotlin/src/grammar/Decaf.g4 by ANTLR 4.8
1+
// Generated from /home/deep/IdeaProjects/DecafCompiler/src/grammar/Decaf.g4 by ANTLR 4.9
22
package deep.decaf.parser;
33
import org.antlr.v4.runtime.Lexer;
44
import org.antlr.v4.runtime.CharStream;
@@ -11,7 +11,7 @@
1111

1212
@SuppressWarnings({"all", "warnings", "unchecked", "unused", "cast"})
1313
public class DecafLexer extends Lexer {
14-
static { RuntimeMetaData.checkVersion("4.8", RuntimeMetaData.VERSION); }
14+
static { RuntimeMetaData.checkVersion("4.9", RuntimeMetaData.VERSION); }
1515

1616
protected static final DFA[] _decisionToDFA;
1717
protected static final PredictionContextCache _sharedContextCache =

src/main/kotlin/deep/decaf/parser/DecafListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from /home/deep/work/kotlin/DecafKotlin/src/grammar/Decaf.g4 by ANTLR 4.8
1+
// Generated from /home/deep/IdeaProjects/DecafCompiler/src/grammar/Decaf.g4 by ANTLR 4.9
22
package deep.decaf.parser;
33
import org.antlr.v4.runtime.tree.ParseTreeListener;
44

0 commit comments

Comments
 (0)