update NOTICE and LICENSE
[nit.git] / src / test_parser.nit
1 # This file is part of NIT ( http://www.nitlanguage.org ).
2 #
3 # Copyright 2008 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 # Program used to test the NIT parser
18 package test_parser
19
20 import parser
21
22 class PrintTreeVisitor
23 super Visitor
24 var _rank: Int
25 redef fun visit(n: nullable ANode)
26 do
27 if n == null then return
28 if n isa Token then
29 printn(" " * _rank, n.to_s, " ... ", n.location, "\n")
30 else
31 printn(" " * _rank, n.location, "\n")
32 end
33 _rank = _rank + 1
34 n.visit_all(self)
35 _rank = _rank - 1
36 end
37
38 init
39 do
40 _rank = 0
41 end
42 end
43
44 var no_print = false
45 var only_lexer = false
46 var need_help = false
47
48 while not args.is_empty and args.first.first == '-' do
49 if args.first == "-n" then
50 no_print = true
51 else if args.first == "-l" then
52 only_lexer = true
53 else if args.first == "-p" then
54 only_lexer = false
55 else if args.first == "-h" or args.first == "-?" then
56 need_help = true
57 else
58 stderr.write("Unknown option {args.first}.\n")
59 exit(0)
60 end
61 args.shift
62 end
63
64 if args.is_empty or need_help then
65 print("usage:")
66 print(" test_parser [options]... <filename.nit>...")
67 print("options:")
68 print(" -n do not print anything")
69 print(" -l only lexer")
70 print(" -p lexer and parser (default)")
71 print(" -h print this help")
72 else
73 for a in args do
74 var f = new IFStream.open(a)
75 var lexer = new Lexer(new SourceFile(a, f))
76 if only_lexer then
77 var token = lexer.next
78 while not token isa EOF do
79 if not no_print then
80 print("Read token at {token.location} text='{token.text}'")
81 end
82 token = lexer.next
83 end
84 f.close
85 else
86 var parser = new Parser(lexer)
87 var tree = parser.parse
88 f.close
89
90 if not no_print then
91 (new PrintTreeVisitor).enter_visit(tree)
92 end
93 end
94 end
95 end