bpdev75's picture
Enhance the dashhboard: Exploratory Data Analysis + metrics
272a563
raw
history blame contribute delete
221 Bytes
/**
* 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,
};