>>> lexer = JsLexer() >>> list(lexer.lex("a = 1")) [('id', 'a'), ('ws', ' '), ('punct', '='), ('ws', ' '), ('dnum', '1')] This doesn't properly handle non-ASCII characters in the Javascript source.
This method overrides django.utils.jslex.Lexer.__init__.
Generated by nedoc v0.9 at 2020-12-29 14:04