16 lines
327 B
C#
16 lines
327 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|