blob: be8dd67f442319f115946e8a0029cf3341c43e42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* 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,
};
|