~eda-qa/leaflang/misc

« back to all changes in this revision

Viewing changes to src/lang/dump/expression.inc.cpp

  • Committer: edA-qa mort-ora-y
  • Date: 2017-07-22 19:48:13 UTC
  • mfrom: (99.1.41 error)
  • Revision ID: eda-qa@disemia.com-20170722194813-h3yqkhe1j2ouwga4
merging error handling

Show diffs side-by-side

added added

removed removed

Lines of Context:
423
423
                        out << " 」";
424
424
                        break;
425
425
                }
 
426
                
 
427
                case expression::f_tag: {
 
428
                        auto & t = static_cast<expr_tag const &>(*ex);
 
429
                        out << "string_tag( ";
 
430
                        dump_expression( t.value.get() );
 
431
                        out << " )";
 
432
                        break;
 
433
                }
426
434
        }
427
435
        
428
436
        if( !omit_type ) {