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

15 lines
334 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
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;
}
}
}