|
|
@ -27,7 +27,6 @@ import de.fernflower.struct.gen.VarType; |
|
|
|
import de.fernflower.util.InterpreterUtil; |
|
|
|
import de.fernflower.util.InterpreterUtil; |
|
|
|
|
|
|
|
|
|
|
|
public class ConstExprent extends Exprent { |
|
|
|
public class ConstExprent extends Exprent { |
|
|
|
|
|
|
|
|
|
|
|
private static final HashMap<Integer, String> escapes = new HashMap<Integer, String>(); |
|
|
|
private static final HashMap<Integer, String> escapes = new HashMap<Integer, String>(); |
|
|
|
|
|
|
|
|
|
|
|
static { |
|
|
|
static { |
|
|
@ -114,10 +113,11 @@ public class ConstExprent extends Exprent { |
|
|
|
Integer val = (Integer)value; |
|
|
|
Integer val = (Integer)value; |
|
|
|
String ret = escapes.get(val); |
|
|
|
String ret = escapes.get(val); |
|
|
|
if(ret == null) { |
|
|
|
if(ret == null) { |
|
|
|
if(!ascii || val.intValue() >= 32 && val.intValue() < 127) { |
|
|
|
char c = (char)val.intValue(); |
|
|
|
ret = String.valueOf((char)val.intValue()); |
|
|
|
if(c >= 32 && c < 127 || !ascii && InterpreterUtil.isPrintableUnicode(c)) { |
|
|
|
|
|
|
|
ret = String.valueOf(c); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
ret = InterpreterUtil.charToUnicodeLiteral(val); |
|
|
|
ret = InterpreterUtil.charToUnicodeLiteral(c); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
return "\'"+ret+"\'"; |
|
|
|
return "\'"+ret+"\'"; |
|
|
@ -263,7 +263,7 @@ public class ConstExprent extends Exprent { |
|
|
|
buffer.append("\\\'"); |
|
|
|
buffer.append("\\\'"); |
|
|
|
break; |
|
|
|
break; |
|
|
|
default: |
|
|
|
default: |
|
|
|
if(!ascii || (c >= 32 && c < 127)) { |
|
|
|
if(c >= 32 && c < 127 || !ascii && InterpreterUtil.isPrintableUnicode(c)) { |
|
|
|
buffer.append(c); |
|
|
|
buffer.append(c); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
buffer.append(InterpreterUtil.charToUnicodeLiteral(c)); |
|
|
|
buffer.append(InterpreterUtil.charToUnicodeLiteral(c)); |
|
|
|