I'm new to Groovy. I want to achieve this:
def a = { assert 1 == 1 }
def method(def a)
{
println a
}
method(a)
The println now prints ConsoleScript1$_run_closure1@72e9108f. But I wish it would print assert 1 == 1. Is that possible?
|
I'm new to Groovy. I want to achieve this:
The |
|||||
|
|
Using the answer I linked to as a duplicate of this, if you save:
to a file
You get the output:
Which is as close as you're going to get I think... Without using the positional data in the |
|||||||||||||
|
|
You're looking for Javascript-like functionality where invoking toString() on a function would print its source code. Groovy is compiled to JVM bytecode. The groovy compiler does not retain the source code in the compiled JVM class file. |
|||
|
|
|
I missed the point of your question. Please take a look at this answer from a previous post print the closure definition/source in Groovy In short, you cant get the closure text |
||||
|
|
|
There is a well-known exemple written in Scala in the book "Programming in Scala" by Odersky & Co. Basically, you have to :
in Groovy SDK, there is a Groovy method |
|||
|