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

9 lines
177 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
using System.Collections.Generic;
namespace TLang.Parser
{
public class CallNode : SymbolNode
{
2023-07-29 00:11:09 +00:00
public List<Node> Arguments {get;set;}=new List<Node>();
2023-07-27 03:31:32 +00:00
}
}