We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd9c066 commit fbc861eCopy full SHA for fbc861e
1 file changed
unified/extractor/tree-sitter-swift/grammar.js
@@ -272,8 +272,8 @@ module.exports = grammar({
272
comment: ($) => token(prec(PRECS.comment, seq("//", /.*/))),
273
// Named wrapper for the unnamed `_multiline_comment` external token, so
274
// that multi-line comments still appear in the AST (e.g. as extras between
275
- // top-level statements) without bleeding into class_body's $children when
276
- // used as a class member separator.
+ // top-level statements) without being extracted as class body members when
+ // used only to separate those members.
277
multiline_comment: ($) => $._multiline_comment,
278
// Identifiers
279
simple_identifier: ($) =>
0 commit comments