git.asbjorn.biz
/
swftools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fixed staticself.as testcase
[swftools.git]
/
lib
/
as3
/
err
/
missingoverride.as
1
package I {
2
public interface I1 {
3
function f1()
4
function f2()
5
}
6
public class C {
7
function f1() {}
8
//fail to override f2
9
}
10
}