-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
2,867 additions
and
4,230 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
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 |
---|---|---|
|
@@ -69,3 +69,4 @@ gen/ | |
*.orig | ||
/.idea/misc.xml | ||
*.tokens | ||
/.idea/inspectionProfiles/Project_Default.xml |
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
2 changes: 1 addition & 1 deletion
2
src/jmh/java/com/github/_1c_syntax/bsl/parser/JMXBSLLexerTest.java
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,7 +1,7 @@ | ||
/* | ||
* This file is a part of BSL Parser. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Copyright (c) 2018-2024 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]>, Sergey Batanov <[email protected]> | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
|
2 changes: 1 addition & 1 deletion
2
src/jmh/java/com/github/_1c_syntax/bsl/parser/JMXBSLParserTest.java
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,7 +1,7 @@ | ||
/* | ||
* This file is a part of BSL Parser. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Copyright (c) 2018-2024 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]>, Sergey Batanov <[email protected]> | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
|
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,7 +1,7 @@ | ||
/* | ||
* This file is a part of BSL Parser. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Copyright (c) 2018-2024 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]>, Sergey Batanov <[email protected]> | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
|
@@ -23,9 +23,12 @@ | |
|
||
import org.antlr.v4.runtime.CharStreams; | ||
|
||
public class BSLMethodDescriptionTokenizer extends Tokenizer<BSLMethodDescriptionParser.MethodDescriptionContext, BSLMethodDescriptionParser> { | ||
public class BSLMethodDescriptionTokenizer | ||
extends Tokenizer<BSLMethodDescriptionParser.MethodDescriptionContext, BSLMethodDescriptionParser> { | ||
public BSLMethodDescriptionTokenizer(String content) { | ||
super(content + "\n", new BSLMethodDescriptionLexer(CharStreams.fromString(""), true), BSLMethodDescriptionParser.class); | ||
super(content + "\n", | ||
new BSLMethodDescriptionLexer(CharStreams.fromString(""), true), | ||
BSLMethodDescriptionParser.class); | ||
} | ||
|
||
@Override | ||
|
98 changes: 0 additions & 98 deletions
98
src/main/java/com/github/_1c_syntax/bsl/parser/BSLParserRuleContext.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/* | ||
* This file is a part of BSL Parser. | ||
* | ||
* Copyright (c) 2018-2023 | ||
* Copyright (c) 2018-2024 | ||
* Alexey Sosnoviy <[email protected]>, Nikita Fedkin <[email protected]>, Sergey Batanov <[email protected]> | ||
* | ||
* SPDX-License-Identifier: LGPL-3.0-or-later | ||
|
@@ -26,7 +26,7 @@ | |
|
||
public class BSLTokenizer extends Tokenizer<BSLParser.FileContext, BSLParser> { | ||
public BSLTokenizer(String content) { | ||
super(content, new BSLLexer(CharStreams.fromString(""), true), BSLParser.class); | ||
this(content, new BSLLexer(CharStreams.fromString(""), true)); | ||
} | ||
|
||
public BSLTokenizer(String content, Lexer lexer) { | ||
|
55 changes: 0 additions & 55 deletions
55
src/main/java/com/github/_1c_syntax/bsl/parser/CRAwareLexerATNSimulator.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.