Changeset 628 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/VariableOpe.cpp
- Timestamp:
- May 29, 2008, 1:36:02 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/VariableOpe.cpp
r603 r628 849 849 } 850 850 851 if( !compiler.StringToType( temporary, type ) ){ 852 compiler.errorMessenger.Output(3,temporary,cp); 851 ActiveBasic::Compiler::Error::StringToTypeErrorCode::EnumType result = compiler.StringToTypeEx( temporary, type, true ); 852 if( result != ActiveBasic::Compiler::Error::StringToTypeErrorCode::Successful ) 853 { 854 if( result == ActiveBasic::Compiler::Error::StringToTypeErrorCode::FailedResolveGenericType ) 855 { 856 compiler.errorMessenger.Output(143,temporary,cp); 857 } 858 else 859 { 860 compiler.errorMessenger.Output(3,temporary,cp); 861 } 853 862 return false; 854 863 }
Note:
See TracChangeset
for help on using the changeset viewer.