diff --git a/src/Chanel/Chanel.class.st b/src/Chanel/Chanel.class.st index 1d54447..4dff9f4 100644 --- a/src/Chanel/Chanel.class.st +++ b/src/Chanel/Chanel.class.st @@ -242,7 +242,9 @@ Chanel >> ensureSuperInitializeForMethods: methods [ select: [ :method | method methodClass isInstanceSide and: [ method selector = #initialize - and: [ (method ast sendNodes ifNotEmpty: [ :nodes | nodes anySatisfy: [ :node | node isSuperSend and: [ node selector = #initialize ] ] ]) not ] ] ] + and: [ method ast sendNodes + ifNotEmpty: [ :nodes | (nodes anySatisfy: [ :node | node isSuperSend and: [ node selector = #initialize ] ]) not ] + ifEmpty: [ false ] ] ] ] thenDo: [ :method | | ast | ast := method ast.