1. 首页
  2. 数据库
  3. 其它
  4. 语法分析:语法分析解析器 源码

语法分析:语法分析解析器 源码

上传者: 2021-02-22 05:58:18上传 ZIP文件 191.06KB 热度 26次
语法分析 语法分析(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
用户评论