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

15 lines
316 B
C#

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