[swfinterp] Add support for multiple classes

This commit is contained in:
Philipp Hagemeister 2014-07-20 00:25:58 +02:00
parent e75c24e889
commit 70f767dc65
2 changed files with 57 additions and 6 deletions

View file

@ -0,0 +1,15 @@
// input: []
// output: 0
package {
public class ClassConstruction {
public static function main():int{
var f:Foo = new Foo();
return 0;
}
}
}
class Foo {
}