From fbc861e7a407fea2f809e0094a6f0457bdd2a5ed Mon Sep 17 00:00:00 2001 From: Taus Date: Tue, 26 May 2026 16:19:02 +0200 Subject: [PATCH] unified: Clarify grammar comment Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- unified/extractor/tree-sitter-swift/grammar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unified/extractor/tree-sitter-swift/grammar.js b/unified/extractor/tree-sitter-swift/grammar.js index b6197b345e0..1e63a7eaabb 100644 --- a/unified/extractor/tree-sitter-swift/grammar.js +++ b/unified/extractor/tree-sitter-swift/grammar.js @@ -272,8 +272,8 @@ module.exports = grammar({ comment: ($) => token(prec(PRECS.comment, seq("//", /.*/))), // Named wrapper for the unnamed `_multiline_comment` external token, so // that multi-line comments still appear in the AST (e.g. as extras between - // top-level statements) without bleeding into class_body's $children when - // used as a class member separator. + // top-level statements) without being extracted as class body members when + // used only to separate those members. multiline_comment: ($) => $._multiline_comment, // Identifiers simple_identifier: ($) =>