Changeset 327 in dev for trunk/abdev/BasicCompiler32


Ignore:
Timestamp:
Sep 25, 2007, 9:23:38 PM (17 years ago)
Author:
dai_9181
Message:

デリゲートのベースがほぼ実装できた

Location:
trunk/abdev/BasicCompiler32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler32/NumOpe.cpp

    r319 r327  
    333333        int idProc=GetProc(procName,(void **)&pInfo);
    334334
    335         if(idProc){
    336             //閉じカッコ")"に続く文字がNULLでないとき
    337             if(termFull[i2+1+i4+1]!='\0'){
     335        if(idProc)
     336        {
     337            if(termFull[i2+1+i4+1]!='\0')
     338            {
     339                //閉じカッコ")"に続く文字がNULLでないとき
    338340                SetError(42,NULL,cp);
    339341            }
  • trunk/abdev/BasicCompiler32/Opcode.h

    r325 r327  
    1919#define breakpoint compiler.codeGenerator.PutOld( (char)0xCC );
    2020
    21 
    22 //プロシージャの種類
    23 #define PROC_DEFAULT    1   //ユーザー定義関数
    24 #define PROC_DLL        2   //DLL関数
    25 #define PROC_BUILTIN    3   //コンパイラ埋め込み型
    26 #define PROC_PTR        4   //関数ポインタ
    2721
    2822//プロシージャ
Note: See TracChangeset for help on using the changeset viewer.