fix a bug where the js tokenizer would fail if the last character of the source was an operator
This commit is contained in:
parent
409d5da90d
commit
a7aba40790
1 changed files with 5 additions and 4 deletions
1
ox/js.py
1
ox/js.py
|
@ -125,6 +125,7 @@ def tokenize(source):
|
|||
cursor += 1
|
||||
elif char in OPERATOR:
|
||||
type = 'operator'
|
||||
if cursor < length:
|
||||
string = char + source[cursor]
|
||||
while cursor < length and string in OPERATOR:
|
||||
cursor += 1
|
||||
|
|
Loading…
Reference in a new issue