summaryrefslogtreecommitdiff
path: root/Source/ExecutionEngine/ExecutionEngine.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-06-10 11:23:08 -0700
committerGravatar wuestholz <unknown>2013-06-10 11:23:08 -0700
commit14ec8db388dc3d4db99fc25a6b8f434bba6fccd9 (patch)
tree5439036873a6c08f720f04c4dad9d115bb07e308 /Source/ExecutionEngine/ExecutionEngine.cs
parent79150b0237d7f6015ae0714e9d710fcfb642280e (diff)
Removed unused code.
Diffstat (limited to 'Source/ExecutionEngine/ExecutionEngine.cs')
-rw-r--r--Source/ExecutionEngine/ExecutionEngine.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Source/ExecutionEngine/ExecutionEngine.cs b/Source/ExecutionEngine/ExecutionEngine.cs
index 54d79017..25854ec5 100644
--- a/Source/ExecutionEngine/ExecutionEngine.cs
+++ b/Source/ExecutionEngine/ExecutionEngine.cs
@@ -219,22 +219,6 @@ namespace Microsoft.Boogie
Aux.Add(new AuxErrorInfo(tok, msg));
}
- public void AddAuxInfo(QKeyValue attr)
- {
- while (attr != null)
- {
- if (attr.Key == "msg" && attr.Params.Count == 1 && attr.tok.line != 0 && attr.tok.col != 0)
- {
- var str = attr.Params[0] as string;
- if (str != null)
- {
- AddAuxInfo(attr.tok, str);
- }
- }
- attr = attr.Next;
- }
- }
-
protected static string CleanUp(string msg)
{
if (msg.ToLower().StartsWith("error: "))
@@ -1005,7 +989,6 @@ namespace Microsoft.Boogie
errorInfo = errorInformationFactory.CreateErrorInformation(err.FailingReturn.tok, cause + ": " + "A postcondition might not hold on this return path.", err.RequestId);
errorInfo.AddAuxInfo(err.FailingEnsures.tok, err.FailingEnsures.ErrorData as string ?? "Related location: This is the postcondition that might not hold.");
- errorInfo.AddAuxInfo(err.FailingEnsures.Attributes);
if (CommandLineOptions.Clo.XmlSink != null)
{
@@ -1059,7 +1042,6 @@ namespace Microsoft.Boogie
msg = "This assertion might not hold.";
}
errorInfo = errorInformationFactory.CreateErrorInformation(err.FailingAssert.tok, cause + ": " + msg, err.RequestId);
- errorInfo.AddAuxInfo(err.FailingAssert.Attributes);
if (CommandLineOptions.Clo.XmlSink != null)
{