Abstract
A node represents the abstract syntax tree that results from parsing an expression using Parser.parse.
It can be evaluated in a given context using the Node.eval method.
Evaluate this node in the given context and return result.
Evaluation context, a plain JavaScript object.
Convert into a unique string representation. Main purpose is unit testing and debugging.
Generated using TypeDoc
A node represents the abstract syntax tree that results from parsing an expression using Parser.parse.
It can be evaluated in a given context using the Node.eval method.