-
Couldn't load subscription status.
- Fork 146
Open
Labels
carvel triageThis issue has not yet been triaged for relevanceThis issue has not yet been triaged for relevance
Description
Is it possible to split function calls across multiple lines for readability? I can't seem to figure it out.
The below works:
#@ def some_list(a,b,c):
- #@ a
- #@ b
- #@ c
#@ end
--- #@ some_list("this is a long line", "i'd rather split this", "how do I do it?")
But this does not:
#@ def some_list(a,b,c):
- #@ a
- #@ b
- #@ c
#@ end
--- #@ some_list(
#@ "this is a long line",
#@ "i'd rather split this",
#@ "how do I do it?"
#@ )
Error:
- got string literal, want ','
def.yml:8 | #@ "this is a long line",
Metadata
Metadata
Assignees
Labels
carvel triageThis issue has not yet been triaged for relevanceThis issue has not yet been triaged for relevance
Type
Projects
Status
No status