summaryrefslogtreecommitdiff
path: root/BCT/GetMeHere/AssertionInjector/Program.cs
diff options
context:
space:
mode:
authorGravatar qadeer <qadeer@microsoft.com>2011-12-28 19:41:53 -0800
committerGravatar qadeer <qadeer@microsoft.com>2011-12-28 19:41:53 -0800
commit3b28d9a89c618ff5a479a2e46a459d7a8b8b20ac (patch)
treec089db96dd3b3ecca99c9af3d0bb85966d90a316 /BCT/GetMeHere/AssertionInjector/Program.cs
parent66bf828bf85324052fce705c2f850d73eb989994 (diff)
deleted some commented code
Diffstat (limited to 'BCT/GetMeHere/AssertionInjector/Program.cs')
-rw-r--r--BCT/GetMeHere/AssertionInjector/Program.cs17
1 files changed, 0 insertions, 17 deletions
diff --git a/BCT/GetMeHere/AssertionInjector/Program.cs b/BCT/GetMeHere/AssertionInjector/Program.cs
index 9d17e6af..07b5c46e 100644
--- a/BCT/GetMeHere/AssertionInjector/Program.cs
+++ b/BCT/GetMeHere/AssertionInjector/Program.cs
@@ -172,23 +172,6 @@ namespace AssertionInjector {
return false;
return true;
}
-
- /*
- public override Bpl.Cmd VisitAssertCmd(Bpl.AssertCmd node) {
- string sourceFile = Bpl.QKeyValue.FindStringAttribute(node.Attributes, "sourceFile");
- if (sourceFile == null)
- return base.VisitAssertCmd(node);
- string[] ds = sourceFile.Split('\\');
- if (sourceFile != fileName && ds[ds.Length-1] != fileName)
- return base.VisitAssertCmd(node);
- int sourceLine = Bpl.QKeyValue.FindIntAttribute(node.Attributes, "sourceLine", -1);
- Debug.Assert (sourceLine != -1);
- if (sourceLine != lineNumber)
- return base.VisitAssertCmd(node);
- node.Expr = Bpl.Expr.False;
- return node;
- }
- */
}
/// <summary>