mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-12 06:30:39 +00:00
Fixed AS1/2 - newobject deobfuscated name
This commit is contained in:
@@ -52,6 +52,7 @@ All notable changes to this project will be documented in this file.
|
||||
- AS1/2 - delete on nonmember
|
||||
- AS1/2 - Infinity, NaN can be used as identifiers, are normal variables
|
||||
- AS2 - obfuscated class attribute names
|
||||
- AS1/2 - newobject deobfuscated name
|
||||
|
||||
## [14.6.0] - 2021-11-22
|
||||
### Added
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
*/
|
||||
package com.jpexs.decompiler.flash.action.model;
|
||||
|
||||
import com.jpexs.decompiler.flash.IdentifiersDeobfuscation;
|
||||
import com.jpexs.decompiler.flash.SourceGeneratorLocalData;
|
||||
import com.jpexs.decompiler.flash.action.swf5.ActionNewObject;
|
||||
import com.jpexs.decompiler.flash.helpers.GraphTextWriter;
|
||||
@@ -54,7 +55,7 @@ public class NewObjectActionItem extends ActionItem {
|
||||
@Override
|
||||
public GraphTextWriter appendTo(GraphTextWriter writer, LocalData localData) throws InterruptedException {
|
||||
writer.append("new ");
|
||||
stripQuotes(objectName, localData, writer);
|
||||
writer.append(IdentifiersDeobfuscation.printIdentifier(false, objectName.toStringNoQuotes(localData)));
|
||||
writer.spaceBeforeCallParenthesies(arguments.size());
|
||||
writer.append("(");
|
||||
for (int t = 0; t < arguments.size(); t++) {
|
||||
|
||||
Reference in New Issue
Block a user