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

19 lines
381 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
using System.Collections.Generic;
using TLang.Lexer;
namespace TLang.Parser
{
public class MethodCallNode : SymbolNode
{
2023-07-30 07:55:10 +00:00
public Node Symbol {get;set;}
2023-07-27 03:31:32 +00:00
public List<Node> Arguments {get;set;}=new List<Node>();
2023-07-30 07:55:10 +00:00
public MethodCallNode(Node symbol, string name)
2023-07-27 03:31:32 +00:00
{
Symbol = symbol;
Name = name;
}
}
}