- AS1 slash syntax support (decompilation, direct editation)

- AS1/2 Using eval, set functions on obfuscated names instead of §§ syntax where applicable
This commit is contained in:
Jindra Petřík
2018-05-27 16:52:55 +02:00
parent 6ec124f71a
commit d138c61072
21 changed files with 2408 additions and 2521 deletions

View File

@@ -12,7 +12,8 @@
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library.
* License along with this library.
*/
package com.jpexs.decompiler.flash;
import java.io.File;
@@ -54,6 +55,7 @@ public abstract class FileTestBase {
Object[][] ret = new Object[files.size() + 2][1];
ret[0][0] = "testdata/as2/as2.swf";
ret[1][0] = "testdata/as3/as3.swf";
ret[1][0] = "testdata/as2_slash_syntax/slash_syntax.swf";
for (int f = 0; f < files.size(); f++) {
ret[f + 2][0] = files.get(f);
}