model: new metamodel
[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 private import tables
47 $ call make_tokens()
48 $ call make_lexer()
49 $ end output
50
51 $ output 'parser_prod.nit'
52 # Production AST nodes full definition.
53 # This file was generated by SableCC (http://www.sablecc.org/).
54 package parser_prod
55
56 import lexer
57 $ if $usermodule
58 intrude import $usermodule
59 $ else
60 intrude import parser_abs
61 $ end
62 private import tables
63
64 $ call make_nodes()
65 $ call make_prods()
66 $ end output
67
68 $ output 'parser.nit'
69 # Parser.
70 # This file was generated by SableCC (http://www.sablecc.org/).
71 package parser
72
73 intrude import parser_prod
74 import tables
75 $ call make_parser()
76 $ end output
77
78 $ output 'tables_nit.c'
79 /* This file was generated by SableCC (http://www.sablecc.org/). */
80 #include <stdlib.h>
81 #include "tables_nit.h"
82
83 $ call make_lexer_table()
84 $ call make_parser_table()
85 $ end output