Exemple #1
0
 void visit(TypeSArray *t)
 {
     t->ctype = type_static_array(t->dim->toInteger(), Type_toCtype(t->next));
 }
Exemple #2
0
type *TypeSArray::toCtype()
{
    if (!ctype)
        ctype = type_static_array(dim->toInteger(), next->toCtype());
    return ctype;
}