1 Author: Gerardo Curiel <gerardo@sophie.gerardo.com.ve>
2 Author: Philip Rinn <rinni@gmx.net>
3 Description: Use antlr3 stable release API, missing ruleNestingLevel member on the antlr3 beta API
4 --- a/src/java/net/sf/jabref/bst/BstLexer.java
5 +++ b/src/java/net/sf/jabref/bst/BstLexer.java
6 @@ -9,8 +9,9 @@ import org.antlr.runtime.MismatchedSetEx
7 import org.antlr.runtime.NoViableAltException;
8 import org.antlr.runtime.RecognitionException;
9 import org.antlr.runtime.Token;
10 +import org.antlr.codegen.*;
12 -public class BstLexer extends Lexer {
13 +public class BstLexer extends ActionTranslatorLexer {
14 public static final int LETTER=21;
15 public static final int T29=29;
16 public static final int T33=33;
17 @@ -43,6 +44,9 @@ public class BstLexer extends Lexer {
18 public static final int IDLIST=4;
19 public static final int NUMERAL=22;
20 public static final int READ=13;
22 + int ruleNestingLevel = 0;
27 @@ -1661,4 +1665,4 @@ public class BstLexer extends Lexer {
32 \ No newline at end of file