namespace TLang.Parser { public class GetVariableNode : SymbolNode { public GetVariableNode(string name) { Name = name; } } }