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

9 lines
159 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
{
public List<Node> Arguments {get;set;}
}
}