git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1adc9bd
)
added test case for the 'filename' package
author
Matthias Kramm
<kramm@quiss.org>
Fri, 30 Jan 2009 18:54:20 +0000
(19:54 +0100)
committer
Matthias Kramm
<kramm@quiss.org>
Fri, 30 Jan 2009 18:54:20 +0000
(19:54 +0100)
lib/as3/ok/packageinit.as
patch
|
blob
|
history
diff --git
a/lib/as3/ok/packageinit.as
b/lib/as3/ok/packageinit.as
index
ce42759
..
2b354c1
100644
(file)
--- a/
lib/as3/ok/packageinit.as
+++ b/
lib/as3/ok/packageinit.as
@@
-1,8
+1,10
@@
+var np_x = "ok 4/4";
+
package some.other.module {
- public var msg = "ok 2/3";
+ public var msg = "ok 2/4";
public function getmsg() {
- return "ok 3/3";
+ return "ok 3/4";
}
}
@@
-15,7
+17,7
@@
package {
var message="error";
/* test code which executes directly in a package */
if(mode == 3)
- message = "ok 1/1";
+ message = "ok 1/4";
else
message = "error";
@@
-28,3
+30,5
@@
package {
trace(msg);
trace(getmsg());
}
+
+trace(np_x);