~eda-qa/leaflang/misc

« back to all changes in this revision

Viewing changes to src/lang/typer.cpp

  • Committer: edA-qa mort-ora-y
  • Date: 2017-08-06 14:47:14 UTC
  • Revision ID: eda-qa@disemia.com-20170806144714-s7vj6t6mzc0ium9a
fix the path stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
885
885
 
886
886
        auto in_file_name = mloader->resolve_import( is->mod_name );
887
887
        std::ifstream in_file( in_file_name, std::ios::binary );
 
888
        STATE_CHECK( !!in_file, "cannot-open-file", error::tag_error_symbol(in_file_name) );
888
889
 
889
890
        serial_in sin( in_file, get_serial_resolver() );
890
891