|
@@ -1050,12 +1050,12 @@ return smalltalk.withContext(function($ctx1) {
|
|
|
var $1;
|
|
|
$1=_st(_st(self._selectedClass())._isNil())._or_((function(){
|
|
|
return smalltalk.withContext(function($ctx2) {
|
|
|
-return _st(aString)._match_("^ [A-Z]");
|
|
|
+return _st(aString)._match_("^[A-Z]");
|
|
|
}, function($ctx2) {$ctx2.fillBlock({},$ctx1,1)})}));
|
|
|
return $1;
|
|
|
}, function($ctx1) {$ctx1.fill(self,"shouldCompileClassDefinition:",{aString:aString},smalltalk.HLToolModel)})},
|
|
|
args: ["aString"],
|
|
|
-source: "shouldCompileClassDefinition: aString\x0a\x09^ self selectedClass isNil or: [\x0a\x09\x09aString match: '^ [A-Z]' ]",
|
|
|
+source: "shouldCompileClassDefinition: aString\x0a\x09^ self selectedClass isNil or: [\x0a\x09\x09aString match: '^[A-Z]' ]",
|
|
|
messageSends: ["or:", "isNil", "selectedClass", "match:"],
|
|
|
referencedClasses: []
|
|
|
}),
|