语法分析:语法分析解析器 源码
语法分析 语法分析(lexer之后的编译器步骤)。 安装 npm i @jlguenego/syntax-analysis 用法 您应该使用Typescript以便以更简单的方式检查语法。 const t = defineTerminalAlphabet ( [ '+' , 'int' ] as const ) ; const nt = defineNonTerminalAlphabet ( [ 'S' , 'E' , 'F' ] as const ) ; type TA = typeof t ; type NTA = typeof nt ; const spec : CFGSpec < T
用户评论