Changeset 256 in dev for trunk/abdev/BasicCompiler32/Compile_Calc.cpp
- Timestamp:
- Aug 1, 2007, 11:19:01 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler32/Compile_Calc.cpp
r225 r256 461 461 } 462 462 else{ 463 if( compiler. GetMeta().GetGlobalConsts().IsExist(variable)464 || compiler. GetMeta().GetGlobalConstMacros().IsExist(variable) )463 if( compiler.objectModule.meta.GetGlobalConsts().IsExist(variable) 464 || compiler.objectModule.meta.GetGlobalConstMacros().IsExist(variable) ) 465 465 { 466 466 //定数リストに該当したとき … … 606 606 607 607 608 if( varType.IsObject() && compiler. GetMeta().GetBlittableTypes().IsExist( calcType ) ){608 if( varType.IsObject() && compiler.objectModule.meta.GetBlittableTypes().IsExist( calcType ) ){ 609 609 // Blittable型をオブジェクトとして扱う 610 610 vector<const UserProc *> userProcs; 611 compiler. GetMeta().GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs );611 compiler.objectModule.meta.GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs ); 612 612 if( userProcs.size() != 1 ){ 613 613 SetError();
Note:
See TracChangeset
for help on using the changeset viewer.