Changeset 20 in dev for BasicCompiler32/Compile_Var.cpp
- Timestamp:
- Dec 28, 2006, 5:24:48 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BasicCompiler32/Compile_Var.cpp
r18 r20 760 760 } 761 761 762 763 /////////////////////////////////////// 764 // 単発式([]で囲まれていない) 765 /////////////////////////////////////// 766 767 if( type == DEF_OBJECT){ 768 //オブジェクトの場合はありえない 769 SetError(300,NULL,cp); 770 return 0; 771 } 772 762 773 if(SubScripts[0]!=-1){ 763 774 SetError(41,0,cp); … … 879 890 880 891 SetError(41,0,cp); 892 return 0; 893 } 894 895 896 /////////////////////////////////////// 897 // 単発式([]で囲まれていない) 898 /////////////////////////////////////// 899 900 if( type == DEF_OBJECT){ 901 //オブジェクトの場合はありえない 902 SetError(300,NULL,cp); 881 903 return 0; 882 904 }
Note:
See TracChangeset
for help on using the changeset viewer.