12 lines
183 B
C#
12 lines
183 B
C#
|
namespace TLang.Parser
|
||
|
{
|
||
|
public class GetVariableNode : SymbolNode
|
||
|
{
|
||
|
|
||
|
|
||
|
public GetVariableNode(string name)
|
||
|
{
|
||
|
Name = name;
|
||
|
}
|
||
|
}
|
||
|
}
|