Packagesystem.evaluators
Interfacepublic interface Evaluable
Implementors ColorEvaluator, DateEvaluator, EdenEvaluator, Lang, MathEvaluator, MultiEvaluator, PropertyEvaluator, ReferenceEvaluator, RomanEvaluator, TypeEvaluator

An Evaluator is a class that can interpret an object to another object.

It's not necessary a parser, but the most common cases would be a string being evaluated to an object structure.

Note: eval always take one and only one argument, if you need to configure the evaluator pass different arguments in the constructor.



Public Methods
 MethodDefined By
  
eval(o:*):*
Evaluates the specified object.
Evaluable
Method Detail
eval()method
public function eval(o:*):*

Evaluates the specified object.

Parameters

o:*

Returns
*