ChangeLog 1.7 KB

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