Ignore:
Timestamp:
May 29, 2008, 1:36:02 AM (16 years ago)
Author:
dai_9181
Message:

ジェネリクス型の型解決ができない場合のエラーメッセージを実装した。

File:
1 edited

Legend:

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

    r587 r628  
    7676        for( int i3=0; ; i3++ )
    7777        {
    78             if( !IsVariableChar( tempKeyWord[i3] ) || tempKeyWord[i3] == '.' )
     78            if( !IsVariableChar( tempKeyWord[i3] ) )
    7979            {
    8080                temporary[i3] = 0;
     
    249249    if(errorCode==141) lstrcpy(msg,"Blittable修飾子をクラス以外の型に指定することはできません。");
    250250    if(errorCode==142) lstrcpy(msg,"不正なThis参照です。");
     251    if(errorCode==143) sprintf(msg,"\"%s\" ジェネリクス型に型パラメータが指定されていません。",tempKeyWord);
    251252
    252253    //Enum関連
Note: See TracChangeset for help on using the changeset viewer.