ChangeLog 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765
  1. 2009-02-23 Jb Evain <[email protected]>
  2. * Expression.cs (IsNumber): actually decimal is rather a special
  3. case, and not a primitive number.
  4. 2009-02-23 Jb Evain <[email protected]>
  5. * Expression.cs (BinaryCoreCheck): add decimal operations
  6. are provided by custom operators.
  7. 2008-12-17 Jb Evain <[email protected]>
  8. * ExpressionTransformer.cs: fix VisitList.
  9. 2008-11-19 Jb Evain <[email protected]>
  10. * Expression.cs: protect against open generic methods.
  11. 2008-10-08 Atsushi Enomoto <[email protected]>
  12. * Expression.cs : give us information about which type does not
  13. implement Emit().
  14. 2008-10-03 Jb Evain <[email protected]>
  15. * Expression.cs: make sure we properly test complex generic methods
  16. as a Call candidate.
  17. 2008-09-22 Jb Evain <[email protected]>
  18. * TypeBinaryExpression.cs: protect against testing void expressions.
  19. Fixes bug #428309.
  20. 2008-09-01 Jb Evain <[email protected]>
  21. * MemberBinding.cs: make .ctor protected instead of public.
  22. 2008-09-01 Jb Evain <[email protected]>
  23. * Expression.cs: guard against null parameters passed to Lambda.
  24. 2008-08-30 Marek Safar <[email protected]>
  25. * MemberBinding.cs: Made MemberBinding ctor public
  26. 2008-08-07 Jb Evain <[email protected]>
  27. * Expression.cs (GetAssociatedProperty): strengthen accessors
  28. comparisons.
  29. 2008-08-02 Zoltan Varga <[email protected]>
  30. * BinaryExpression.cs (EmitBinaryOperator): Mask out the upper bits of the
  31. shift amount like mcs compiled code does.
  32. 2008-07-19 Jb Evain <[email protected]>
  33. * Expression.cs (Call, Field, Property): disallow instance arguments
  34. on static members. See ms connect #339351.
  35. 2008-07-18 Jb Evain <[email protected]>
  36. * Expression.cs, BinaryExpression.cs: fix retrieval of true and false
  37. operators.
  38. 2008-06-20 Jb Evain <[email protected]>
  39. * LambdaExpression.cs, EmitContext.cs: refactor the emit context to
  40. handle the fact that lambdas are compiled in a general context where
  41. they share globals but are also able to use parameters from parent lambdas.
  42. (Although parameter sharing is not implemented yet).
  43. * BinaryExpression.cs (fix converted coalesce case to use the lambda
  44. compilation code).
  45. 2008-06-09 Jb Evain <[email protected]>
  46. * Extensions.cs (Type.IsExpression): add
  47. * Expression.cs (CheckMethodArguments): modify the argument list
  48. to quote arguments when if necessary.
  49. 2008-06-09 Jb Evain <[email protected]>
  50. * Expression.cs (CheckLambda): quote body if required.
  51. 2008-06-07 Jb Evain <[email protected]>
  52. * BinaryExpression.cs (EmitConvertedCoalesce): implement.
  53. 2008-06-05 Jb Evain <[email protected]>
  54. * Expression.cs (GetUserConversionMethod): check for convertion
  55. operators on both types.
  56. 2008-06-05 Jb Evain <[email protected]>
  57. * Expression.cs (ConditionalBinaryCheck): if a method is passed,
  58. checked that the operators true and false are also defined.
  59. 2008-06-05 Jb Evain <[email protected]>
  60. * BinaryExpression.cs (Emit): deal with binary expressions
  61. where only the left is lifted.
  62. 2008-06-05 Jb Evain <[email protected]>
  63. * Extensions.cs: Add Type.MakeNullableType helper.
  64. * Expression.cs (MakeSimpleBinary, MakeBoolBinar): Properly
  65. creat lifted/lifted to null/not lifted
  66. user defined binary expressions.
  67. * BinaryExpression.cs (Emit): implement compilation of
  68. lifted and lifted to null user defined binary operators.
  69. 2008-06-05 Jb Evain <[email protected]>
  70. * Expression.cs (MakeSimpleUnary): properly create lifted/not lifted
  71. unary expressions with user defined operators.
  72. * UnaryExpression.cs (Emit): fix compilation of lifted user operators.
  73. 2008-05-30 Jb Evain <[email protected]>
  74. * UnaryExpression.cs (Emit): fix convertion from nullable
  75. to nullable types.
  76. 2008-05-29 Jb Evain <[email protected]>
  77. * Expression.cs (Power): allow bool?.
  78. * BinaryExpression.cs: properly deal with lifted power expression.
  79. 2008-05-29 Jb Evain <[email protected]>
  80. * BinaryExpression.cs (Emit): fix lifted andalso and orelse.
  81. 2008-05-29 Jb Evain <[email protected]>
  82. * BinaryExpression.cs (Emit): properly emit lifted to null
  83. relational binary expressions.
  84. 2008-05-28 Jb Evain <[email protected]>
  85. * BinaryExpression.cs (Emit): rework compilation of
  86. arithmetic and relational lifted binary expressions.
  87. 2008-05-28 Jb Evain <[email protected]>
  88. * UnaryExpression.cs (Emit): implement support for compiling
  89. lifted unary expressions.
  90. 2008-05-27 Jb Evain <[email protected]>
  91. * UnaryExpression.cs (EmitConvert): implement nullable to nullable
  92. convert.
  93. 2008-05-20 Roei Erez <[email protected]>
  94. * Extensions.cs: Add 'IsGenericImplementationOf' extension method
  95. 2008-05-15 Jb Evain <[email protected]>
  96. * UnaryExpression.cs, EmitContext.cs: emit convert from and
  97. to nullable types.
  98. 2008-05-15 Jb Evain <[email protected]>
  99. * Extensions.cs: add a few useful extensions such as
  100. IsGenericInstanceOf and MakeGenericFrom.
  101. 2008-05-15 Roei Erez <[email protected]>
  102. * ExpressionTransformer.cs: Add a base class for transforming Expressions.
  103. In use at AsQueryable() implementation.
  104. 2008-05-14 Jb Evain <[email protected]>
  105. * EmitContext.cs: only generate a new lambda name if we're in
  106. a debug context.
  107. 2008-05-14 Jb Evain <[email protected]>
  108. * LambdaExpression.cs, EmitContext.cs: When encountering a lambda
  109. inside an ET, compile it as a read of a global. Based on a patch
  110. by Roei Erez <[email protected]>
  111. 2008-05-08 Jb Evain <[email protected]>
  112. * Expression.cs, EmitContext.cs: deal with call to methods
  113. with byref parameters.
  114. 2008-05-07 Roei Erez <[email protected]>
  115. * Add ifdef TARGET_JVM
  116. 2008-05-03 Jb Evain <[email protected]>
  117. * LambdaExpression.cs: move checks to Expression
  118. * Expression.cs: apply check for both typed and untyped lambda
  119. creation, so that the constructor does not throws exception.
  120. Needed to create instances of Expression<> for untyped lambda
  121. factory method. Fixes #386322.
  122. 2008-05-02 Jb Evain <[email protected]>
  123. * Expression.cs: make Emit virtual instead of abstract,
  124. to allow externals libraries to extend Expression.
  125. Patch by Jan Oravec <[email protected]>. Fixes #386097.
  126. 2008-04-29 Jb Evain <[email protected]>
  127. * UnaryExpression.cs (EmitPrimitiveConversion): implement.
  128. 2008-04-28 Jb Evain <[email protected]>
  129. * EmitContext.cs: deal with globals when encountering them while
  130. compiling, and not ahead of time with a dedicated visitor.
  131. 2008-04-27 Jb Evain <[email protected]>
  132. * ConstantExpression.cs (Emit): emit properly null nullable types.
  133. 2008-04-27 Jb Evain <[email protected]>
  134. * Expression.cs: improve method finder.
  135. 2008-04-24 Jb Evain <[email protected]>
  136. * UnaryExpression.cs, EmitContext.cs: implement compilation
  137. of Quote as a global load.
  138. 2008-04-23 Jb Evain <[email protected]>
  139. * UnaryExpression.cs: start implementing EmitConvert.
  140. 2008-04-23 Jb Evain <[email protected]>
  141. * ConstantExpression.cs (Emit): properly Emit null constants.
  142. 2008-04-23 Jb Evain <[email protected]>
  143. * Expression.cs (Constant): check for assignability, not for type
  144. equality, when a type is passed.
  145. 2008-04-23 Jb Evain <[email protected]>
  146. * ExpressionPrinter.cs: ToString convert properly.
  147. 2008-04-22 Jb Evain <[email protected]>
  148. * UnaryExpression.cs: implement IsLiftedToNull properly.
  149. * Expression.cs (Convert, ConvertChecked): implemented computing
  150. of IsLifted and IsLiftedToNull for conversions.
  151. 2008-04-22 Jb Evain <[email protected]>
  152. * Expression.cs (Convert, ConvertChecked): implement.
  153. 2008-04-21 Jb Evain <[email protected]>
  154. * Expression.cs (Call): don't rely on the fact that if the
  155. instance expression is null, then it's a static call. Explicitely
  156. check on the MethodInfo for that.
  157. * EmitContext.cs (EmitCall): same pattern.
  158. 2008-04-20 Jb Evain <[email protected]>
  159. * MemberMemberBinding.cs (Emit): implement.
  160. 2008-04-19 Jb Evain <[email protected]>
  161. * EmitContext.cs: infrastructure work to attach a compiled
  162. lambda expression to an execution scope, and to detect and store
  163. external globals in the scope.
  164. * ConstantExpression.cs: load globals from the scope.
  165. 2008-04-19 Jb Evain <[email protected]>
  166. * ExpressionVisitor.cs (Visit): don't die because of Power.
  167. 2008-04-09 Jb Evain <[email protected]>
  168. * Expression.cs: check for illegal booleab unary expressions.
  169. 2008-04-09 Jb Evain <[email protected]>
  170. * UnaryExpression.cs: implement compilation of negate.
  171. 2008-04-09 Jb Evain <[email protected]>
  172. * UnaryExpression.cs, Expression.cs: implement IsLifted and IsLifted
  173. to null for simple unary operators. Implement Not compilation.
  174. 2008-04-08 Jb Evain <[email protected]>
  175. * ElementInit.cs: emit pop if the add method doesn't return void.
  176. 2008-03-20 Jb Evain <[email protected]>
  177. * Expression.cs: use the new and more complete IsAssignableTo
  178. instead of IsAssignableFrom.
  179. 2008-03-19 Jb Evain <[email protected]>
  180. * LambdaExpression.cs: use the new standardified IsAssignableTo,
  181. fixes ExpressionTest_NewArrayBounds.TestArrayAssignability.
  182. 2008-03-19 Jb Evain <[email protected]>
  183. * Extensions.cs (Type.IsAssignableTo): deal with arrays.
  184. 2008-03-13 Jb Evain <[email protected]>
  185. * NewArrayExpression.cs (EmitNewArrayBounds): implement.
  186. 2008-03-12 Jb Evain <[email protected]>
  187. * NewArrayExpression.cs (Emit): naive implementation of emit support
  188. for array initialization.
  189. 2008-03-11 Jb Evain <[email protected]>
  190. * BinaryExpression.cs: very naive implementation of emitting
  191. array accesses.
  192. 2008-03-11 Jb Evain <[email protected]>
  193. * *.cs: Move the different Emit* helpers to EmitContext,
  194. so that they get used more naturally by the non Expression
  195. types.
  196. 2008-03-10 Jb Evain <[email protected]>
  197. * TypeBinaryExpression.cs, Expression.cs: refactor an EmitIsInst.
  198. * UnaryExpression.cs: implement TypeAs using the EmitIsInst.
  199. 2008-03-10 Jb Evain <[email protected]>
  200. * TypeBinaryExpression.cs (Emit): implement.
  201. 2008-03-08 Jb Evain <[email protected]>
  202. * MemberListBinding.cs (Emit): implement.
  203. * MemberBinding.cs (EmitLoadMember): add helper.
  204. 2008-03-08 Jb Evain <[email protected]>
  205. * MemberAssignment.cs (Emit): implement.
  206. 2008-03-08 Jb Evain <[email protected]>
  207. * ElementInit.cs (Emit): implement.
  208. 2008-03-06 Jb Evain <[email protected]>
  209. * EmitContext.cs: the DebugContext delegate the CreateDelegate
  210. to a DynamicContext to avoid visibility issues in debug mode.
  211. 2008-03-06 Jb Evain <[email protected]>
  212. * EmitContext.cs: Lambda methods bypass JIT visibility checks.
  213. 2008-03-06 Jb Evain <[email protected]>
  214. * MethodCallExpression.cs, Expression.cs: refactor method calling
  215. into a more sophisticated EmitCall in Expression.
  216. * InvocationExpression.cs (Emit): implement using the previous EmitCall.
  217. 2008-03-06 Jb Evain <[email protected]>
  218. * Expression.cs: add a EmitCall helper.
  219. * MemberExpression.cs: implement property access.
  220. 2008-03-06 Jb Evain <[email protected]>
  221. * MethodCallExpression.cs, Expression.cs: refactor a EmitLoad in Expression.
  222. * MemberExpression.cs: use EmitLoad to load the instance field if needed.
  223. 2008-03-06 Jb Evain <[email protected]>
  224. * BinaryExpression.cs, Expression.cs: move EmitStored from
  225. BinaryExpression to Expression.
  226. * MethodCallExpression.cs: allow method calls on structs.
  227. 2008-03-05 Jb Evain <[email protected]>
  228. * Expression.cs: Fix the Call method which takes an array
  229. of type arguments.
  230. 2008-03-05 Jb Evain <[email protected]>
  231. * Expression.cs: fix for a good chunk of lifted/liftToNull tests.
  232. 2008-02-26 Jb Evain <[email protected]>
  233. * Expression.cs (Call): Guess the parameters type from the argument
  234. types if needed.
  235. 2008-02-25 Jb Evain <[email protected]>
  236. * NewExpression.cs (Emit): deal with value types construction.
  237. 2008-02-25 Jb Evain <[email protected]>
  238. * Expression.cs, NewExpression.cs: deal with the fact that value types
  239. don't have a parameterless constructor.
  240. 2008-02-24 Jb Evain <[email protected]>
  241. * LambdaExpression.cs, EmitContext.cs: make compilation
  242. of delegate returning void work.
  243. 2008-02-24 Jb Evain <[email protected]>
  244. * MethodCallExpression.cs: emit call or callvirt depending
  245. on the virtuality of the method.
  246. 2008-02-24 Jb Evain <[email protected]>
  247. * LambdaExpression.cs: properly format error message.
  248. 2008-02-21 Jb Evain <[email protected]>
  249. * BinaryExpression.cs (EmitCoalesce): fix setup_null.
  250. 2008-02-21 Jb Evain <[email protected]>
  251. * BinaryExpression.cs (Emit): fix the both_are_null case.
  252. 2008-02-20 Jb Evain <[email protected]>
  253. * Expression.cs, ExpressionPrinter.cs: implement MemberBind.
  254. 2008-02-20 Jb Evain <[email protected]>
  255. * Expression.cs, ExpressionPrinter.cs: implement ListInit.
  256. 2008-02-19 Jb Evain <[email protected]>
  257. * Expression.cs, ExpressionPrinter.cs: implement MemberInit.
  258. 2008-02-19 Jb Evain <[email protected]>
  259. * Expression.cs, ExpressionPrinter.cs: implement last New
  260. overload for anonymous types.
  261. 2008-02-08 Jb Evain <[email protected]>
  262. * Expression.cs, InvocationExpression.cs, ExpressionPrinter.cs
  263. add support for Invoke.
  264. 2008-02-04 Jb Evain <[email protected]>
  265. * ExpressionPrinter.cs: fix printing of MemberListBinding.
  266. 2008-02-04 Jb Evain <[email protected]>
  267. * Expression.cs, NewExpression.cs: make New(Type) test pass.
  268. 2008-02-04 Jb Evain <[email protected]>
  269. * ExpressionPrinter.cs: fix and clean printing of ElementInit.
  270. 2008-02-02 Jb Evain <[email protected]>
  271. * Expression.cs: fix ListBind(MemberInfo,IEnumerable<ElementInit>).
  272. 2008-02-02 Jb Evain <[email protected]>
  273. * Expression.cs: fix ListBind(MethodInfo,IEnumerable<ElementInit>).
  274. 2008-02-01 Olivier Dufour <[email protected]>
  275. * Expression.cs, ExpressionPrinter.cs:Add ListBind
  276. 2008-02-01 Olivier Dufour <[email protected]>
  277. * Expression.cs, ExpressionPrinter.cs:Add Elementinit
  278. 2008-01-31 Jb Evain <[email protected]>
  279. * UnaryExpression.cs: emit array length.
  280. 2008-01-31 Jb Evain <[email protected]>
  281. * MemberExpression.cs: Simple support for emitting fields.
  282. 2008-01-30 Jb Evain <[email protected]>
  283. * MethodCallExpression.cs: very naive implementation of Emit.
  284. 2008-01-30 Jb Evain <[email protected]>
  285. * NewExpression.cs: add Emit support for reference types.
  286. 2008-01-30 Jb Evain <[email protected]>
  287. * LambdaExpression.cs, EmitContext.cs: small refactoring.
  288. Extract the different EmitContexts to their own file.
  289. 2008-01-29 Jb Evain <[email protected]>
  290. * MethodCallExpression.cs, Expression.cs: complete Calls.
  291. 2008-01-29 Jb Evain <[email protected]>
  292. * Expression.cs, NewExpression.cs, ExpressionPrinter.cs:
  293. implement the first flavors of New.
  294. 2008-01-27 Jb Evain <[email protected]>
  295. * ConditionalExpression.cs: implement Emit.
  296. 2008-01-27 Jb Evain <[email protected]>
  297. * Expression.cs: implement the last Lambda method.
  298. 2008-01-27 Jb Evain <[email protected]>
  299. * LambdaExpression.cs: fix the Type of the LambdaExpressions.
  300. 2008-01-27 Olivier Dufour <[email protected]>
  301. * Expression.cs, InvocationExpession.cs,
  302. ListInitExpression.cs, MemberInitExpression.cs
  303. NewExpression.cs : Add all missing
  304. constructor in Expressions and remove the base one
  305. 2008-01-25 Jb Evain <[email protected]>
  306. * Expression.cs, ExpressionPrinter.cs: implement Bind.
  307. 2008-01-25 Jb Evain <[email protected]>
  308. * MemberMemberBinding.cs, MemberListBinding.cs,
  309. MemberAssignment.cs, MemberBinding.cs:
  310. add constructors.
  311. 2008-01-25 Jb Evain <[email protected]>
  312. * Expression.cs: implement PropertyOrField.
  313. 2008-01-24 Jb Evain <[email protected]>
  314. * Expression.cs, MemberExpression.cs, ExpressionPrinter.cs:
  315. implement Field and Property.
  316. 2008-01-22 Miguel de Icaza <[email protected]>
  317. * BinaryExpression.cs: Unleash the power of cut and paste.
  318. Bring a bunch of operatros from mcs/expression.cs
  319. * Expression.cs: There is no op_LogicalAnd or op_LogicalOr, I just
  320. used those from mcs, that was wrong. use the proper ones, clean
  321. up the result.
  322. * BinaryExpression.cs: Add method invocations for binary methods.
  323. 2008-01-22 Jb Evain <[email protected]>
  324. * Expression.cs, ExpressionPrinter.cs: implement NewArrayList.
  325. 2008-01-22 Jb Evain <[email protected]>
  326. * Expression.cs, ExpressionPrinter.cs, NewArrayExpression.cs:
  327. implement Expression.NewArrayBounds.
  328. 2008-01-22 Jb Evain <[email protected]>
  329. * ExpressionPrinter.cs: fix Lambda and Equal.
  330. 2008-01-22 Miguel de Icaza <[email protected]>
  331. * BinaryExpression.cs (EmitCoalesce): Add support for emitting
  332. code for Coalesce.
  333. TODO: this does not use the "Conversion" Lambda, which am not sure
  334. who generates this or what it is used for.
  335. (EmitLogical): Fix a couple of bugs in AndAlso, OrElse.
  336. * Expression.cs: Add support for Coalesce.
  337. (BinaryCoreCheck): Move more checking here, instead of the helper
  338. routines, will remove them next.
  339. * LambdaExpression.cs (Compile): Create the delegate last, so we
  340. manage to save the assembly while debugging in case of error
  341. 2008-01-21 Miguel de Icaza <[email protected]>
  342. * Expression.cs (BinaryCoreCheck): Add checking for a few
  343. operators here (to avoid doing a second pass, handles AndAlso and
  344. OrElse).
  345. (AndAlso, OrElse): Add some code.
  346. * BinaryExpression.cs: Instead of using GetValueOrDefault use
  347. get_Value, as we already probed for the lack of value.
  348. Split out support for And/Or to a separate routine as the code is
  349. not very easy to share with the arithmetics code.
  350. 2008-01-21 Marek Safar <[email protected]>
  351. * BinaryExpression.cs: Fixed initobj initialization.
  352. 2008-01-21 Jb Evain <[email protected]>
  353. * Expression.cs, UnaryExpression.cs, BinaryExpression.cs:
  354. Move the IsUnsigned helper from BinaryExpression to Expression,
  355. so it can be used in UnaryExpression.
  356. 2008-01-21 Miguel de Icaza <[email protected]>
  357. * Start code generation for nullables, currently this generates
  358. incorrect code for things like:
  359. Expression<Func<int?, int?, int?>> e2 = (a, b) => a + b;
  360. e2.Compile ().Invoke (null, 3))
  361. This should return null, but returns something else.
  362. * Introduce LINQ_DBG env variable, which generates a linq file in
  363. /tmp; It currently does not work as well as it should, as the
  364. Func<> parameters do not mwatch the generated method.
  365. Investigate.
  366. 2008-01-20 Miguel de Icaza <[email protected]>
  367. Introduce support for Nullable arguments, no code is generated for
  368. these yet, its only tests + node creation behavior at this point.
  369. * Expression.cs (BinaryCoreCheck): Do not allow "int?" and "int"
  370. as operators, they must both be nullable.
  371. NullableTypes in the arguments are transformed into the underlying
  372. values when doing the method validation.
  373. 2008-01-18 Miguel de Icaza <[email protected]>
  374. * ParameterExpression.cs: Add emit support.
  375. 2008-01-18 Jb Evain <[email protected]>
  376. * Expression[Printer|Visitor].cs: implement UnaryPlus, Not, Negate.
  377. 2008-01-18 Miguel de Icaza <[email protected]>
  378. * BinaryExpression.cs: Add support for emitting code for some
  379. operators (ported from the Mono C# compiler).
  380. Add tests.
  381. 2008-01-17 Miguel de Icaza <[email protected]>
  382. Beginning of code generation framework for Linq.Expressions.
  383. Some code was borrowed by from the C# compiler
  384. * Expression_T.cs: Fill in the blanks.
  385. * LambdaExpression.cs: Validation of parameters mostly, a tiny bit
  386. of codegen.
  387. * ConstantExpression.cs: Mostly done, need to write tests for
  388. non-fundamental types and other ValueType initializations.
  389. 2008-01-17 Jb Evain <[email protected]>
  390. * Expression.cs: implement MakeMemberAccess.
  391. 2008-01-17 Jb Evain <[email protected]>
  392. * Expression.cs, ExpressionPrinter.cs, BinaryExpression.cs:
  393. implement ArrayIndex.
  394. 2008-01-17 Jb Evain <[email protected]>
  395. * Expression.cs: Use TypeCode for IsInt and IsNumber.
  396. 2008-01-16 Miguel de Icaza <[email protected]>
  397. * Expression.cs: Add support for user-defined operators.
  398. Put back various binary operator tests.
  399. 2008-01-16 Jb Evain <[email protected]>
  400. * Expression.cs, ExpressionPrinter.cs: fix call for static methods.
  401. 2008-01-15 Miguel de Icaza <[email protected]>
  402. * Expression.cs: Do validation on the method parameters and use
  403. the return type if provided.
  404. 2008-01-15 Jb Evain <[email protected]>
  405. * MethodCallExpression.cs, Expression.cs
  406. ExpressionPrinter.cs: Implement Call (Expression, ...)
  407. 2008-01-15 Jb Evain <[email protected]>
  408. * Expression.cs, ConditionalExpressionExpression.cs
  409. ExpressionPrinter.cs : implement Expression.Condition.
  410. 2008-01-15 Jb Evain <[email protected]>
  411. * Expression.cs,
  412. ParameterExpression.cs,
  413. ExpressionPrinter.cs: implement Expression.Parameter
  414. 2008-01-15 Jb Evain <[email protected]>
  415. * ExpressionPrinter.cs (VisitBinaryExpression): simple
  416. implementation (probably misses a few cases).
  417. 2008-01-14 Miguel de Icaza <[email protected]>
  418. * Expression.cs: Bring back the (most) of binary operators. Added
  419. type checking as well and reorganized the source file by topic
  420. instead of alphabetical sorting.
  421. 2008-01-14 Jb Evain <[email protected]>
  422. * ExpressionPrinter.cs: print ArrayLength.
  423. 2008-01-14 Jb Evain <[email protected]>
  424. * Expression.cs: TypeAs can't take value types.
  425. * ExpressionPrinter.cs: implement TypeAs.
  426. 2008-01-14 Jb Evain <[email protected]>
  427. * Expression.cs: implement TypeIs.
  428. * ExpressionPrinter.cs: implement VisitTypeBinaryExpression.
  429. * TypeBinaryExpression.cs: add proper ctor.
  430. 2008-01-14 Jb Evain <[email protected]>
  431. * Expression.cs, ExpressionPrinter.cs: fix for Quote's type.
  432. 2008-01-14 Jb Evain <[email protected]>
  433. * BinaryExpression.cs,
  434. * Expression.cs: revert part of Miguel's last patch.
  435. MakeBinary is expected to call the appropriate factory
  436. methods. Whose methods that are responsible for creating
  437. the good BinaryExpression, wether they use a custom method
  438. or not.
  439. 2008-01-14 Jb Evain <[email protected]>
  440. * Expression.cs: MakeUnary is expected to call the appropriate
  441. factory methods.
  442. 2008-01-14 Miguel de Icaza <[email protected]>
  443. * Expression.cs (Constant, MakeBinary and consumers of it): Some
  444. more fill-up changes.
  445. MakeBinary will need much more work to support user-provided
  446. types.
  447. 2008-01-13 Jb Evain <[email protected]>
  448. * *.cs: fresh implementation.