[swfinterp] Add support for calling methods on objects

This commit is contained in:
Philipp Hagemeister 2014-07-20 14:49:10 +02:00
parent 01b4b74574
commit 0d989011ff
2 changed files with 41 additions and 11 deletions

View file

@ -0,0 +1,21 @@
// input: []
// output: 9
package {
public class PrivateCall {
public static function main():int{
var f:OtherClass = new OtherClass();
return f.func();
}
}
}
class OtherClass {
private function pf():int {
return 9;
}
public function func():int {
return this.pf();
}
}