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
For Macro calls, such as $$$MACRO(foo,bar,baz), empty space is inserted after each comma $$$MACRO(foo, bar, baz).
$$$MACRO(foo,bar,baz)
$$$MACRO(foo, bar, baz)
The text was updated successfully, but these errors were encountered:
Since Macros are substituted in the pre-compile step they cannot be treated like method calls.
Sorry, something went wrong.
Needs "in macro" handler to ignore white space adjustment when in macro parens but outside of function parens See "inJSON" handler
Fix Macro Space Issue
e977405
Fixed bug where CodeTidy adds spaces to macro args, triggering compilation failures (intersystems#58)
No branches or pull requests
For Macro calls, such as
$$$MACRO(foo,bar,baz)
, empty space is inserted after each comma$$$MACRO(foo, bar, baz)
.The text was updated successfully, but these errors were encountered: