mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 11:54:36 +00:00
actionscript parser: targetPath function added
This commit is contained in:
@@ -67,6 +67,7 @@ import com.jpexs.decompiler.flash.action.model.StopAllSoundsActionItem;
|
||||
import com.jpexs.decompiler.flash.action.model.StopDragActionItem;
|
||||
import com.jpexs.decompiler.flash.action.model.StringExtractActionItem;
|
||||
import com.jpexs.decompiler.flash.action.model.StringLengthActionItem;
|
||||
import com.jpexs.decompiler.flash.action.model.TargetPathActionItem;
|
||||
import com.jpexs.decompiler.flash.action.model.ThrowActionItem;
|
||||
import com.jpexs.decompiler.flash.action.model.ToIntegerActionItem;
|
||||
import com.jpexs.decompiler.flash.action.model.ToNumberActionItem;
|
||||
@@ -726,6 +727,12 @@ public class ActionScriptParser {
|
||||
ret = new StopDragActionItem(null);
|
||||
break;
|
||||
|
||||
case TARGETPATH:
|
||||
expectedType(SymbolType.PARENT_OPEN);
|
||||
ret = new TargetPathActionItem(null, (expression(registerVars, inFunction, inMethod, true, variables)));
|
||||
expectedType(SymbolType.PARENT_CLOSE);
|
||||
break;
|
||||
|
||||
case UNLOADMOVIE:
|
||||
case UNLOADMOVIENUM:
|
||||
SymbolType unloadType = s.type;
|
||||
|
||||
Reference in New Issue
Block a user