Two new tests related to the BUGS file. No sav yet.
[nit.git] / tests / base_closure_raf.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2009 Jean Privat <jean@pryen.org>
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 import base_closure2
18
19 class B
20 special A
21 redef meth foo
22 with bar(i: Int) #!alt13# #!alt14# #!alt15#
23 #alt13# with bar
24 #alt14# with bar(b: Bool)
25 #alt15# with bar(i: Int): Int
26 do
27 10.output
28 bar(20) #!alt1#
29 #alt2#bar
30 #alt12#bar('x')
31 #alt3#var x = bar(2)
32 40.output
33 end
34 end
35
36 meth work2
37 do
38 var a: A = new B
39 a.foo with x do #!alt11#
40 #alt11#a.foo with do
41 x.output
42 #alt4#break
43 #alt5#break 'x'
44 #alt6#continue
45 #alt7#continue 'x'
46 #alt8#return
47 #alt9#return 'x'
48 (x+1).output
49 end
50 #alt10# a.foo
51 5.output
52 end
53
54 0.output
55 work2
56 6.output
57