ChangeLog 4.1 KB

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