From 672599371a656ff9cd9f89ad45d45e336d822af4 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Mon, 4 May 2015 15:42:37 -0400 Subject: [PATCH] tests: add syntax_semi*.nit Signed-off-by: Jean Privat --- tests/sav/syntax_semi.res | 10 ++++++++++ tests/sav/syntax_semi2.res | 13 +++++++++++++ tests/sav/syntax_semi2_alt1.res | 1 + tests/syntax_semi.nit | 15 +++++++++++++++ tests/syntax_semi2.nit | 26 ++++++++++++++++++++++++++ 5 files changed, 65 insertions(+) create mode 100644 tests/sav/syntax_semi.res create mode 100644 tests/sav/syntax_semi2.res create mode 100644 tests/sav/syntax_semi2_alt1.res create mode 100644 tests/syntax_semi.nit create mode 100644 tests/syntax_semi2.nit diff --git a/tests/sav/syntax_semi.res b/tests/sav/syntax_semi.res new file mode 100644 index 0000000..f00c965 --- /dev/null +++ b/tests/sav/syntax_semi.res @@ -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 index 0000000..c1f2b6c --- /dev/null +++ b/tests/sav/syntax_semi2.res @@ -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 index 0000000..782ebf0 --- /dev/null +++ b/tests/sav/syntax_semi2_alt1.res @@ -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 index 0000000..90b0edb --- /dev/null +++ b/tests/syntax_semi.nit @@ -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 index 0000000..8f15f4b --- /dev/null +++ b/tests/syntax_semi2.nit @@ -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 -- 1.7.9.5