summaryrefslogtreecommitdiff
path: root/Source/BoogieDriver/BoogieDriver.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-06-13 16:03:25 -0700
committerGravatar wuestholz <unknown>2013-06-13 16:03:25 -0700
commit19610bec1f67716bf31ab34eca5d16120972e739 (patch)
tree3fa19a1e16cee5558433fbabe54bee480070f8d8 /Source/BoogieDriver/BoogieDriver.cs
parent27cdbd69584fca026e526cda68ba4c2e017242a9 (diff)
Removed unused code.
Diffstat (limited to 'Source/BoogieDriver/BoogieDriver.cs')
-rw-r--r--Source/BoogieDriver/BoogieDriver.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Source/BoogieDriver/BoogieDriver.cs b/Source/BoogieDriver/BoogieDriver.cs
index 7eacf697..7e0e9732 100644
--- a/Source/BoogieDriver/BoogieDriver.cs
+++ b/Source/BoogieDriver/BoogieDriver.cs
@@ -100,27 +100,5 @@ namespace Microsoft.Boogie {
Console.ReadLine();
}
}
-
-
- #region // TODO: Is this still used?
-
- enum FileType
- {
- Unknown,
- Cil,
- Bpl,
- Dafny
- };
-
-
- static bool ProgramHasDebugInfo(Program program)
- {
- Contract.Requires(program != null);
- // We inspect the last declaration because the first comes from the prelude and therefore always has source context.
- return program.TopLevelDeclarations.Count > 0 &&
- ((cce.NonNull(program.TopLevelDeclarations)[program.TopLevelDeclarations.Count - 1]).tok.IsValid);
- }
-
- #endregion
}
}