Skip to content

Commit d47ee78

Browse files
committed
Update PythonLexerBase.js
1 parent 72a4320 commit d47ee78

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

port_JavaScript/PythonLexerBase.js

+16-16
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,22 @@ export default class PythonLexerBase extends antlr4.Lexer {
5757
this._ERR_TXT = " ERROR: ";
5858
}
5959

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+
6076
nextToken() { // reading the input stream until a return EOF
6177
this.checkNextToken();
6278
return this._pendingTokens.shift() /* .pollFirst() */; // add the queued token to the token stream
@@ -309,20 +325,4 @@ export default class PythonLexerBase extends antlr4.Lexer {
309325
// the ERROR_TOKEN will raise an error in the parser
310326
this.createAndAddPendingToken(PythonLexer.ERROR_TOKEN, Token.DEFAULT_CHANNEL, this._ERR_TXT + errMsg, this._ffgToken);
311327
}
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-
}
328328
}

0 commit comments

Comments
 (0)