Esempio n. 1
0
type *TypeDArray::toCtype()
{
    if (!ctype)
    {
        ctype = type_dyn_array(next->toCtype());
        ctype->Tident = toChars(); // needed to generate sensible debug info for cv8
    }
    return ctype;
}
Esempio n. 2
0
 void visit(TypeDArray *t)
 {
     t->ctype = type_dyn_array(Type_toCtype(t->next));
     t->ctype->Tident = t->toPrettyChars(true);
 }
Esempio n. 3
0
 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
 }