ChangeLog 5.6 KB

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