選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.js 282B

123456789
  1. import * as parser from "./grammar";
  2. import { tokenize } from "./tokenizer";
  3. export function parse(source) {
  4. var tokens = tokenize(source); // We pass the source here to show code frames
  5. var ast = parser.parse(tokens, source);
  6. return ast;
  7. }
  8. export * from "./number-literals";