Browse Source

Use instVarNamed:.

Herby Vojčík 4 years ago
parent
commit
19b90f7e45
2 changed files with 277 additions and 298 deletions
  1. 276 297
      src/IDE.js
  2. 1 1
      src/IDE.st

File diff suppressed because it is too large
+ 276 - 297
src/IDE.js


+ 1 - 1
src/IDE.st

@@ -1236,7 +1236,7 @@ allVariables
 	all := Dictionary new.
 
 	self receiver class allInstanceVariableNames do: [ :each |
-		all at: each put: (self receiver instVarAt: each) ].
+		all at: each put: (self receiver instVarNamed: each) ].
 	
 	selectedContext locals keysAndValuesDo: [ :key :value |
 		all at: key put: value ].

Some files were not shown because too many files changed in this diff