A lot of methods seem duplicated like for example:
DecompilerConstructor>>codeTemp: index named: tempName
^ TempVariableNode new
name: tempName
index: index
type: LdTempType
scope: 0
DecompilerConstructor>>codeTemp: index
^ TempVariableNode new
name: 't' , (index + 1) printString
index: index
type: LdTempType
scope: 0
The second one should better be
^ self codeTemp: index named: 't' , (index + 1) printString
This is a very minor clean-up, i agree, but plenty of these can make code
smaller smarter easier to maintain...
So my question is where to publish such small pieces of code ?
Nicolas