cy
04/03/2017, 6:01 PMbeholder
04/03/2017, 6:03 PMhead { head { } }
is prohibited, but b { b { } }
is not?cy
04/03/2017, 6:07 PMbody {
// here this : Body
head {
// here this : Head
// this : Body is hidden in this scope
// but head requires receiver of type Body
// this is why it is
// not available inside of this block
}
}
head { }
invocation to hide outer this
of type BodyHead
and another one of type Body
Head
is marked with annotation so outer this
scopes are not visiblebeholder
04/03/2017, 6:27 PMb { b { ... } }
call for example?