Ignore:
Timestamp:
Mar 24, 2008, 8:05:20 PM (17 years ago)
Author:
dai_9181
Message:

Messenger/ErrorMessengerクラスを導入。SetError関数によるエラー生成を廃止した。

File:
1 edited

Legend:

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

    r402 r465  
    5959        }
    6060        if(resultType.IsReal()){
    61             SetError(9,temporary,0);
     61            compiler.errorMessenger.Output(9,temporary,0);
    6262            return;
    6363        }
     
    116116        else{
    117117error:
    118             SetError(17,NULL,0);
     118            compiler.errorMessenger.Output(17,NULL,0);
    119119            return;
    120120        }
     
    124124        if(buffer[i2]=='\0') break;
    125125        else if(buffer[i2]!='\n'){
    126             SetError(17,NULL,0);
     126            compiler.errorMessenger.Output(17,NULL,0);
    127127            return;
    128128        }
Note: See TracChangeset for help on using the changeset viewer.