当前位置: 首页>>代码示例>>C#>>正文


C# CodeElementsParser.arithmeticExpression方法代码示例

本文整理汇总了C#中CodeElementsParser.arithmeticExpression方法的典型用法代码示例。如果您正苦于以下问题:C# CodeElementsParser.arithmeticExpression方法的具体用法?C# CodeElementsParser.arithmeticExpression怎么用?C# CodeElementsParser.arithmeticExpression使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CodeElementsParser的用法示例。


在下文中一共展示了CodeElementsParser.arithmeticExpression方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: CreateArithmeticExpression

        // --- Arithmetic Expressions ---
        internal ArithmeticExpression CreateArithmeticExpression(CodeElementsParser.ArithmeticExpressionContext context)
        {
            if(context.numericVariable3() != null)
            {
                return new NumericVariableOperand(
                    CreateNumericVariable(context.numericVariable3()));
            }

            SyntaxProperty<ArithmeticOperator> arithmeticOperator = null;
            if (context.PlusOperator() != null)
            {
                if (context.arithmeticExpression() != null && context.arithmeticExpression().Length == 1)
                {
                    arithmeticOperator = new SyntaxProperty<ArithmeticOperator>(
                        ArithmeticOperator.UnaryPlus,
                        ParseTreeUtils.GetFirstToken(context.PlusOperator()));
                }
                else
                {
                    arithmeticOperator = new SyntaxProperty<ArithmeticOperator>(
                        ArithmeticOperator.Plus,
                        ParseTreeUtils.GetFirstToken(context.PlusOperator()));
                }
            }
            else if (context.MinusOperator() != null)
            {
                if (context.arithmeticExpression() != null && context.arithmeticExpression().Length == 1)
                {
                    arithmeticOperator = new SyntaxProperty<ArithmeticOperator>(
                        ArithmeticOperator.UnaryMinus,
                        ParseTreeUtils.GetFirstToken(context.MinusOperator()));
                }
                else
                {
                    arithmeticOperator = new SyntaxProperty<ArithmeticOperator>(
                        ArithmeticOperator.Minus,
                        ParseTreeUtils.GetFirstToken(context.MinusOperator()));
                }
            }
            else if (context.PowerOperator() != null)
            {
                arithmeticOperator = new SyntaxProperty<ArithmeticOperator>(
                    ArithmeticOperator.Power,
                    ParseTreeUtils.GetFirstToken(context.PowerOperator()));
            }
            else if (context.MultiplyOperator() != null)
            {
                arithmeticOperator = new SyntaxProperty<ArithmeticOperator>(
                    ArithmeticOperator.Multiply,
                    ParseTreeUtils.GetFirstToken(context.MultiplyOperator()));
            }
            else if (context.DivideOperator() != null)
            {
                arithmeticOperator = new SyntaxProperty<ArithmeticOperator>(
                    ArithmeticOperator.Divide,
                    ParseTreeUtils.GetFirstToken(context.DivideOperator()));
            }

            if (arithmeticOperator == null)
            {
                return CreateArithmeticExpression(context.arithmeticExpression()[0]);
            }
            else
            {
                if (context.arithmeticExpression().Length == 1)
                {
                    ArithmeticExpression rightOperand = CreateArithmeticExpression(context.arithmeticExpression()[0]);
                    return new ArithmeticOperation(null, arithmeticOperator, rightOperand);
                }
                else
                {
                    ArithmeticExpression leftOperand = CreateArithmeticExpression(context.arithmeticExpression()[0]);
                    ArithmeticExpression rightOperand = CreateArithmeticExpression(context.arithmeticExpression()[1]);
                    return new ArithmeticOperation(leftOperand, arithmeticOperator, rightOperand);
                }
            }
        }
开发者ID:laurentprudhon,项目名称:TypeCobol,代码行数:78,代码来源:CobolExpressionsBuilder.cs

示例2: CreateVariableOrExpression

 internal VariableOrExpression CreateVariableOrExpression(CodeElementsParser.VariableOrExpression2Context context)
 {
     if (context.identifier() != null)
     {
         return new VariableOrExpression(
             CreateIdentifier(context.identifier()));
     }
     else if (context.numericValue() != null)
     {
         return new VariableOrExpression(
             CobolWordsBuilder.CreateNumericValue(context.numericValue()));
     }
     else if (context.alphanumericValue2() != null)
     {
         return new VariableOrExpression(
             CobolWordsBuilder.CreateAlphanumericValue(context.alphanumericValue2()));
     }
     else if (context.repeatedCharacterValue1() != null)
     {
         return new VariableOrExpression(
             CobolWordsBuilder.CreateRepeatedCharacterValue(context.repeatedCharacterValue1()));
     }
     else
     {
         return new VariableOrExpression(
             CreateArithmeticExpression(context.arithmeticExpression()));
     }
 }
开发者ID:laurentprudhon,项目名称:TypeCobol,代码行数:28,代码来源:CobolExpressionsBuilder.cs

示例3: CreateConditionOperand

 private ConditionOperand CreateConditionOperand(CodeElementsParser.ConditionOperandContext context)
 {
     ConditionOperand conditionOperand = null;
     if (context.arithmeticExpression() != null)
     {
         conditionOperand = new ConditionOperand(
             CreateArithmeticExpression(context.arithmeticExpression()));
     }
     else if (context.variableOrIndex() != null)
     {
         conditionOperand = new ConditionOperand(
             CreateVariableOrIndex(context.variableOrIndex()));
     }
     else if (context.nullPointerValue() != null)
     {
         conditionOperand = new ConditionOperand(
             CobolWordsBuilder.CreateNullPointerValue(context.nullPointerValue()));
     }
     else if (context.selfObjectIdentifier() != null)
     {
         conditionOperand = new ConditionOperand(
             ParseTreeUtils.GetFirstToken(context.selfObjectIdentifier()));
     }
     return conditionOperand;
 }
开发者ID:laurentprudhon,项目名称:TypeCobol,代码行数:25,代码来源:CobolExpressionsBuilder.cs

示例4: CreateVariableOrExpression

        internal VariableOrExpression CreateVariableOrExpression(CodeElementsParser.VariableOrExpression2Context context)
        {
            VariableOrExpression variableOrExpression = null;
            if (context.identifier() != null)
            {
                variableOrExpression = new VariableOrExpression(
                    CreateIdentifier(context.identifier()));
            }
            else if (context.numericValue() != null)
            {
                variableOrExpression = new VariableOrExpression(
                    CobolWordsBuilder.CreateNumericValue(context.numericValue()));
            }
            else if (context.alphanumericValue2() != null)
            {
                variableOrExpression = new VariableOrExpression(
                    CobolWordsBuilder.CreateAlphanumericValue(context.alphanumericValue2()));
            }
            else if (context.repeatedCharacterValue1() != null)
            {
                variableOrExpression = new VariableOrExpression(
                    CobolWordsBuilder.CreateRepeatedCharacterValue(context.repeatedCharacterValue1()));
            }
            else
            {
                variableOrExpression = new VariableOrExpression(
                    CreateArithmeticExpression(context.arithmeticExpression()));
            }

            // Collect storage area read/writes at the code element level
            if (variableOrExpression.StorageArea != null)
            {
                this.storageAreaReads.Add(variableOrExpression.StorageArea);
            }

            return variableOrExpression;
        }
开发者ID:osmedile,项目名称:TypeCobol,代码行数:37,代码来源:CobolExpressionsBuilder.cs


注:本文中的CodeElementsParser.arithmeticExpression方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。