question about reflection
Godmar Back
gback@cs.utah.edu
Thu Nov 25 09:25:00 GMT 1999
>> Godmar> I think having a flag "emit accurate meta-data" would be very
> Godmar> nice indeed.
>> Did you try -fkeep-inline-functions?
> I don't know if that will work, but it seems like it ought to.
No, that doesn't work.
It would only work if keep-inline-functions somehow set
optimize to and flag_inline_functions to zero.
Here's the code:
/* Build Method array. */
for (method = TYPE_METHODS (CLASS_TO_HANDLE_TYPE (type));
method != NULL_TREE; method = TREE_CHAIN (method))
{
tree init;
if (METHOD_PRIVATE (method)
&& (flag_inline_functions || optimize))
continue;
init = make_method_value (method);
method_count++;
methods = tree_cons (NULL_TREE, init, methods);
}
- Godmar
More information about the Java
mailing list