biofriction-wp-theme/node_modules/@webassemblyjs/wast-parser/esm/index.js

9 lines
282 B
JavaScript
Raw Normal View History

2021-10-26 14:18:09 +02: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";