mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-06 22:28:14 +00:00
updated debugger and syntaxpane lib
This commit is contained in:
1
libsrc/ffdec_lib/testdata/flex/TestFlex.as
vendored
1
libsrc/ffdec_lib/testdata/flex/TestFlex.as
vendored
@@ -14,6 +14,7 @@ package
|
||||
private var e:TestDefaultProperty;
|
||||
private var f:TestDeprecated;
|
||||
private var g:TestEffect_Event;
|
||||
private var h:TestSkinParts;
|
||||
|
||||
|
||||
|
||||
|
||||
BIN
libsrc/ffdec_lib/testdata/flex/TestFlex.swf
vendored
BIN
libsrc/ffdec_lib/testdata/flex/TestFlex.swf
vendored
Binary file not shown.
4
libsrc/ffdec_lib/testdata/flex/build.bat
vendored
4
libsrc/ffdec_lib/testdata/flex/build.bat
vendored
@@ -6,8 +6,8 @@ goto block2
|
||||
set ISDEBUG=true
|
||||
:block2
|
||||
set COMPILERPATH=mxmlc.exe
|
||||
if not exist %COMPILERPATH% goto notex
|
||||
%COMPILERPATH% -warnings=false -debug=%ISDEBUG% TestFlex.as>out.txt
|
||||
rem if not exist %COMPILERPATH% goto notex
|
||||
%COMPILERPATH% -warnings=false -debug=%ISDEBUG% -static-link-runtime-shared-libraries TestFlex.as>out.txt
|
||||
start notepad out.txt
|
||||
if errorlevel==1 goto failed
|
||||
goto end
|
||||
|
||||
24
libsrc/ffdec_lib/testdata/flex/classes/TestSkinParts.as
vendored
Normal file
24
libsrc/ffdec_lib/testdata/flex/classes/TestSkinParts.as
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
package classes
|
||||
{
|
||||
import spark.components.Panel;
|
||||
import spark.components.Button;
|
||||
|
||||
public class TestSkinParts extends Panel
|
||||
{
|
||||
// declare the skin parts - only close is required
|
||||
[SkinPart(required="true")]
|
||||
public var closeIcon:Button;
|
||||
[SkinPart(required="false")]
|
||||
public var minimizeIcon:Button;
|
||||
[SkinPart(required="false")]
|
||||
public var resizeGripper:Button;
|
||||
|
||||
[SkinPart(required="false")]
|
||||
public static var neco:Button;
|
||||
|
||||
[SkinPart(required="false")]
|
||||
public function test(){
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user