Your IP : 216.73.216.79


Current Path : /var/www/html/dynawebv3.blunetdev.com/node_modules/@webassemblyjs/wast-parser/esm/
Upload File :
Current File : /var/www/html/dynawebv3.blunetdev.com/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 "./number-literals";