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

16 lines
327 B
C#
Raw Normal View History

2023-07-27 03:31:32 +00:00
using System.Collections.Generic;
namespace TLang.Parser
{
public class ClosureNode : Node
{
public List<string> Arguments {get;set;}
public Node Node {get;set;}
public ClosureNode(List<string> args, Node node)
{
Arguments = args;
Node = node;
}
}
}