Skip to content
Snippets Groups Projects
Commit 5bb86e38 authored by Anton Bagliy's avatar Anton Bagliy
Browse files

FIX: TestDescentParser expr in for tests #65

parent c1a40e26
Branches
No related merge requests found
...@@ -58,7 +58,7 @@ namespace TestDescentParser ...@@ -58,7 +58,7 @@ namespace TestDescentParser
Assert.IsTrue(Parse(@"begin Assert.IsTrue(Parse(@"begin
for a:=1 to 5 do for a:=1 to 5 do
begin begin
b:=b+1 b:=1
end end
end")); end"));
...@@ -66,8 +66,8 @@ namespace TestDescentParser ...@@ -66,8 +66,8 @@ namespace TestDescentParser
for a:=1 to 5 do for a:=1 to 5 do
begin begin
for i:=1 to 6 do for i:=1 to 6 do
c:=c-1; c:=1;
b:=b+1 b:=1
end end
end")); end"));
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment