@@ -57,6 +57,22 @@ export default class PythonLexerBase extends antlr4.Lexer {
57
57
this . _ERR_TXT = " ERROR: " ;
58
58
}
59
59
60
+ reset ( ) {
61
+ this . _indentLengthStack = [ ] ;
62
+ this . _pendingTokens = [ ] ;
63
+ this . _previousPendingTokenType = 0 ;
64
+ this . _lastPendingTokenTypeFromDefaultChannel = 0 ;
65
+ this . _opened = 0 ;
66
+ this . _wasSpaceIndentation = false ;
67
+ this . _wasTabIndentation = false ;
68
+ this . _wasIndentationMixedWithSpacesAndTabs = false ;
69
+ this . _INVALID_LENGTH = - 1 ;
70
+ this . _curToken = null ;
71
+ this . _ffgToken = null ;
72
+ this . _ERR_TXT = " ERROR: " ;
73
+ super . reset ( ) ;
74
+ }
75
+
60
76
nextToken ( ) { // reading the input stream until a return EOF
61
77
this . checkNextToken ( ) ;
62
78
return this . _pendingTokens . shift ( ) /* .pollFirst() */ ; // add the queued token to the token stream
@@ -309,20 +325,4 @@ export default class PythonLexerBase extends antlr4.Lexer {
309
325
// the ERROR_TOKEN will raise an error in the parser
310
326
this . createAndAddPendingToken ( PythonLexer . ERROR_TOKEN , Token . DEFAULT_CHANNEL , this . _ERR_TXT + errMsg , this . _ffgToken ) ;
311
327
}
312
-
313
- reset ( ) {
314
- this . _indentLengthStack = [ ] ;
315
- this . _pendingTokens = [ ] ;
316
- this . _previousPendingTokenType = 0 ;
317
- this . _lastPendingTokenTypeFromDefaultChannel = 0 ;
318
- this . _opened = 0 ;
319
- this . _wasSpaceIndentation = false ;
320
- this . _wasTabIndentation = false ;
321
- this . _wasIndentationMixedWithSpacesAndTabs = false ;
322
- this . _INVALID_LENGTH = - 1 ;
323
- this . _curToken = null ;
324
- this . _ffgToken = null ;
325
- this . _ERR_TXT = " ERROR: " ;
326
- super . reset ( ) ;
327
- }
328
328
}
0 commit comments