Test: Internal testing, updated the messages

This commit is contained in:
Daniel Marjamäki 2007-05-16 17:16:57 +00:00
parent 8a3b14aeec
commit b3ecc3f17c
4 changed files with 34 additions and 29 deletions

View File

@ -1,6 +1,6 @@
{
assign a
assign b[2]
assign c[4][5].min
assign d.min
}
4 : {
5 : assign a
6 : assign b[2]
7 : assign c[4][5].min
8 : assign d.min
9 : }

View File

@ -1,11 +1,14 @@
{
decl a
decl b
decl c
decl d
assign b
assign d
decl e
assign e
decl str
}
4 : {
5 : decl a
6 : decl b
6 : decl c
6 : decl d
6 : assign b
6 : assign d
6 : use NULL
7 : decl e
7 : assign e
7 : use p1
7 : use p2
8 : decl str
9 : }

View File

@ -1,5 +1,7 @@
{
new[] a
new fred
new fred
}
4 : {
5 : new[] a
5 : use char[10]
6 : new fred
6 : use Fred
7 : new fred
8 : }

View File

@ -1,7 +1,7 @@
{
assign a
use b
assign c
use d
use e
}
3 : {
4 : assign a
4 : use b
5 : assign c
5 : use d
5 : use e
6 : }