Changeset 198 in dev for trunk/abdev/BasicCompiler_Common
- Timestamp:
- Jun 27, 2007, 2:41:17 AM (17 years ago)
- Location:
- trunk/abdev/BasicCompiler_Common
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/NumOpe_GetType.cpp
r193 r198 286 286 } 287 287 288 if( ! Compiler::StringToType( TypeName, resultType ) ){288 if( !compiler.StringToType( TypeName, resultType ) ){ 289 289 return false; 290 290 } … … 637 637 // As演算子の右辺値 638 638 //型名 639 if( Compiler::StringToType( term, resultType ) ){639 if( compiler.StringToType( term, resultType ) ){ 640 640 641 641 if( resultType.IsObject() ){ -
trunk/abdev/BasicCompiler_Common/Object.cpp
r193 r198 116 116 } 117 117 118 if( ! Compiler::StringToType( typeName, resultType ) ){118 if( !compiler.StringToType( typeName, resultType ) ){ 119 119 SetError(3,typeName,cp); 120 120 return false; -
trunk/abdev/BasicCompiler_Common/VariableOpe.cpp
r195 r198 873 873 } 874 874 875 if( ! Compiler::StringToType( temporary, type ) ){875 if( !compiler.StringToType( temporary, type ) ){ 876 876 SetError(3,temporary,cp); 877 877 type.SetBasicType( DEF_LONG ); -
trunk/abdev/BasicCompiler_Common/calculation.cpp
r193 r198 488 488 489 489 Type tempType; 490 if( ! Compiler::StringToType( temp2, tempType ) ){490 if( !compiler.StringToType( temp2, tempType ) ){ 491 491 if(enableerror) SetError(3,temp2,cp); 492 492 return false; … … 692 692 { 693 693 Type tempType; 694 if( ! Compiler::StringToType( Parms, tempType ) ){694 if( !compiler.StringToType( Parms, tempType ) ){ 695 695 if(bDebuggingWatchList){ 696 696 if( pIsMemoryAccessError ) *pIsMemoryAccessError = true; -
trunk/abdev/BasicCompiler_Common/include/NamespaceSupporter.h
r195 r198 35 35 { 36 36 return livingNamespaceScopes; 37 } 38 void SetLivingNamespaceScopes( const NamespaceScopes &namespaceScopes ) 39 { 40 this->livingNamespaceScopes = namespaceScopes; 37 41 } 38 42 bool IsLiving( const NamespaceScopes &namespaceScopes ) const -
trunk/abdev/BasicCompiler_Common/src/ClassImpl.cpp
r195 r198 590 590 i+=10; 591 591 i+=GetStringInPare_RemovePare(temporary,source.GetBuffer()+i)+1; 592 Compiler::StringToType( temporary, blittableType );592 compiler.StringToType( temporary, blittableType ); 593 593 } 594 594 -
trunk/abdev/BasicCompiler_Common/src/ProcedureImpl.cpp
r195 r198 131 131 } 132 132 133 Compiler::StringToType( temporary, type );133 compiler.StringToType( temporary, type ); 134 134 135 135 if( type.IsNull() ){ … … 259 259 } 260 260 261 Compiler::StringToType( temporary, type );261 compiler.StringToType( temporary, type ); 262 262 263 263 if( type.IsNull() ){ … … 328 328 temporary[i3]=sourceOfParams[i2]; 329 329 } 330 Compiler::StringToType( temporary, this->returnType );330 compiler.StringToType( temporary, this->returnType ); 331 331 if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine); 332 332 … … 514 514 } 515 515 516 Compiler::StringToType( temporary, type );516 compiler.StringToType( temporary, type ); 517 517 518 518 if( type.IsNull() ){ … … 568 568 temporary[i3]=sourceOfParams[i2]; 569 569 } 570 Compiler::StringToType( temporary, this->returnType );570 compiler.StringToType( temporary, this->returnType ); 571 571 if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine); 572 572 … … 685 685 } 686 686 687 Compiler::StringToType( temporary, type );687 compiler.StringToType( temporary, type ); 688 688 689 689 if( type.IsNull() ){ … … 739 739 temporary[i3]=sourceOfParams[i2]; 740 740 } 741 Compiler::StringToType( temporary, this->returnType );741 compiler.StringToType( temporary, this->returnType ); 742 742 if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine); 743 743
Note:
See TracChangeset
for help on using the changeset viewer.