tests: add syntax_semi*.nit
authorJean Privat <jean@pryen.org>
Mon, 4 May 2015 19:42:37 +0000 (15:42 -0400)
committerJean Privat <jean@pryen.org>
Wed, 6 May 2015 12:58:00 +0000 (08:58 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

tests/sav/syntax_semi.res [new file with mode: 0644]
tests/sav/syntax_semi2.res [new file with mode: 0644]
tests/sav/syntax_semi2_alt1.res [new file with mode: 0644]
tests/syntax_semi.nit [new file with mode: 0644]
tests/syntax_semi2.nit [new file with mode: 0644]

diff --git a/tests/sav/syntax_semi.res b/tests/sav/syntax_semi.res
new file mode 100644 (file)
index 0000000..f00c965
--- /dev/null
@@ -0,0 +1,10 @@
+1
+2
+3
+4
+5
+6
+7
+8
+9
+10
diff --git a/tests/sav/syntax_semi2.res b/tests/sav/syntax_semi2.res
new file mode 100644 (file)
index 0000000..c1f2b6c
--- /dev/null
@@ -0,0 +1,13 @@
+syntax_semi2.nit:17,9: Warning: superfluous `;`.
+syntax_semi2.nit:18,10: Warning: superfluous `;`.
+syntax_semi2.nit:19,9: Warning: superfluous `;`.
+syntax_semi2.nit:21,1: Warning: superfluous `;`.
+syntax_semi2.nit:22,1: Warning: superfluous `;`.
+syntax_semi2.nit:22,2: Warning: superfluous `;`.
+syntax_semi2.nit:24,1: Warning: superfluous `;`.
+1
+2
+3
+4
+5
+6
diff --git a/tests/sav/syntax_semi2_alt1.res b/tests/sav/syntax_semi2_alt1.res
new file mode 100644 (file)
index 0000000..782ebf0
--- /dev/null
@@ -0,0 +1 @@
+alt/syntax_semi2_alt1.nit:26,3: Syntax Error: unexpected ';'.
diff --git a/tests/syntax_semi.nit b/tests/syntax_semi.nit
new file mode 100644 (file)
index 0000000..90b0edb
--- /dev/null
@@ -0,0 +1,15 @@
+# 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 end;interface Object;end;enum Bool;end;enum Int;fun output is intern;end;class A;init do 5.output;fun run do 6.output;end;class B;var val: Int;init(v: Int) do;7.output;self.val = v;end;fun run do val.output;end;class C;var val1: Int;var val2: Int = 10;end;fun foo do 2.output;fun bar(i: Int) do i.output;fun baz: Int do return 4;1.output;foo;bar(3);baz.output;var a = new A;a.run;var b = new B(8);b.run;var c = new C(9);c.val1.output;c.val2.output
diff --git a/tests/syntax_semi2.nit b/tests/syntax_semi2.nit
new file mode 100644 (file)
index 0000000..8f15f4b
--- /dev/null
@@ -0,0 +1,26 @@
+# 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
+
+1.output;
+2.output;;
+3.output;#comment
+
+;4.output
+;;5.output
+#comment
+;6.output
+
+#alt1#7.;comment