| oscript.NodeEvaluatorFactory
All known Subclasses: oscript.interpreter.InterpretedNodeEvaluatorFactory, oscript.compiler.CompiledNodeEvaluatorFactory,
NodeEvaluatorFactory | public interface NodeEvaluatorFactory (Code) | | A NodeEvaluatorFactory transforms a Node into a
NodeEvaluator . This forms the basis for the plug-in evaluator
and/or compiler. By creating a NodeEvaluator we can abstract
away wether or not the code gets compiled. It may seem weird to have the
interpreter be a pluggable component, but just think of it as a nice clean
distinction between the interpreter and the data.
author: Rob Clark (rob@ti.com) author: version: 1.3 |
createNodeEvaluator | public NodeEvaluator createNodeEvaluator(String name, Node node)(Code) | | Given a Node , generate a NodeEvaluator .
Parameters: name - name of node to process, for debugging Parameters: node - the node the node-evaluator |
|
|