git.asbjorn.biz
/
swftools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
don't drop empty glyphs in poly2bitmap
[swftools.git]
/
lib
/
as3
/
ok
/
super.as
1
package {
2
class C {
3
function C(s:String) {
4
trace(s);
5
}
6
}
7
class D extends C {
8
function D() {
9
//explicit super call w/ args
10
super("ok");
11
}
12
}
13
class E extends D {
14
function E() {
15
//explicit super call
16
super();
17
}
18
}
19
class F extends E {
20
function F() {
21
//implicit super call
22
}
23
}
24
import flash.display.MovieClip
25
public class Main extends flash.display.MovieClip {
26
function Main() {
27
new F
28
trace("[exit]");
29
}
30
}
31
}