mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-26 08:57:26 +00:00
Issue #842 For reconstruction if debug line info present
Spaces added between parts of for
This commit is contained in:
@@ -138,7 +138,7 @@ public class ActionScript2Test extends ActionStript2TestBase {
|
||||
public void frame28_forWithContinueTest() {
|
||||
compareSrc(28, "trace(\"forWithContinueTest\");\r\n"
|
||||
+ "var i = 0;\r\n"
|
||||
+ "for(;i < 10;i++)\r\n"
|
||||
+ "for(; i < 10; i++)\r\n"
|
||||
+ "{\r\n"
|
||||
+ "trace(\"hello:\" + i);\r\n"
|
||||
+ "if(i == 5)\r\n"
|
||||
@@ -213,7 +213,7 @@ public class ActionScript2Test extends ActionStript2TestBase {
|
||||
public void frame32_switchForTest() {
|
||||
compareSrc(32, "trace(\"switchForTest\");\r\n"
|
||||
+ "var i = 0;\r\n"
|
||||
+ "for(;i < 10;i++)\r\n"
|
||||
+ "for(; i < 10; i++)\r\n"
|
||||
+ "{\r\n"
|
||||
+ "switch(i)\r\n"
|
||||
+ "{\r\n"
|
||||
|
||||
Reference in New Issue
Block a user