Merge: doc: fixed some typos and other misc. corrections
[nit.git] / tests / base_vararg_mult.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 import array
16
17 class A
18 fun x(ints: Int...) is autoinit do
19 for i in ints do
20 'X'.output
21 i.output
22 end
23 '\n'.output
24 end
25 end
26
27 class B
28 super A
29 fun y(objs: Object...) is autoinit do
30 for i in objs do
31 'Y'.output
32 i.output
33 end
34 '\n'.output
35 end
36 end
37
38 var x
39
40 #alt1#x = new A
41 x = new A(1)
42 x = new A(10, 20)
43 x = new A([100, 200, 300]...)
44
45 #aly1#x = new B(1)
46 x = new B(1, 2)
47 #alt1#x = new B(1, 2, 3)
48 #alt1#x = new B([10, 20], 33)
49 x = new B([10, 11]..., 20)
50 x = new B(10, [20, 21]...)
51 x = new B([10, 11]..., [20, 21, 23]...)