comparison dmd/Dsymbol.d @ 50:adf6f7f216ea

CondExp.toCBuffer IsExp.toCBuffer TemplateValueParameter.toCBuffer Dsymbol.search TemplateDeclaration.overloadInsert bug fixed
author korDen
date Sat, 21 Aug 2010 10:38:26 +0400
parents ccbc1e0bb3f0
children 51605de93870
comparison
equal deleted inserted replaced
49:0aa7d1437ada 50:adf6f7f216ea
448 void inlineScan() 448 void inlineScan()
449 { 449 {
450 // Most Dsymbols aren't functions 450 // Most Dsymbols aren't functions
451 } 451 }
452 452
453 /*********************************************
454 * Search for ident as member of s.
455 * Input:
456 * flags: 1 don't find private members
457 * 2 don't give error messages
458 * 4 return null if ambiguous
459 * Returns:
460 * null if not found
461 */
453 Dsymbol search(Loc loc, Identifier ident, int flags) 462 Dsymbol search(Loc loc, Identifier ident, int flags)
454 { 463 {
455 assert(false); 464 //printf("Dsymbol.search(this=%p,%s, ident='%s')\n", this, toChars(), ident.toChars());
465 return null;
456 } 466 }
457 467
458 /*************************************** 468 /***************************************
459 * Search for identifier id as a member of 'this'. 469 * Search for identifier id as a member of 'this'.
460 * id may be a template instance. 470 * id may be a template instance.