ChangeLog 22 KB

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