Dec. 13, 2011
11:17 p.m.
Igor, is this a bug? When parsing methods that send native functions withouth arguments , void, theres a DNU. For example in the following method: ^ self pangoCairoNbCall:#(PangoCairoFontMap pango_cairo_font_map_get_default ( void ) ) I fixed it like this: usesMethodArguments "first check wether my single argument is void" ^(fnSpec arguments size = 1 ==> [fnSpec arguments first class ~= NBVoid]) and:[ fnSpec arguments anySatisfy: [:type | type loader usesSTStack ] ] Fernando