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:
04987d2
)
added test for pure setter
author
kramm
<kramm>
Tue, 30 Dec 2008 22:44:00 +0000
(22:44 +0000)
committer
kramm
<kramm>
Tue, 30 Dec 2008 22:44:00 +0000
(22:44 +0000)
lib/as3/ok/getset.as
patch
|
blob
|
history
diff --git
a/lib/as3/ok/getset.as
b/lib/as3/ok/getset.as
index
49a3c7f
..
9b28980
100644
(file)
--- a/
lib/as3/ok/getset.as
+++ b/
lib/as3/ok/getset.as
@@
-8,6
+8,9
@@
package package2 {
trace("ok 1/2");
return 1;
}
+
+ public function set n(n:uint) {
+ }
}
}
@@
-19,6
+22,7
@@
package {
function Main() {
var t:Test = new Test();
t.x++;
+ t.n = 3;
}
}
}