antlr:antlr4:4.10.0 (#5375)

Co-authored-by: rusefillc <sdfsdfqsf2334234234>
This commit is contained in:
rusefillc 2023-07-02 22:51:54 -04:00 committed by GitHub
parent e65e0f7e6d
commit 2c0d28c790
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 2947 additions and 1677 deletions

View File

@ -1,10 +1,7 @@
// Generated from CPP14Parser.g4 by ANTLR 4.5
package com.rusefi.livedata.generated;
// Generated from CPP14Parser.g4 by ANTLR 4.10
package com.rusefi.livedata.generated;
import org.antlr.v4.runtime.ParserRuleContext;
import org.antlr.v4.runtime.misc.NotNull;
import org.antlr.v4.runtime.tree.ErrorNode;
import org.antlr.v4.runtime.tree.TerminalNode;

View File

@ -1,8 +1,5 @@
// Generated from CPP14Parser.g4 by ANTLR 4.5
package com.rusefi.livedata.generated;
import org.antlr.v4.runtime.misc.NotNull;
// Generated from CPP14Parser.g4 by ANTLR 4.10
package com.rusefi.livedata.generated;
import org.antlr.v4.runtime.tree.ParseTreeListener;
/**

View File

@ -8,7 +8,6 @@ import com.rusefi.livedata.LiveDataParserSandbox;
import com.rusefi.livedata.ParseResult;
import org.antlr.v4.runtime.tree.ParseTree;
import org.antlr.v4.runtime.tree.ParseTreeWalker;
import org.junit.Ignore;
import org.junit.Test;
import java.io.IOException;
@ -40,7 +39,7 @@ public class LiveDataParserTest {
"}\n";
SourceCodePainter painter = run(name -> null, sourceCode);
verify(painter, times(7)).paintBackground(eq(CodeWalkthrough.ACTIVE_STATEMENT), any());
verify(painter, times(6)).paintBackground(eq(CodeWalkthrough.ACTIVE_STATEMENT), any());
}
@Test

View File

@ -3,7 +3,7 @@ ext {
junit : "junit:junit:4.13.2",
annotations : "org.jetbrains:annotations:16.0.1",
jsr305 : "com.google.code.findbugs:jsr305:3.0.2",
antlr : "org.antlr:antlr4:4.9.3", // use ANTLR version 4
antlr : "org.antlr:antlr4:4.10",
json : "com.googlecode.json-simple:json-simple:1.1.1",
mockito : "org.mockito:mockito-all:1.10.19",
javaxJson : "javax.json:javax.json-api:1.1.4",