| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- 2008-01-15 Jb Evain <[email protected]>
- * Expression.cs, ConditionalExpressionExpression.cs
- ExpressionPrinter.cs : implement Expression.Condition.
- 2008-01-15 Jb Evain <[email protected]>
- * Expression.cs,
- ParameterExpression.cs,
- ExpressionPrinter.cs: implement Expression.Parameter
- 2008-01-15 Jb Evain <[email protected]>
- * ExpressionPrinter.cs (VisitBinaryExpression): simple
- implementation (probably misses a few cases).
- 2008-01-14 Miguel de Icaza <[email protected]>
- * Expression.cs: Bring back the (most) of binary operators. Added
- type checking as well and reorganized the source file by topic
- instead of alphabetical sorting.
- 2008-01-14 Jb Evain <[email protected]>
- * ExpressionPrinter.cs: print ArrayLength.
- 2008-01-14 Jb Evain <[email protected]>
- * Expression.cs: TypeAs can't take value types.
- * ExpressionPrinter.cs: implement TypeAs.
- 2008-01-14 Jb Evain <[email protected]>
- * Expression.cs: implement TypeIs.
- * ExpressionPrinter.cs: implement VisitTypeBinaryExpression.
- * TypeBinaryExpression.cs: add proper ctor.
- 2008-01-14 Jb Evain <[email protected]>
- * Expression.cs, ExpressionPrinter.cs: fix for Quote's type.
- 2008-01-14 Jb Evain <[email protected]>
- * BinaryExpression.cs,
- * Expression.cs: revert part of Miguel's last patch.
- MakeBinary is expected to call the appropriate factory
- methods. Whose methods that are responsible for creating
- the good BinaryExpression, wether they use a custom method
- or not.
- 2008-01-14 Jb Evain <[email protected]>
- * Expression.cs: MakeUnary is expected to call the appropriate
- factory methods.
- 2008-01-14 Miguel de Icaza <[email protected]>
- * Expression.cs (Constant, MakeBinary and consumers of it): Some
- more fill-up changes.
- MakeBinary will need much more work to support user-provided
- types.
- 2008-01-13 Jb Evain <[email protected]>
- * *.cs: fresh implementation.
|