The Trunk: Compiler-nice.431.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Compiler-nice.431.mcz

commits-2
Nicolas Cellier uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-nice.431.mcz

==================== Summary ====================

Name: Compiler-nice.431
Author: nice
Time: 10 May 2020, 9:46:13.694981 am
UUID: d25683a4-9332-443c-9c2f-6d331d7993a6
Ancestors: Compiler-nice.430, Compiler-ct.425

Merge Compiler-ct.425, fix the AST produced by Decompiler so that it can generate correct byteCodes.

=============== Diff against Compiler-nice.430 ===============

Item was changed:
  ----- Method: DecompilerConstructor>>codeAnyLitInd: (in category 'constructor') -----
  codeAnyLitInd: association
 
+ ^LiteralVariableNode new
- ^VariableNode new
  name: association key
  key: association
+ index: nil
- index: 0
  type: LdLitIndType!