Source: form-script/ast/ast.js

/**
 * Instantiates a new AST (Abstract Syntax Tree) which serves as a base class for other ASTs
 * @class
 */
function AST(type) {
    this.type = type;
}

export { AST };