mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-30 02:45:28 +00:00
13 lines
215 B
ActionScript
13 lines
215 B
ActionScript
package tests
|
|
{
|
|
import flash.events.Event;
|
|
|
|
public class TestOptionalParameters
|
|
{
|
|
public function run(p1:Event=null, p2:Number=1, p3:Number=-1, p4:Number=-1.1, p5:Number=-1.1, p6:String="a") : *
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|