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