Changeset 641 in dev for trunk/ab5.0/abdev/ab_common/include
- Timestamp:
- Jun 15, 2008, 11:59:46 PM (16 years ago)
- Location:
- trunk/ab5.0/abdev/ab_common/include/Lexical
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/ab_common/include/Lexical/NativeCode.h
r640 r641 244 244 return sourceLines; 245 245 } 246 void NextSourceLine( const SourceCodePosition &sourceCodePosition );246 void NextSourceLine( const SourceCodePosition &sourceCodePosition, bool isInSystemProc ); 247 247 248 248 void ResetDataSectionBaseOffset( long dataSectionBaseOffset ); -
trunk/ab5.0/abdev/ab_common/include/Lexical/Procedure.h
r640 r641 136 136 // 各種フラグ 137 137 bool isExport; 138 mutable bool is System;138 mutable bool isAutoGenerationSystem; 139 139 mutable bool isAutoGeneration; 140 140 mutable bool isCompiled; … … 180 180 ar & BOOST_SERIALIZATION_NVP( realSecondParmNum ); 181 181 ar & BOOST_SERIALIZATION_NVP( isExport ); 182 ar & BOOST_SERIALIZATION_NVP( is System );182 ar & BOOST_SERIALIZATION_NVP( isAutoGenerationSystem ); 183 183 ar & BOOST_SERIALIZATION_NVP( isAutoGeneration ); 184 184 ar & BOOST_SERIALIZATION_NVP( isCompiled ); … … 275 275 return isExport; 276 276 } 277 void ThisIs SystemProc() const278 { 279 is System = true;280 } 281 bool Is System() const282 { 283 return is System;277 void ThisIsAutoGenerationSystemProc() const 278 { 279 isAutoGenerationSystem = true; 280 } 281 bool IsAutoGenerationSystem() const 282 { 283 return isAutoGenerationSystem; 284 284 } 285 285 void ThisIsAutoGenerationProc() const … … 291 291 return isAutoGeneration; 292 292 } 293 bool IsSystem() const; 293 294 void CompleteCompile() const 294 295 {
Note:
See TracChangeset
for help on using the changeset viewer.