test_astbuilder: Add a testing tool for the astbuilder
[nit.git] / tests / test_astbuilder / test_astbuilder.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 # The goal of this code is to check the astbuilder features
16
17 class A
18
19 fun titi
20 do
21 print "Test print"
22 end
23
24 fun toto(int: Int, float: Float, bool: Bool, char: Char): Int
25 do
26 var test_int = int
27 var test_float = float
28 var test_bool = bool
29 var test_char = char
30 self.titi
31 return 1
32 end
33 end
34
35 var a = new A
36 a.toto(10, 2.0, true, 'c')
37 print "Test astbuilder"
38 print 'c'