protected class AbstractPtalonEvaluator.PtalonExpressionScope extends java.lang.Object implements ParserScope
Modifier | Constructor and Description |
---|---|
protected |
PtalonExpressionScope() |
Modifier and Type | Method and Description |
---|---|
void |
addVariable(java.lang.String name,
Token value)
Add the specified variable with the given value.
|
Token |
get(java.lang.String name)
Look up and return the value of the variable or parameter
with the specified name in the scope.
|
Type |
getType(java.lang.String name)
Look up and return the type of the variable or parameter
with the specified name in the scope.
|
InequalityTerm |
getTypeTerm(java.lang.String name)
Look up and return the type term for the variable or
parameter with the specified name in the scope.
|
java.util.Set |
identifierSet()
Return a list of names corresponding to the identifiers
defined by this scope.
|
void |
removeVariable(java.lang.String name)
Remove the specified variable from this scope.
|
public void addVariable(java.lang.String name, Token value)
name
- The variable name.value
- The variable's value.public Token get(java.lang.String name) throws IllegalActionException
get
in interface ParserScope
name
- The name of the variable or parameter.IllegalActionException
- If a value in the scope
exists with the given name, but cannot be evaluated.public Type getType(java.lang.String name) throws IllegalActionException
getType
in interface ParserScope
name
- The name of the variable or parameter.IllegalActionException
- If a value in the scope
exists with the given name, but cannot be evaluated.public InequalityTerm getTypeTerm(java.lang.String name) throws IllegalActionException
getTypeTerm
in interface ParserScope
name
- The name of the variable or parameter.IllegalActionException
- If a value in the scope
exists with the given name, but cannot be evaluated.public java.util.Set identifierSet() throws IllegalActionException
identifierSet
in interface ParserScope
IllegalActionException
- If constructing the list
causes it.public void removeVariable(java.lang.String name)
name
- The name of this variable.