Line data Source code
1 : /***************************************************************************\
2 : * Name : ast render *
3 : * Description : resolve types in ast tree *
4 : * Author : antonin.kriz@gmail.com *
5 : * ------------------------------------------------------------------------- *
6 : * This is free software; you can redistribute it and/or modify it under the *
7 : * terms of the MIT license. A copy of the license can be found in the file *
8 : * "LICENSE" at the root of this distribution. *
9 : \***************************************************************************/
10 :
11 : #include "ast.h"
12 : #include "ast-types.h"
13 : #include "ast-messages-order.h"
14 :
15 14 : void resolve_messages( proto_file & file )
16 : {
17 14 : resolve_types( file );
18 14 : resolve_messages_order( file );
19 14 : }
|