~eda-qa/leaflang/cpp

« back to all changes in this revision

Viewing changes to src/lang/expression_typer/fields.cpp

  • Committer: edA-qa mort-ora-y
  • Date: 2017-06-03 05:03:54 UTC
  • mfrom: (98.1.18 typefixes)
  • Revision ID: eda-qa@disemia.com-20170603050354-6hfg5huvq56zjs66
merging typefixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
341
341
                ctx.rewrite( field, sf );
342
342
                return sf;
343
343
                
344
 
        } else if( t.is<intr_type_module>() || t.is<intr_type_class>() ) {
 
344
        } else if( t.is<intr_type_module>() || t.is<intr_type_classlike>() ) {
345
345
                auto & c = t.cast<intr_type_scope>();
346
346
                return access_scope_field( field, c.context, ctx );
347
347