/**
* 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 };
/**
* 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 };