Changeset 5cdbfe in git for dyn_modules/bigintm/bigintm.cc
- Timestamp:
- Mar 15, 2011, 7:17:48 PM (12 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- f247337dd844f01e85a8379ff9c1e26fe7eea863
- Parents:
- 92e0ebb492f002a11e78b302b3758d32aedea17e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dyn_modules/bigintm/bigintm.cc
r92e0eb r5cdbfe 106 106 // interpreter: a1 is ist bigintm 107 107 assume( r->Typ() == bigintm_type_id ); 108 108 /* 109 // "typeof( <blackbox> )" is handled by 'blackboxDefaultOp1' 109 110 if (op==TYPEOF_CMD) 110 111 { … … 113 114 return FALSE; 114 115 } 116 */ 115 117 116 118 if( op=='(' ) // <bigintm> VAR(); … … 246 248 case '.': 247 249 { 248 Werror("bigintm_Op2: Op: '.': 2nd argument-type: '%s'(%d) in", Tok2Cmdname(a2->Typ()), a2->Typ()); 250 251 if (a2->name==NULL) 252 { 253 Werror("bigintm_Op2: Op: '.': 2nd argument-type: '%s'(%d) should be a NAME", Tok2Cmdname(a2->Typ()), a2->Typ()); 254 return TRUE; 255 } 256 257 Werror("bigintm_Op2: Op: '.': 2nd argument-type: '%s'(%d) is called '%s' in ", Tok2Cmdname(a2->Typ()), a2->Typ(), a2->name); 249 258 return blackboxDefaultOp2(op,res,a1,a2); 250 259 return TRUE;
Note: See TracChangeset
for help on using the changeset viewer.