blob: 2a0f75ba0f1ee20a19eba8d7ccfe66af3b4d9b63 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
--- unflasm.c.orig Thu Nov 22 05:59:32 2001
+++ unflasm.c Tue Jan 22 10:28:58 2002
@@ -485,15 +485,7 @@
println("setVariable");
break;
case SWFACTION_SETTARGETEXPRESSION:
- if (targetIndent==1)
- {
- --indent;
- println("end");
- targetIndent = 0;
- }
println("setTargetExpr");
- ++indent;
- targetIndent = 1;
break;
case SWFACTION_STRINGCONCAT:
println("concat");
@@ -1008,18 +1000,7 @@
case SWFACTION_SETTARGET:
{
- if (targetIndent==1)
- {
- --indent;
- println("end");
- targetIndent = 0;
- }
- if (strlen(p)>0)
- {
- println("setTarget '%s'", p);
- ++indent;
- targetIndent = 1;
- }
+ println("setTarget '%s'", p);
break;
}
|