This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/@webassemblyjs/wast-parser/esm/index.js

9 lines
282 B
JavaScript

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";