Ignore:
Timestamp:
May 5, 2008, 2:24:49 AM (16 years ago)
Author:
dai_9181
Message:

Typeクラスで発生するOutputFatalErrorをthrowに置換。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/src/Type.cpp

    r523 r556  
    114114    }
    115115
    116     compiler.errorMessenger.OutputFatalError();
     116    throw;
    117117
    118118    return 0;
     
    217217    {
    218218        if( !pClass ){
    219             compiler.errorMessenger.OutputFatalError();
    220             return 0;
     219            throw;
    221220        }
    222221
     
    230229    }
    231230
    232     compiler.errorMessenger.OutputFatalError();
    233     return 0;
     231    throw;
    234232}
    235233
Note: See TracChangeset for help on using the changeset viewer.