[swfinterp] Intepret more multinames

This commit is contained in:
Philipp Hagemeister 2014-11-17 03:46:23 +01:00
parent 7f3e33a147
commit 4baafa229d
2 changed files with 19 additions and 0 deletions

10
test/swftests/DictCall.as Normal file
View file

@ -0,0 +1,10 @@
// input: [{"x": 1, "y": 2}]
// output: 3
package {
public class DictCall {
public static function main(d:Object):int{
return d.x + d.y;
}
}
}