14 lines
267 B
C#
14 lines
267 B
C#
|
namespace TLang.Parser
|
||
|
{
|
||
|
public class SetVariableNode : SymbolNode
|
||
|
{
|
||
|
|
||
|
public Node Expression {get;set;}
|
||
|
|
||
|
public SetVariableNode(string name, Node expr)
|
||
|
{
|
||
|
Name = name;
|
||
|
Expression = expr;
|
||
|
}
|
||
|
}
|
||
|
}
|