示例#1
0
文件: toctype.c 项目: rainers/dmd
type *TypeDArray::toCtype()
{
    if (!ctype)
    {
        ctype = type_dyn_array(next->toCtype());
        ctype->Tident = toChars(); // needed to generate sensible debug info for cv8
    }
    return ctype;
}
示例#2
0
文件: toctype.c 项目: CyberShadow/dmd
 void visit(TypeDArray *t)
 {
     t->ctype = type_dyn_array(Type_toCtype(t->next));
     t->ctype->Tident = t->toPrettyChars(true);
 }
示例#3
0
文件: toctype.c 项目: JenkinsDev/dmd
 void visit(TypeDArray *t)
 {
     t->ctype = type_dyn_array(Type_toCtype(t->next));
     t->ctype->Tident = t->toChars(); // needed to generate sensible debug info for cv8
 }