ChangeLog 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. 2008-01-15 Jb Evain <[email protected]>
  2. * Expression.cs, ConditionalExpressionExpression.cs
  3. ExpressionPrinter.cs : implement Expression.Condition.
  4. 2008-01-15 Jb Evain <[email protected]>
  5. * Expression.cs,
  6. ParameterExpression.cs,
  7. ExpressionPrinter.cs: implement Expression.Parameter
  8. 2008-01-15 Jb Evain <[email protected]>
  9. * ExpressionPrinter.cs (VisitBinaryExpression): simple
  10. implementation (probably misses a few cases).
  11. 2008-01-14 Miguel de Icaza <[email protected]>
  12. * Expression.cs: Bring back the (most) of binary operators. Added
  13. type checking as well and reorganized the source file by topic
  14. instead of alphabetical sorting.
  15. 2008-01-14 Jb Evain <[email protected]>
  16. * ExpressionPrinter.cs: print ArrayLength.
  17. 2008-01-14 Jb Evain <[email protected]>
  18. * Expression.cs: TypeAs can't take value types.
  19. * ExpressionPrinter.cs: implement TypeAs.
  20. 2008-01-14 Jb Evain <[email protected]>
  21. * Expression.cs: implement TypeIs.
  22. * ExpressionPrinter.cs: implement VisitTypeBinaryExpression.
  23. * TypeBinaryExpression.cs: add proper ctor.
  24. 2008-01-14 Jb Evain <[email protected]>
  25. * Expression.cs, ExpressionPrinter.cs: fix for Quote's type.
  26. 2008-01-14 Jb Evain <[email protected]>
  27. * BinaryExpression.cs,
  28. * Expression.cs: revert part of Miguel's last patch.
  29. MakeBinary is expected to call the appropriate factory
  30. methods. Whose methods that are responsible for creating
  31. the good BinaryExpression, wether they use a custom method
  32. or not.
  33. 2008-01-14 Jb Evain <[email protected]>
  34. * Expression.cs: MakeUnary is expected to call the appropriate
  35. factory methods.
  36. 2008-01-14 Miguel de Icaza <[email protected]>
  37. * Expression.cs (Constant, MakeBinary and consumers of it): Some
  38. more fill-up changes.
  39. MakeBinary will need much more work to support user-provided
  40. types.
  41. 2008-01-13 Jb Evain <[email protected]>
  42. * *.cs: fresh implementation.