back2dos / tinkerbell

MIT License
83 stars 8 forks source link

methods sometimes don't get forwarded #19

Closed raould closed 12 years ago

raould commented 12 years ago

sometimes it fails to carry over certain things. so far has always been methods, haven't seen it fail with vars. i even had a case where it was working and then i have been doing major rework and it stopped working. and then if i explicitly just add the field it works.

class X implements Cls { @:forward var y:Y = _; public function foobar() { callAMethodOnY(); // compile fails with "unknown identifier : callAMethodOnY" y.callAMethodOnY(); // works } }

back2dos commented 12 years ago

I'm pretty sure this is a duplicate of #22

raould commented 12 years ago

ok