Example #1
0
String Decls::dump()
{
    String str = "";
    for(int i=0; i<decls->getSize(); i++)
    {
        Decl *decl = this->decls->getValue(i);
        str += decl->dump();

        str += "; ";
    }
    return str;
}