UNPKG

ast-parentchild

Version:

Convert your JavaScript file to acron AST format and then output a json file whihc have parent-child realtionship between nodes

16 lines (7 loc) 203 B
const ArrayNode = require('../node/array.js'); const HEIGHT = 50; module.exports = class TreeLayout { constructor(options={}) { this.height = options.height || HEIGHT; } }