语法解析器 语法解析器是使用纯JavaScript的解析器,因此它既可以在浏览器中运行,也可以在nodejs中运行。 支持: lexer。 解析器。 Lexer createLexer可以帮助您创建词法分析器。 例 import { createLexer } from 'syntax-parser' ; const myLexer = createLexer ( [ { type : 'whitespace' , regexes : [ / ^ ( \s + ) / ] , ignore : true } , { type : 'wor