tlang-runtime-compiler/TLang.Parser/GetArrayNode.cs

15 lines
334 B
C#

namespace TLang.Parser
{
public class GetArrayNode : SymbolNode
{
public SymbolNode Symbol {get;set;}
public Node Expression {get;set;}
public GetArrayNode(SymbolNode sym, Node expr)
{
Symbol = sym;
this.Name = sym.Name;
Expression = expr;
}
}
}