ChangeLog 5.8 KB

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