about summary refs log tree commit diff
path: root/test/swftests
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-11-17 03:46:23 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-11-17 03:46:23 +0100
commit4baafa229d5e013a62d636fa60920cdc1a876a5a (patch)
tree1de90482af7cbbdd05774a302899695976fcd6b2 /test/swftests
parent7f3e33a1475cd4ac11c73108e03d3405b86262b8 (diff)
downloadyoutube-dl-4baafa229d5e013a62d636fa60920cdc1a876a5a.tar.gz
youtube-dl-4baafa229d5e013a62d636fa60920cdc1a876a5a.tar.xz
youtube-dl-4baafa229d5e013a62d636fa60920cdc1a876a5a.zip
[swfinterp] Intepret more multinames
Diffstat (limited to 'test/swftests')
-rw-r--r--test/swftests/DictCall.as10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/swftests/DictCall.as b/test/swftests/DictCall.as
new file mode 100644
index 000000000..236efd848
--- /dev/null
+++ b/test/swftests/DictCall.as
@@ -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;
+    }
+}
+}