Spaces:
Running
Running
File size: 221 Bytes
272a563 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/**
* The resulting parse tree nodes of the parse tree.
*/
function ParseNode(type, value, mode) {
this.type = type;
this.value = value;
this.mode = mode;
}
module.exports = {
ParseNode: ParseNode,
};
|