Ignore:
Timestamp:
Jun 15, 2008, 11:59:46 PM (16 years ago)
Author:
dai_9181
Message:

・デバッグトレース時、グローバル領域の終端行でステップインまたはステップアウトしたときにデバッグ情報の取得に失敗して強制終了してしまう不具合を修正。
・グローバル領域のデバッグ実行ができなくなっている不具合を修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/ab_common/include/Lexical/Procedure.h

    r640 r641  
    136136    // 各種フラグ
    137137    bool isExport;
    138     mutable bool isSystem;
     138    mutable bool isAutoGenerationSystem;
    139139    mutable bool isAutoGeneration;
    140140    mutable bool isCompiled;
     
    180180        ar & BOOST_SERIALIZATION_NVP( realSecondParmNum );
    181181        ar & BOOST_SERIALIZATION_NVP( isExport );
    182         ar & BOOST_SERIALIZATION_NVP( isSystem );
     182        ar & BOOST_SERIALIZATION_NVP( isAutoGenerationSystem );
    183183        ar & BOOST_SERIALIZATION_NVP( isAutoGeneration );
    184184        ar & BOOST_SERIALIZATION_NVP( isCompiled );
     
    275275        return isExport;
    276276    }
    277     void ThisIsSystemProc() const
    278     {
    279         isSystem = true;
    280     }
    281     bool IsSystem() const
    282     {
    283         return isSystem;
     277    void ThisIsAutoGenerationSystemProc() const
     278    {
     279        isAutoGenerationSystem = true;
     280    }
     281    bool IsAutoGenerationSystem() const
     282    {
     283        return isAutoGenerationSystem;
    284284    }
    285285    void ThisIsAutoGenerationProc() const
     
    291291        return isAutoGeneration;
    292292    }
     293    bool IsSystem() const;
    293294    void CompleteCompile() const
    294295    {
Note: See TracChangeset for help on using the changeset viewer.