Fixed #inspector2Tabs method: always call 'super inspector2Tabs'
authorJan Vrany <jan.vrany@fit.cvut.cz>
Fri, 13 Feb 2015 22:03:04 +0100
changeset 3585 1f2291b908b7
parent 3584 5307b2824e9d
child 3586 8e63b6c0cb7e
Fixed #inspector2Tabs method: always call 'super inspector2Tabs' Otherwise changes in superclass won't have effect on subclasses that override #inspector2Tabs!
InstrumentingCompiler.st
--- a/InstrumentingCompiler.st	Fri Feb 13 16:45:11 2015 +0100
+++ b/InstrumentingCompiler.st	Fri Feb 13 22:03:04 2015 +0100
@@ -588,9 +588,10 @@
 !
 
 inspector2Tabs
-    ^ #( inspector2TabForBasicInspect inspector2TabSource )
+    ^ super inspector2Tabs , #( inspector2TabSource )
 
     "Created: / 28-07-2013 / 23:18:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 13-02-2015 / 21:03:10 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !InstrumentingCompiler::StatementExecutionInfo methodsFor:'instrumentation calls'!
@@ -1153,10 +1154,10 @@
 !InstrumentingCompiler class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/InstrumentingCompiler.st,v 1.34 2015-02-03 14:21:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/InstrumentingCompiler.st,v 1.35 2015-02-13 21:03:04 vrany Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libcomp/InstrumentingCompiler.st,v 1.34 2015-02-03 14:21:35 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/InstrumentingCompiler.st,v 1.35 2015-02-13 21:03:04 vrany Exp $'
 ! !