mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-26 04:31:41 +00:00
AS3: New P-code editing syntax inspired by RABCDAsm.
AS3: Multiname and namespace editing. AS3: Editing whole trait in one textarea AS3: Removed messages about adding new constants AS3: Modified colors in editor AS3: Highlighting pair parenthesis/bracket AS3: Editing various new P-code parameters
This commit is contained in:
@@ -88,14 +88,14 @@ public class ABC {
|
||||
public int removeDeadCode() {
|
||||
int rem = 0;
|
||||
for (MethodBody body : bodies) {
|
||||
rem += body.removeDeadCode(constants);
|
||||
rem += body.removeDeadCode(constants, null/*FIXME*/, method_info[body.method_info]);
|
||||
}
|
||||
return rem;
|
||||
}
|
||||
|
||||
public void restoreControlFlow() {
|
||||
for (MethodBody body : bodies) {
|
||||
body.restoreControlFlow(constants);
|
||||
body.restoreControlFlow(constants, null/*FIXME*/, method_info[body.method_info]);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user