using TLang.Lexer;
namespace TLang.Parser
{
public class NotNode : Node
public Node Node {get;set;}
public NotNode(Node node)
Node = node;
}