Changeset 579 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/VariableOpe.cpp
- Timestamp:
- May 8, 2008, 3:27:32 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/VariableOpe.cpp
r570 r579 1051 1051 1052 1052 //定数と2重定義されていないる場合は抜け出す 1053 if(compiler.GetObjectModule().meta.GetGlobalConsts().GetBasicType( VarName)){1053 if(compiler.GetObjectModule().meta.GetGlobalConsts().GetBasicType( ActiveBasic::Compiler::LexicalAnalyzer::FullNameToSymbol( VarName ) )){ 1054 1054 return; 1055 1055 } … … 1073 1073 1074 1074 //定数と2重定義されていないかを調べる 1075 if(compiler.GetObjectModule().meta.GetGlobalConsts().GetBasicType( VarName)){1075 if(compiler.GetObjectModule().meta.GetGlobalConsts().GetBasicType( ActiveBasic::Compiler::LexicalAnalyzer::FullNameToSymbol( VarName ) )){ 1076 1076 compiler.errorMessenger.Output(15,VarName,cp); 1077 1077 return;
Note:
See TracChangeset
for help on using the changeset viewer.