git.asbjorn.biz
/
swftools.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
added jpeg3 extraction support to swfextract
[swftools.git]
/
lib
/
as3
/
ok
/
protected.as
1
package {
2
3
public class A
4
{
5
protected var xx:Array = [];
6
7
public function A()
8
{
9
trace("ok");
10
}
11
}
12
13
public class B extends A
14
{
15
public function B()
16
{
17
super();
18
}
19
}
20
21
import flash.display.MovieClip
22
public class Main extends flash.display.MovieClip
23
{
24
public function Main()
25
{
26
var b:B = new B();
27
trace("[exit]");
28
}
29
}
30
31
}