Skip to content

Commit

Permalink
Упрощенный конструктор
Browse files Browse the repository at this point in the history
  • Loading branch information
nixel2007 committed Jan 8, 2019
1 parent a6aea4f commit 9f9b1da
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ public class BSLExtendedParser extends BSLParser {

private BSLLexer lexer = new BSLLexer(null);

public BSLExtendedParser() {
super(null);
}

public BSLExtendedParser(TokenStream input) {
super(input);
}
Expand Down

0 comments on commit 9f9b1da

Please sign in to comment.