class documentation

class ExpressionParameter(Expression): (source)

View In Hierarchy

Expression with a parameter name, evaluates the parameter value
Method __call__ Evaluate the expression @param dict: the context with parameter values
Method __eq__ Undocumented
Method __init__ Constructor @param name: the parameter name
Method pprint Print the expression hierarchy
Class Variable __slots__ Undocumented
Instance Variable key Undocumented
Instance Variable name Undocumented
Instance Variable parts Undocumented
Property parent Returns a ExpressionParameter for the parent object. Used e.g. to find the parent scope for assignment.

Inherited from Expression:

Method __repr__ Undocumented
Method __str__ Undocumented
def __call__(self, context): (source)
Evaluate the expression
Parameters
contextUndocumented
dictthe context with parameter values
def __eq__(self, other): (source)

Undocumented

def __init__(self, name): (source)
Constructor
Parameters
namethe parameter name
def pprint(self): (source)
Print the expression hierarchy

Undocumented

name = (source)

Undocumented

parts = (source)

Undocumented

Returns a ExpressionParameter for the parent object. Used e.g. to find the parent scope for assignment.