NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@webassemblyjs/wast-parser/esm/index.js

9 lines
282 B
Java
Raw Normal View History

2023-09-14 14:47:11 +08:00
import * as parser from "./grammar";
import { tokenize } from "./tokenizer";
export function parse(source) {
var tokens = tokenize(source); // We pass the source here to show code frames
var ast = parser.parse(tokens, source);
return ast;
}
export * from "./number-literals";