Displaying 1 result from an estimated 1 matches for "movie68".
2007 Jun 05
0
Branch 'as' - 8 commits - libswfdec/Makefile.am libswfdec/swfdec_as_context.c libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_number.c libswfdec/swfdec_as_scope.h
...out-of-with.swf.trace \
lifetime1.swf \
lifetime1.swf.trace \
load-4.swf \
diff --git a/test/trace/jump-into-with.as b/test/trace/jump-into-with.as
new file mode 100644
index 0000000..7f83c51
--- /dev/null
+++ b/test/trace/jump-into-with.as
@@ -0,0 +1,20 @@
+// makeswf -v 7 -s 200x150 -r 1 -o movie68.swf movie68.as
+
+// note that the real checks are binary-modified to produce the desired tests.
+// The branch offsets have been adjusted.
+trace ("Check various things when jumping into with commands");
+x = 0;
+o = new Object ();
+o.x = -1;
+with (o) {
+ trace (x);
+}
+trace (x);
+x++...