Gazebo_simulation-Frontend/node_modules/@webassemblyjs/wast-parser/esm/index.js
2020-12-21 10:29:31 -05:00

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