tests: add error_toplevel.nit
authorJean Privat <jean@pryen.org>
Wed, 11 Jun 2014 02:04:17 +0000 (22:04 -0400)
committerJean Privat <jean@pryen.org>
Mon, 16 Jun 2014 16:03:10 +0000 (12:03 -0400)
and fix sav/error_expr_not_ok_alt4.res

Signed-off-by: Jean Privat <jean@pryen.org>

tests/error_toplevel.nit [new file with mode: 0644]
tests/sav/error_expr_not_ok_alt4.res
tests/sav/error_toplevel.res [new file with mode: 0644]
tests/sav/error_toplevel_alt1.res [new file with mode: 0644]
tests/sav/error_toplevel_alt2.res [new file with mode: 0644]
tests/sav/error_toplevel_alt3.res [new file with mode: 0644]
tests/sav/error_toplevel_alt4.res [new file with mode: 0644]
tests/sav/error_toplevel_alt5.res [new file with mode: 0644]

diff --git a/tests/error_toplevel.nit b/tests/error_toplevel.nit
new file mode 100644 (file)
index 0000000..c33bcb0
--- /dev/null
@@ -0,0 +1,49 @@
+# This file is part of NIT ( http://www.nitlanguage.org ).
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+import kernel
+
+redef class Object
+       fun baz do
+               output
+       end
+
+       fun foo1
+       do
+               bar(1)
+               bar(self)
+               #alt1#3.bar(3)
+
+               5.baz
+               baz
+       end
+end
+
+fun foo2
+do
+       bar(10)
+       #alt2#self.bar(20)
+       #alt3#bar(self)
+       #alt4#4.bar(40)
+
+       50.baz
+       #alt5#baz
+end
+
+fun bar(o: Object)
+do
+       o.output
+end
+
+0.foo1
+foo2
index 7729232..3919001 100644 (file)
@@ -10,6 +10,7 @@ alt/error_expr_not_ok_alt4.nit:43,1--8: Error: Method 'fail' doesn't exists in I
 alt/error_expr_not_ok_alt4.nit:45,7--10: Type error: expected A, got Object
 alt/error_expr_not_ok_alt4.nit:46,1--9: Error: Method 'fail' doesn't exists in Object.
 alt/error_expr_not_ok_alt4.nit:49,7--10: Type error: expected A, got Object
+alt/error_expr_not_ok_alt4.nit:50,1--10: Error: cannot call 'trash', a top-level method, with a receiver.
 alt/error_expr_not_ok_alt4.nit:50,1--10: Error: Incorrect number of parameters. Got 0, expected 1. Signature is (x: A)
 alt/error_expr_not_ok_alt4.nit:60,4--7: Type error: expected Bool, got Int
 alt/error_expr_not_ok_alt4.nit:60,20: Type error: expected A, got Int
diff --git a/tests/sav/error_toplevel.res b/tests/sav/error_toplevel.res
new file mode 100644 (file)
index 0000000..f00464b
--- /dev/null
@@ -0,0 +1,6 @@
+1
+0
+5
+0
+10
+50
diff --git a/tests/sav/error_toplevel_alt1.res b/tests/sav/error_toplevel_alt1.res
new file mode 100644 (file)
index 0000000..b18282f
--- /dev/null
@@ -0,0 +1 @@
+alt/error_toplevel_alt1.nit:25,3--10: Error: cannot call 'bar', a top-level method, with a receiver.
diff --git a/tests/sav/error_toplevel_alt2.res b/tests/sav/error_toplevel_alt2.res
new file mode 100644 (file)
index 0000000..8b3cf76
--- /dev/null
@@ -0,0 +1 @@
+alt/error_toplevel_alt2.nit:35,2--5: Error: self cannot be used in top-level method.
diff --git a/tests/sav/error_toplevel_alt3.res b/tests/sav/error_toplevel_alt3.res
new file mode 100644 (file)
index 0000000..acfd7bf
--- /dev/null
@@ -0,0 +1 @@
+alt/error_toplevel_alt3.nit:36,6--9: Error: self cannot be used in top-level method.
diff --git a/tests/sav/error_toplevel_alt4.res b/tests/sav/error_toplevel_alt4.res
new file mode 100644 (file)
index 0000000..c1a37ee
--- /dev/null
@@ -0,0 +1 @@
+alt/error_toplevel_alt4.nit:37,2--10: Error: cannot call 'bar', a top-level method, with a receiver.
diff --git a/tests/sav/error_toplevel_alt5.res b/tests/sav/error_toplevel_alt5.res
new file mode 100644 (file)
index 0000000..dff56d2
--- /dev/null
@@ -0,0 +1 @@
+alt/error_toplevel_alt5.nit:40,2--4: Error: 'baz' is not a top-level method, thus need a receiver.