update NOTICE and LICENSE
[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 super A
21 redef fun foo
22 !bar(i: Int) #!alt13# #!alt14# #!alt15#
23 #alt13# !bar
24 #alt14# !bar(b: Bool)
25 #alt15# !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 fun work2
37 do
38 var a: A = new B
39 a.foo !bar x do #!alt11#
40 #alt11#a.foo !bar do
41 x.output
42 if maybe then
43 #alt4#break
44 #alt5#break 'x'
45 #alt6#continue
46 #alt7#continue 'x'
47 #alt8#return
48 #alt9#return 'x'
49 end
50 (x+1).output
51 end
52 #alt10# a.foo
53 5.output
54 end
55
56 0.output
57 work2
58 6.output
59