ChangeLog 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. 2007-08-17 Federico Di Gregorio <[email protected]>
  2. * Expression.cs: fixed Field() and Property() behaviour when accessing static
  3. members (i.e., when expression is null). Also added the missing version for
  4. Property().
  5. * MemberExpression.cs: added missing BuildString() method that differentiates
  6. between static and instance methods.
  7. * Expression.cs: implemented Quote() and tests.
  8. * Expression.cs: implemented RightShift(), added tests for it and for
  9. LeftShift().
  10. * Expression.cs: checked TypeAs and added tests.
  11. * UnaryExpression.cs: added BuildString() case for TypeAs.
  12. * Expression.cs: added tests for TypeIs.
  13. * TypeBinaryExpression.cs: implemented BuildString().
  14. * Expression.cs: added three specific methods to determine when a type
  15. is a number (IsNumeric), an integer (IsInteger) or an integer or a bool
  16. (IsIntegerOrBool). Code taken and simplified from ExpressionUtil.
  17. * Expression.cs: two less to do: Subtract() and SubtractChecked().
  18. * Expression.cs: implemented all versions of Or() and OrElse().
  19. * BinaryExpression.cs: fixed OrElse case in BuildString().
  20. * Expression.cs: implemented all versions of Divide(), Modulo(),
  21. Multiply(), MultiplyChecked() and tests. Call() works except for
  22. generic types.
  23. 2007-08-15 Federico Di Gregorio <[email protected]>
  24. * Expression.cs: implemented both versions of Bind() & tests.
  25. * MemberBinding.cs: added missing override of ToString().
  26. 2007-08-14 Federico Di Gregorio <[email protected]>
  27. * Expression.cs: implemented ArrayLength & tests.
  28. * Expression.cs: implemented all three versions of ArrayIndex method.
  29. * MethodCallExpression.cs: implemented BuildString() method.
  30. 2007-08-13 Federico Di Gregorio <[email protected]>
  31. * ConstantExpression.cs: using multiple StringBuilder.Append() methods
  32. instead of concatenating strings.
  33. * Expression.cs: added AndAlso() method and validator for True and
  34. False user-defined operators.
  35. * Test: added unique IDs to all tests.
  36. 2007-08-12 Federico Di Gregorio <[email protected]>
  37. * ConstantExpression.cs: fixed BuildString() to return "value(...)"
  38. when the string representation of the value is equal to the type name.
  39. Added appropriate checks.
  40. * Expression.cs: fixed And() method.
  41. * Expression.cs: Add() method uses new GetUserDefinedBinaryOperator()
  42. and raise exactly the same exceptions (including exception text) as MS
  43. one does.
  44. 2007-07-24 Federico Di Gregorio <[email protected]>
  45. * Expression.cs: modified Constant method to use "object" as the type if
  46. just a null is given. Changed exception text when the passed type is not
  47. nullable but value is.
  48. 2007-07-13 Federico Di Gregorio <[email protected]>
  49. * BinaryExpression.cs: implemented BuildString().
  50. 2007-07-12 Federico Di Gregorio <[email protected]>
  51. * Test/System.Linq.Expressions: added test directory and some tests.
  52. * Expression.cs:
  53. - changed the exceptions raised on argument errors to match the ones in
  54. found in the last system.core.dll (the one from SilverLight 1.1 alpha)
  55. - removed the three very generic #regions and started replacing them with
  56. specific ones, as found in other parts of classes code.
  57. 2007-03-29 Antonello Provenzano <[email protected]>
  58. * ExpressionUtil.cs:
  59. - Implemented method GetOperator for general pourposes,
  60. moving some implementations from Expression.cs specific methods
  61. - IsNumber now returns 'true' for sbyte and unsigned integers
  62. - Implemented method IsInteger
  63. * Expression.cs: Implementation of the method:
  64. - AddChecked
  65. - Call
  66. - Condition
  67. - Divide
  68. - LeftShift
  69. - Quote
  70. * ExpressionType.cs: Applied Obsolete attributes
  71. * LiftExpression.cs: New file
  72. 2007-03-27 Antonello Provenzano <[email protected]>
  73. * ExpressionUtil.cs: methods 'GetReadOnlyCollection' removed
  74. to use internal extension 'ToReadOnlyCollection'.
  75. * Expression: Removed unimplemented stubs.
  76. 2007-03-27 Marek Safar <[email protected]>
  77. * InvocationExpression.cs,
  78. * ExpressionType.cs,
  79. * ParameterExpression.cs: Updated to match with the latest version.
  80. 2007-03-25 Antonello Provenzano <[email protected]>
  81. * ConstantExpression.cs: New file
  82. * ConditionalExpression.cs: New file
  83. * BinaryExpression.cs: New file
  84. * ExecutionScope.cs: New file
  85. * Expression.cs: New file
  86. * Expression_T.cs: modified to support LambdaExpression .ctor
  87. * ExpressionCompiler.cs: New file
  88. * ExpressionType.cs: New file
  89. * ExpressionUtil.cs: New file
  90. * Funclet.cs: New file
  91. * FuncletExpression.cs: New file
  92. * InvocationExpression.cs: New file
  93. * IStrongBox.cs: New file
  94. * LambdaExpression.cs: implemented constructor and fields
  95. * MemberAssignment.cs: New file
  96. * MemberBinding.cs: New file
  97. * MemberBindingType.cs: New file
  98. * MemberListBinding.cs: New file
  99. * MemberMemberBinding.cs: New file
  100. * MethodCallExpression.cs: New file
  101. * NewArrayExpression.cs: New file
  102. * NewExpression.cs: New file
  103. * ParameterExpression.cs: extended implementation
  104. * StrongBox_T.cs: New file
  105. * UnaryExpression.cs: New file
  106. * TypeBinaryExpression.cs: New file
  107. 2007-02-16 Marek Safar <[email protected]>
  108. * Expression_T.cs: Derives from lambda.
  109. 2007-02-03 Atsushi Enomoto <[email protected]>
  110. * LambdaExpression.cs : new (stub) file.
  111. 2007-01-19 Marek Safar <[email protected]>
  112. * Expression_T.cs: New file.
  113. 2006-11-02 Marek Safar <[email protected]>
  114. * Initial checkin.