rocker
rocker copied to clipboard
With block invalid: multiple equals symbols found for assignment String href = "/abc?x=y"
Hi,
I have an error stating:
With block invalid: multiple equals symbols found for assignment String href = "/abc?x=y"
With this code:
@with(String href = "/abc?x=y") {
}
If i went with the workaround code, avoiding = within the string like this, the error didnt happen.
@with(String href = $("/abc?%s", qs("x", "y"))) {