summaryrefslogtreecommitdiff
path: root/Source/Core/Parser.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/Parser.cs')
-rw-r--r--Source/Core/Parser.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Parser.cs b/Source/Core/Parser.cs
index 5545d8c4..bbe7af4b 100644
--- a/Source/Core/Parser.cs
+++ b/Source/Core/Parser.cs
@@ -170,6 +170,7 @@ private class BvBounds : Expr {
for (;;) {
t = la;
la = scanner.Scan();
+ Console.WriteLine("Just got the value " + la.kind + " with value " + la.val);
if (la.kind <= maxT) { ++errDist; break; }
la = t;
@@ -597,6 +598,7 @@ private class BvBounds : Expr {
void Type(out Bpl.Type/*!*/ ty) {
Contract.Ensures(Contract.ValueAtReturn(out ty) != null); IToken/*!*/ tok; ty = dummyType;
+ Console.WriteLine(la.kind + " from parser.Type");
if (StartOf(5)) {
TypeAtom(out ty);
} else if (la.kind == 1) {