static public MExpResolver GetInstance() { if (instance == null) { instance = new MExpResolver(); } return(instance); }
static public MExpExpression DOMify(MExpParser.MExpExpressionContext context) { return(MExpResolver.Resolve <MExpExpression>(context)); }
static public MExpBinaryOperator_Multiplicative DOMify(MExpParser.MExpBinaryMultiplicativeOperatorContext context) { return(MExpResolver.Resolve <MExpBinaryOperator_Multiplicative>(context)); }
static public MExpUnaryOperator_Sign DOMify(MExpParser.MExpUnarySignOperatorContext context) { return(MExpResolver.Resolve <MExpUnaryOperator_Sign>(context)); }