Skip to content

Commit 179e30b

Browse files
committed
Fixes an issue in the notification of compilation
1 parent fbef1bb commit 179e30b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/Babylonian-Compiler.package/ClassDescription.extension/instance/noteCompilationOf.meta..st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ noteCompilationOf: aSelector meta: isMeta
33

44
| theClass method methodHasInstalledInstrumentation sourceIsNotInstrumented |
55
theClass := isMeta ifTrue: [self class] ifFalse: [self].
6-
method := self>>aSelector.
6+
method := theClass>>aSelector.
77

88
sourceIsNotInstrumented := (BPCompiler new methodSourceRequiresBPLayers: method getSource) not.
99
methodHasInstalledInstrumentation := method isContextSMethod and: [method isLayered and: [method allInvolvedLayers = #(bpInstrumented)]].

packages/Babylonian-Compiler.package/ClassDescription.extension/methodProperties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
"class" : {
33
},
44
"instance" : {
5-
"noteCompilationOf:meta:" : "pre 10/8/2020 09:47" } }
5+
"noteCompilationOf:meta:" : "pre 10/9/2020 11:03" } }

0 commit comments

Comments
 (0)