Created
January 14, 2011 21:58
-
-
Save vito/780343 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[0]> A = Object clone | |
<object (delegates to 1 object)> | |
[1]> B = Object clone | |
<object (delegates to 1 object)> | |
[2]> C = Object clone | |
<object (delegates to 1 object)> | |
[3]> A2 = Object clone | |
<object (delegates to 1 object)> | |
[4]> A2 = A clone | |
<object (delegates to 1 object)> | |
[5]> B2 = B clone | |
<object (delegates to 1 object)> | |
[6]> C2 = C clone | |
<object (delegates to 1 object)> | |
[7]> A x: B y: C := @abc | |
@ok | |
[8]> A2 x: B y: C := @a2bc | |
@ok | |
[9]> A x: B2 y: C := @ab2c | |
@ok | |
[10]> A2 x: B2 y: C | |
@a2bc | |
[11]> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment