|
@@ -8152,7 +8152,7 @@ var self=this;
|
|
|
|
|
|
return $core.withContext(function($ctx1) {
|
|
|
|
|
|
-return anObject.klass && anObject.klass.className;
|
|
|
+return anObject.klass != null && anObject.klass.className;
|
|
|
return self;
|
|
|
|
|
|
}, function($ctx1) {$ctx1.fill(self,"classNameOf:",{anObject:anObject},$globals.Set)});
|
|
@@ -8160,7 +8160,7 @@ return self;
|
|
|
},
|
|
|
|
|
|
args: ["anObject"],
|
|
|
-source: "classNameOf: anObject\x0a\x09\x22Answer the class name of `anObject`, or `undefined` \x0a\x09if `anObject` is not an Smalltalk object\x22\x0a\x09\x0a\x09<return anObject.klass && anObject.klass.className>",
|
|
|
+source: "classNameOf: anObject\x0a\x09\x22Answer the class name of `anObject`, or `undefined` \x0a\x09if `anObject` is not an Smalltalk object\x22\x0a\x09\x0a\x09<return anObject.klass != null && anObject.klass.className>",
|
|
|
referencedClasses: [],
|
|
|
|
|
|
messageSends: []
|