示例#1
0
文件: toctype.c 项目: CyberShadow/dmd
 void visit(TypeAArray *t)
 {
     t->ctype = type_assoc_array(Type_toCtype(t->index), Type_toCtype(t->next));
 }
示例#2
0
文件: toctype.c 项目: rainers/dmd
type *TypeAArray::toCtype()
{
    if (!ctype)
        ctype = type_assoc_array(index->toCtype(), next->toCtype());
    return ctype;
}