ChangeLog 5.9 KB

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