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
/
super.as
1
package {
2
public class A {
3
function A() {
4
}
5
}
6
public class Main {
7
public var x;
8
public function f() {
9
}
10
function Main() {
11
this.x = 3; // error: access to instance variable before super()
12
this.f()
13
super();
14
super(); // error: super called twice
15
}
16
}
17
}