These coding guidelines mention (rightfully so, I believe) to "[...]insert spaces after comma in functions/methods argument list".
Follows an example, but then this comes after:
For obvious reasons this recommendation not applies to arguments in $$$macro-call, where such extra spaces will break final result.
I'm not a seasoned ObjectScript developer, far from it, so out of curiosity I tried this:
ClassMethod foo()
{
#define concat(%1, %2) %1 _ %2
w $$$concat("foo", "bar"), !
}
And when executing this method it returns the "expected" result:
foobar
So, what are those "obvious reasons" this recommendation is referring to?
Developers are lazy, and we are not an exception. While macro-definitions so flexible, I can write a lot interesting things, to simplify development process. You can see one of my examples here at github.
you can't add space after comma, because this space also will appear before variable, and such code may became illegal syntactically.
One more example