Пример #1
0
 public void Decompile(StringBuilder stringBuilder, CodeExpression parentExpression)
 {
     //stringBuilder.Append(PARSER_DISPLAY_OPERATION);
     //stringBuilder.Append("(");
     //RuleExpressionWalker.Decompile(stringBuilder, _binaryExpressionBasedOnComparisonType, this);
     //stringBuilder.Append(")");
     RuleExpressionWalker.Decompile(stringBuilder, _binaryExpressionBasedOnComparisonType, this);
 }
Пример #2
0
        public void Decompile(StringBuilder stringBuilder, CodeExpression parentExpression)
        {
            //stringBuilder.Append(PARSER_DISPLAY_OPERATION);
            //stringBuilder.Append("(");
            //RuleExpressionWalker.Decompile(stringBuilder, _containsMethodInvocationExpression, this);
            //stringBuilder.Append(")");

            RuleExpressionWalker.Decompile(stringBuilder, _containsMethodInvocationExpression, this);
        }
Пример #3
0
        public override string ToString()
        {
            // what should be displayed by the parser
            StringBuilder result = new StringBuilder("Log(");

            RuleExpressionWalker.Decompile(result, _message, null);
            result.Append(")");
            return(result.ToString());
        }
Пример #4
0
 public void Decompile(StringBuilder stringBuilder, CodeExpression parentExpression)
 {
     stringBuilder.Append("  ");
     stringBuilder.Append(PARSER_DISPLAY_OPERATION);
     stringBuilder.Append("(");
     RuleExpressionWalker.Decompile(stringBuilder, _singleExpression, this);
     stringBuilder.Append(")");
     stringBuilder.Append("  ");
 }
Пример #5
0
        public void Decompile(StringBuilder stringBuilder, CodeExpression parentExpression)
        {
            //stringBuilder.Append(PARSER_DISPLAY_OPERATION);
            //stringBuilder.Append("(");
            //RuleExpressionWalker.Decompile(stringBuilder, _leftExpression, this);
            ////stringBuilder.Append(", ");
            //RuleExpressionWalker.Decompile(stringBuilder, _rightExpression, this);
            //stringBuilder.Append(")");

            RuleExpressionWalker.Decompile(stringBuilder, _logicalAndExpression, this);
        }
        public override string ToString()
        {
            // what should be displayed by the parser
            StringBuilder result = new StringBuilder("InsertRuleStat(");

            RuleExpressionWalker.Decompile(result, _applicationID, null);
            result.Append(", ");
            RuleExpressionWalker.Decompile(result, _typeID, null);
            result.Append(", ");
            RuleExpressionWalker.Decompile(result, _ruleID, null);
            result.Append(", ");
            RuleExpressionWalker.Decompile(result, _ruleName, null);
            result.Append(", ");
            RuleExpressionWalker.Decompile(result, _result, null);
            result.Append(", ");
            RuleExpressionWalker.Decompile(result, _createDate, null);
            result.Append(", ");
            RuleExpressionWalker.Decompile(result, _referenceID, null);
            result.Append(")");
            return(result.ToString());
        }
Пример #7
0
 public void Decompile(StringBuilder stringBuilder, CodeExpression parentExpression)
 {
     // what should be displayed by the parser
     //stringBuilder.Append("\"");
     RuleExpressionWalker.Decompile(stringBuilder, _notEqualsExpression, this);
 }
Пример #8
0
 public void Decompile(StringBuilder stringBuilder, CodeExpression parentExpression)
 {
     RuleExpressionWalker.Decompile(stringBuilder, _logicalOrExpression, this);
 }
 public void Decompile(StringBuilder stringBuilder, CodeExpression parentExpression)
 {
     RuleExpressionWalker.Decompile(stringBuilder, _regexMatchMethodInvocationExpression, this);
 }