Ignore:
Timestamp:
Sep 24, 2007, 2:58:10 PM (17 years ago)
Author:
dai_9181
Message:

コンパイラ組み込みテンプレートエンジンを実装。
静的リンクライブラリ、デバッグ情報の内部形式をテキストからバイナリに変更した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/Intermediate_Step2.cpp

    r290 r322  
    261261                KillStringSpaces(Command+2);
    262262                i2 = 2;
    263                 if( Command[i2] == 1 && Command[i2+1] == ESC_ENUM ){
     263                if( Command[i2] == 1 && Command[i2+1] == ESC_ENUM )
     264                {
    264265                    i2 += 2;
    265266                }
    266                 else if( memicmp( Command + i2, "Blittable(", 10 ) == 0 ){
     267                else if( Command[i2] == 1 && Command[i2+1] == ESC_DELEGATE )
     268                {
     269                    i2 += 2;
     270                }
     271                else if( memicmp( Command + i2, "Blittable(", 10 ) == 0 )
     272                {
    267273                    i2 += 10;
    268274                    i2 = JumpStringInPare(Command,i2)+1;
     
    316322            case ESC_NAMESPACE:
    317323            case ESC_IMPORTS:
     324            case ESC_DELEGATE:
    318325                KillStringSpaces(Command+2);
    319326                break;
Note: See TracChangeset for help on using the changeset viewer.