http://d.puremagic.com/issues/show_bug.cgi?id=9706
Andrej Mitrovic <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #1 from Andrej Mitrovic <[email protected]> 2013-03-12 14:29:28 PDT --- Hmmm.. a quick hack is to try to infer the type before type is outputted: void Declaration::jsonProperties(JsonOut *json) { // ... if (!type) { VarDeclaration *vd = this->isVarDeclaration(); type = vd->init->inferType(NULL); } json->property("type", "deco", type); // ... } But that's no good, scope is missing. Anyone more experienced knows how to handle this? -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
