comparison samples/compilerbug_005.tp @ 69:ba032565c7a5

Fix handling of variable style access to self and parent object messages defined with lambdas. Improve test case for this bug to include parent object access as well as self object access.
author Mike Pavone <pavone@retrodev.com>
date Sat, 14 Jul 2012 19:24:04 -0700
parents b4190db72288
children
comparison
equal deleted inserted replaced
68:3a169ebb3224 69:ba032565c7a5
1 #{ 1 #{
2 foo <- { "foobar" } 2 foo <- { "foobar" }
3 bar <- #{
4 baz <- {
5 print: foo
6 }
7 }
3 main <- { 8 main <- {
4 print: foo 9 print: foo
10 bar baz
5 } 11 }
6 } 12 }