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
oddly, it turns -- [[ isEdited ]] into --[[ isEdited ]] (removing the space before the --).
-- [[ isEdited ]]
--[[ isEdited ]]
--
local editedAST = visit(ast, { OperationDefinition = { enter = function(self, ...) local node = ... checkVisitorFnArgs(expect, ast, { ... }) selectionSet = node.selectionSet return Object.assign({}, node, { selectionSet = { kind = "SelectionSet", selections = {}, }, didEnter = true, }) end, leave = function(self, ...) local node = ... checkVisitorFnArgs( expect, ast, { ... }, true --[[ isEdited ]] ) return Object.assign({}, node, { selectionSet = selectionSet, didLeave = true, }) end, }, })
The text was updated successfully, but these errors were encountered:
Doesn't seem to just be for function argument calls The following:
local test --[[foo]] = true
gets formatted as
local test--[[foo]] = true
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
oddly, it turns
-- [[ isEdited ]]
into--[[ isEdited ]]
(removing the space before the--
).The text was updated successfully, but these errors were encountered: