Changeset 198 in dev for trunk/abdev/BasicCompiler_Common


Ignore:
Timestamp:
Jun 27, 2007, 2:41:17 AM (17 years ago)
Author:
dai_9181
Message:
 
Location:
trunk/abdev/BasicCompiler_Common
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/BasicCompiler_Common/NumOpe_GetType.cpp

    r193 r198  
    286286    }
    287287
    288     if( !Compiler::StringToType( TypeName, resultType ) ){
     288    if( !compiler.StringToType( TypeName, resultType ) ){
    289289        return false;
    290290    }
     
    637637                    // As演算子の右辺値
    638638                    //型名
    639                     if( Compiler::StringToType( term, resultType ) ){
     639                    if( compiler.StringToType( term, resultType ) ){
    640640
    641641                        if( resultType.IsObject() ){
  • trunk/abdev/BasicCompiler_Common/Object.cpp

    r193 r198  
    116116    }
    117117
    118     if( !Compiler::StringToType( typeName, resultType ) ){
     118    if( !compiler.StringToType( typeName, resultType ) ){
    119119        SetError(3,typeName,cp);
    120120        return false;
  • trunk/abdev/BasicCompiler_Common/VariableOpe.cpp

    r195 r198  
    873873        }
    874874
    875         if( !Compiler::StringToType( temporary, type ) ){
     875        if( !compiler.StringToType( temporary, type ) ){
    876876            SetError(3,temporary,cp);
    877877            type.SetBasicType( DEF_LONG );
  • trunk/abdev/BasicCompiler_Common/calculation.cpp

    r193 r198  
    488488
    489489                        Type tempType;
    490                         if( !Compiler::StringToType( temp2, tempType ) ){
     490                        if( !compiler.StringToType( temp2, tempType ) ){
    491491                            if(enableerror) SetError(3,temp2,cp);
    492492                            return false;
     
    692692                        {
    693693                            Type tempType;
    694                             if( !Compiler::StringToType( Parms, tempType ) ){
     694                            if( !compiler.StringToType( Parms, tempType ) ){
    695695                                if(bDebuggingWatchList){
    696696                                    if( pIsMemoryAccessError ) *pIsMemoryAccessError = true;
  • trunk/abdev/BasicCompiler_Common/include/NamespaceSupporter.h

    r195 r198  
    3535    {
    3636        return livingNamespaceScopes;
     37    }
     38    void SetLivingNamespaceScopes( const NamespaceScopes &namespaceScopes )
     39    {
     40        this->livingNamespaceScopes = namespaceScopes;
    3741    }
    3842    bool IsLiving( const NamespaceScopes &namespaceScopes ) const
  • trunk/abdev/BasicCompiler_Common/src/ClassImpl.cpp

    r195 r198  
    590590                    i+=10;
    591591                    i+=GetStringInPare_RemovePare(temporary,source.GetBuffer()+i)+1;
    592                     Compiler::StringToType( temporary, blittableType );
     592                    compiler.StringToType( temporary, blittableType );
    593593                }
    594594
  • trunk/abdev/BasicCompiler_Common/src/ProcedureImpl.cpp

    r195 r198  
    131131            }
    132132
    133             Compiler::StringToType( temporary, type );
     133            compiler.StringToType( temporary, type );
    134134
    135135            if( type.IsNull() ){
     
    259259                }
    260260
    261                 Compiler::StringToType( temporary, type );
     261                compiler.StringToType( temporary, type );
    262262
    263263                if( type.IsNull() ){
     
    328328                    temporary[i3]=sourceOfParams[i2];
    329329                }
    330                 Compiler::StringToType( temporary, this->returnType );
     330                compiler.StringToType( temporary, this->returnType );
    331331                if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine);
    332332
     
    514514            }
    515515
    516             Compiler::StringToType( temporary, type );
     516            compiler.StringToType( temporary, type );
    517517
    518518            if( type.IsNull() ){
     
    568568                    temporary[i3]=sourceOfParams[i2];
    569569                }
    570                 Compiler::StringToType( temporary, this->returnType );
     570                compiler.StringToType( temporary, this->returnType );
    571571                if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine);
    572572
     
    685685            }
    686686
    687             Compiler::StringToType( temporary, type );
     687            compiler.StringToType( temporary, type );
    688688
    689689            if( type.IsNull() ){
     
    739739                    temporary[i3]=sourceOfParams[i2];
    740740                }
    741                 Compiler::StringToType( temporary, this->returnType );
     741                compiler.StringToType( temporary, this->returnType );
    742742                if( this->returnType.IsNull() ) SmoothieException::Throw(3,temporary,nowLine);
    743743
Note: See TracChangeset for help on using the changeset viewer.