decompiler: registry flag to dump original line numbers as comments

This commit is contained in:
Egor.Ushakov
2014-10-22 14:49:55 +04:00
parent eb3db8dc8b
commit 92af36f412
3 changed files with 38 additions and 0 deletions

View File

@@ -54,6 +54,7 @@ public interface IFernflowerPreferences {
String INDENT_STRING = "ind";
String BANNER = "ban";
String DUMP_ORIGINAL_LINES = "__dump_original_lines__";
String UNIT_TEST_MODE = "__unit_test_mode__";
String LINE_SEPARATOR_WIN = "\r\n";
@@ -91,5 +92,6 @@ public interface IFernflowerPreferences {
put(INDENT_STRING, " ");
put(BANNER, "");
put(UNIT_TEST_MODE, "0");
put(DUMP_ORIGINAL_LINES, "0");
}});
}