You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
309 B
JavaScript

"use strict";
const fs = require("fs");
const assert = require("assert");
const parse = require("../src/parse");
const printAST = require("../src/print-ast");
assert(process.argv[2] != null);
let tree = parse(fs.readFileSync(process.argv[2], "utf8"));
// console.dir(tree, { depth: null })
printAST(tree);