ChangeLog 6.0 KB

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