Imported Upstream version 5.0.0.42

Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2017-04-10 11:41:01 +00:00
parent 1190d13a04
commit 6bdd276d05
19939 changed files with 3099680 additions and 93811 deletions

View File

@@ -44,8 +44,8 @@ namespace Mono.ILASM {
private Target target = Target.Exe;
private string target_string = "exe";
private bool show_tokens = false;
private bool show_method_def = false;
private bool show_method_ref = false;
// private bool show_method_def = false;
// private bool show_method_ref = false;
private bool show_parser = false;
private bool scan_only = false;
private bool debugging_info = false;
@@ -189,7 +189,7 @@ namespace Mono.ILASM {
ie.FilePath = file_path;
ie.Location = scanner.Reader.Location;
throw;
} catch (Exception e){
} catch (Exception){
Console.Write ("{0} ({1}, {2}): ",file_path, scanner.Reader.Location.line, scanner.Reader.Location.column);
throw;
} finally {
@@ -277,10 +277,10 @@ namespace Mono.ILASM {
show_tokens = true;
break;
case "show_method_def":
show_method_def = true;
// show_method_def = true;
break;
case "show_method_ref":
show_method_ref = true;
// show_method_ref = true;
break;
case "show_parser":
show_parser = true;