java-decompiler: code attributes reading restored

This commit is contained in:
Roman Shevchenko
2014-09-04 19:02:10 +04:00
parent 686b5abef9
commit 4e79d160ca
5 changed files with 49 additions and 6 deletions

View File

@@ -0,0 +1,11 @@
package pkg;
class TestDebugSymbols {
private int m() {
String text = "text";
long prolonged = 42L;
float decimated = (float)prolonged / 10.0F;
double doubled = (double)(2.0F * decimated);
return (text + ":" + prolonged + ":" + decimated + ":" + doubled).length();
}
}