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

15 lines
316 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
namespace TLang.Parser
{
public class GetArrayNode : SymbolNode
{
2023-07-30 07:55:10 +00:00
public Node Symbol {get;set;}
2023-07-27 03:31:32 +00:00
public Node Expression {get;set;}
2023-07-30 07:55:10 +00:00
public GetArrayNode(Node sym, Node expr)
2023-07-27 03:31:32 +00:00
{
Symbol = sym;
2023-07-30 07:55:10 +00:00
this.Name = "";
2023-07-27 03:31:32 +00:00
Expression = expr;
}
}
}