~eda-qa/leaflang/misc

« back to all changes in this revision

Viewing changes to include/lang/dump.hpp

  • Committer: edA-qa mort-ora-y
  • Date: 2017-07-29 14:06:41 UTC
  • Revision ID: eda-qa@disemia.com-20170729140641-peo86c459flrb477
finished prepping new on form

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
        void dump_return_statement( return_statement const * rs );
163
163
        void dump_statement_block( statement_block const * block );
164
164
        void dump_statement( statement const * st );
 
165
        void dump_statement_inner( statement const * st );
165
166
        void dump_type_spec( type_spec const * vt );
166
167
        void dump_typedef_statement( typedef_statement const * ts );
167
168
        enum decl_flags_t {
170
171
        };
171
172
        void dump_declaration( declaration const * vd, unsigned flags = 0 );
172
173
        void dump_var_statement( var_statement const * vs );
 
174
        void dump_error_statement( error_statement const * es );
173
175
        
174
176
        void dump_error_statement_base( error_statement_base const & ds );
175
177