Skip to content

Commit

Permalink
- use argumentNames and temporaryNames from the ast instead of the de…
Browse files Browse the repository at this point in the history
…precated tempNames

- we use #ast instead of #parseTree to fill the AST Cache
  • Loading branch information
MarcusDenker committed May 29, 2019
1 parent 1f9ce45 commit 08ad4bb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Kernel/CompiledMethod.class.st
Expand Up @@ -1069,7 +1069,8 @@ CompiledMethod >> tags [

{ #category : #'source code management' }
CompiledMethod >> tempNames [
^self methodNode tempNames.
"on the level of the compiled method, tempNames includes argument names"
^self ast argumentNames, self ast temporaryNames
]

{ #category : #'accessing-tags' }
Expand Down

0 comments on commit 08ad4bb

Please sign in to comment.