Changeset 257 in dev for trunk/abdev/BasicCompiler64/Compile_Calc.cpp
- Timestamp:
- Aug 2, 2007, 4:17:27 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler64/Compile_Calc.cpp
r226 r257 96 96 } 97 97 else{ 98 if( compiler. GetMeta().GetGlobalConsts().IsExist(variable)99 || compiler. GetMeta().GetGlobalConstMacros().IsExist(variable) )98 if( compiler.objectModule.meta.GetGlobalConsts().IsExist(variable) 99 || compiler.objectModule.meta.GetGlobalConstMacros().IsExist(variable) ) 100 100 { 101 101 //定数リストに該当したとき … … 236 236 } 237 237 238 if( varType.IsObject() && compiler. GetMeta().GetBlittableTypes().IsExist( calcType ) ){238 if( varType.IsObject() && compiler.objectModule.meta.GetBlittableTypes().IsExist( calcType ) ){ 239 239 // Blittable型をオブジェクトとして扱う 240 240 vector<const UserProc *> userProcs; 241 compiler. GetMeta().GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs );241 compiler.objectModule.meta.GetBlittableTypes().GetClass( calcType ).GetStaticMethods().Enum( "_Create", userProcs ); 242 242 if( userProcs.size() != 1 ){ 243 243 SetError();
Note:
See TracChangeset
for help on using the changeset viewer.