Issue #245 AS3: double spaces around "as" keyword

This commit is contained in:
Jindra Petk
2013-07-17 17:02:46 +02:00
parent f16c42a510
commit 0b1aa1ce40

View File

@@ -23,6 +23,6 @@ import com.jpexs.decompiler.graph.GraphTargetItem;
public class AsTypeAVM2Item extends BinaryOpItem {
public AsTypeAVM2Item(AVM2Instruction instruction, GraphTargetItem value, GraphTargetItem type) {
super(instruction, PRECEDENCE_RELATIONAL, value, type, " as ");
super(instruction, PRECEDENCE_RELATIONAL, value, type, "as");
}
}