parser: import only location, not the whole mmloader
[nit.git] / src / parser / xss / main.xss
1 $ // This file is part of NIT ( http://www.nitlanguage.org ).
2 $ //
3 $ // Copyright 2008 Jean Privat <jean@pryen.org>
4 $ // Based on algorithms developped for ( http://www.sablecc.org/ ).
5 $ //
6 $ // Licensed under the Apache License, Version 2.0 (the "License");
7 $ // you may not use this file except in compliance with the License.
8 $ // You may obtain a copy of the License at
9 $ //
10 $ //     http://www.apache.org/licenses/LICENSE-2.0
11 $ //
12 $ // Unless required by applicable law or agreed to in writing, software
13 $ // distributed under the License is distributed on an "AS IS" BASIS,
14 $ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 $ // See the License for the specific language governing permissions and
16 $ // limitations under the License.
17
18 $ include 'nodes.xss'
19 $ include 'lexer.xss'
20 $ include 'parser.xss'
21 $ include 'tokens.xss'
22 $ include 'prods.xss'
23
24 $ output 'parser_abs.nit'
25 # Raw AST node hierarchy.
26 # This file was generated by SableCC (http://www.sablecc.org/).
27 package parser_abs
28
29 import location
30
31 $ call make_abs_nodes()
32 $ call make_abs_tokens()
33 $ call make_abs_prods()
34 $ end output
35
36 $ output 'lexer.nit'
37 # Lexer and its tokens.
38 # This file was generated by SableCC (http://www.sablecc.org/).
39 package lexer
40
41 $ if $usermodule
42 intrude import $usermodule
43 $ else
44 intrude import parser_abs
45 $ end
46 $ call make_tokens()
47 $ call make_lexer()
48 $ end output
49
50 $ output 'parser_prod.nit'
51 # Production AST nodes full definition.
52 # This file was generated by SableCC (http://www.sablecc.org/).
53 package parser_prod
54
55 import lexer
56 $ if $usermodule
57 intrude import $usermodule
58 $ else
59 intrude import parser_abs
60 $ end
61
62 $ call make_nodes()
63 $ call make_prods()
64 $ end output
65
66 $ output 'parser_tables.nit'
67 # Tables used by the parser.
68 # This file was generated by SableCC (http://www.sablecc.org/).
69 package parser_tables
70
71 $ call make_parser_tables()
72 $ end output
73
74 $ output 'parser.nit'
75 # Parser.
76 # This file was generated by SableCC (http://www.sablecc.org/).
77 package parser
78
79 intrude import parser_prod
80 intrude import parser_tables
81 $ call make_parser()
82 $ end output
83