/IronPython_1_0/Src/IronPython/Compiler/AST/Operator.Generated.cs

# · C# · 127 lines · 84 code · 27 blank · 16 comment · 0 complexity · e27b8340ac847e8c9d5f865470916547 MD5 · raw file

  1. /* **********************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation. All rights reserved.
  4. *
  5. * This source code is subject to terms and conditions of the Shared Source License
  6. * for IronPython. A copy of the license can be found in the License.html file
  7. * at the root of this distribution. If you can not locate the Shared Source License
  8. * for IronPython, please send an email to ironpy@microsoft.com.
  9. * By using this source code in any fashion, you are agreeing to be bound by
  10. * the terms of the Shared Source License for IronPython.
  11. *
  12. * You must not remove this notice, or any other, from this software.
  13. *
  14. * **********************************************************************************/
  15. using System;
  16. using System.Collections.Generic;
  17. using System.Text;
  18. using IronPython.Runtime;
  19. using IronPython.Runtime.Calls;
  20. using IronPython.Runtime.Operations;
  21. namespace IronPython.Compiler.Ast {
  22. public abstract partial class PythonOperator {
  23. #region Generated Operators
  24. // *** BEGIN GENERATED CODE ***
  25. private static readonly BinaryOperator add = new BinaryOperator("+", new CallTarget2(Ops.Add), new CallTarget2(Ops.InPlaceAdd), 4);
  26. private static readonly BinaryOperator sub = new BinaryOperator("-", new CallTarget2(Ops.Subtract), new CallTarget2(Ops.InPlaceSubtract), 4);
  27. private static readonly BinaryOperator pow = new BinaryOperator("**", new CallTarget2(Ops.Power), new CallTarget2(Ops.InPlacePower), 6);
  28. private static readonly BinaryOperator mul = new BinaryOperator("*", new CallTarget2(Ops.Multiply), new CallTarget2(Ops.InPlaceMultiply), 5);
  29. private static readonly BinaryOperator floordiv = new BinaryOperator("//", new CallTarget2(Ops.FloorDivide), new CallTarget2(Ops.InPlaceFloorDivide), 5);
  30. private static readonly BinaryOperator div = new DivisionOperator("/", new CallTarget2(Ops.Divide), new CallTarget2(Ops.InPlaceDivide), new CallTarget2(Ops.TrueDivide), new CallTarget2(Ops.InPlaceTrueDivide), 5);
  31. private static readonly BinaryOperator mod = new BinaryOperator("%", new CallTarget2(Ops.Mod), new CallTarget2(Ops.InPlaceMod), 5);
  32. private static readonly BinaryOperator lshift = new BinaryOperator("<<", new CallTarget2(Ops.LeftShift), new CallTarget2(Ops.InPlaceLeftShift), 3);
  33. private static readonly BinaryOperator rshift = new BinaryOperator(">>", new CallTarget2(Ops.RightShift), new CallTarget2(Ops.InPlaceRightShift), 3);
  34. private static readonly BinaryOperator and = new BinaryOperator("&", new CallTarget2(Ops.BitwiseAnd), new CallTarget2(Ops.InPlaceBitwiseAnd), 2);
  35. private static readonly BinaryOperator or = new BinaryOperator("|", new CallTarget2(Ops.BitwiseOr), new CallTarget2(Ops.InPlaceBitwiseOr), 0);
  36. private static readonly BinaryOperator xor = new BinaryOperator("^", new CallTarget2(Ops.Xor), new CallTarget2(Ops.InPlaceXor), 1);
  37. private static readonly BinaryOperator lt = new BinaryOperator("<", new CallTarget2(Ops.LessThan), null, -1);
  38. private static readonly BinaryOperator gt = new BinaryOperator(">", new CallTarget2(Ops.GreaterThan), null, -1);
  39. private static readonly BinaryOperator le = new BinaryOperator("<=", new CallTarget2(Ops.LessThanOrEqual), null, -1);
  40. private static readonly BinaryOperator ge = new BinaryOperator(">=", new CallTarget2(Ops.GreaterThanOrEqual), null, -1);
  41. private static readonly BinaryOperator eq = new BinaryOperator("==", new CallTarget2(Ops.Equal), null, -1);
  42. private static readonly BinaryOperator ne = new BinaryOperator("!=", new CallTarget2(Ops.NotEqual), null, -1);
  43. public static BinaryOperator Add {
  44. get { return add; }
  45. }
  46. public static BinaryOperator Subtract {
  47. get { return sub; }
  48. }
  49. public static BinaryOperator Power {
  50. get { return pow; }
  51. }
  52. public static BinaryOperator Multiply {
  53. get { return mul; }
  54. }
  55. public static BinaryOperator FloorDivide {
  56. get { return floordiv; }
  57. }
  58. public static BinaryOperator Divide {
  59. get { return div; }
  60. }
  61. public static BinaryOperator Mod {
  62. get { return mod; }
  63. }
  64. public static BinaryOperator LeftShift {
  65. get { return lshift; }
  66. }
  67. public static BinaryOperator RightShift {
  68. get { return rshift; }
  69. }
  70. public static BinaryOperator BitwiseAnd {
  71. get { return and; }
  72. }
  73. public static BinaryOperator BitwiseOr {
  74. get { return or; }
  75. }
  76. public static BinaryOperator Xor {
  77. get { return xor; }
  78. }
  79. public static BinaryOperator LessThan {
  80. get { return lt; }
  81. }
  82. public static BinaryOperator GreaterThan {
  83. get { return gt; }
  84. }
  85. public static BinaryOperator LessThanOrEqual {
  86. get { return le; }
  87. }
  88. public static BinaryOperator GreaterThanOrEqual {
  89. get { return ge; }
  90. }
  91. public static BinaryOperator Equal {
  92. get { return eq; }
  93. }
  94. public static BinaryOperator NotEqual {
  95. get { return ne; }
  96. }
  97. // *** END GENERATED CODE ***
  98. #endregion
  99. }
  100. }