We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suppose there is a class with an inner class:
class Out { class In { def foo(name:String) = "" } }
I have get the method of Out.In.foo, and I want to get the parameter names of it:
Out.In.foo
for { clazz <- Mirror.ofClass(method.getDeclaringClass).toSeq method <- clazz.allDefs.find(_.name == method.getName).toSeq param <- method.flatParams } yield (param.name, param.symType.toString)
But seems can't find that inner class:
Mirror.ofClass(method.getDeclaringClass).toSeq
returns a List()
List()
The text was updated successfully, but these errors were encountered:
I won't work at the moment, this is on the backlog.
Sorry, something went wrong.
No branches or pull requests
Suppose there is a class with an inner class:
I have get the method of
Out.In.foo
, and I want to get the parameter names of it:But seems can't find that inner class:
returns a
List()
The text was updated successfully, but these errors were encountered: