DIR: /proc/1991108/root/usr/share/node_modules/@webassemblyjs/wast-parser/esm/ |
Current File : //proc/1991108/root/usr/share/node_modules/@webassemblyjs/wast-parser/esm/index.js |
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 "@webassemblyjs/helper-numbers"; |