Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Comments with the ellipsis char mangles up the syntax tree #19060

Open
Flaxoos opened this issue Jan 28, 2025 · 1 comment
Open

Comments with the ellipsis char mangles up the syntax tree #19060

Flaxoos opened this issue Jan 28, 2025 · 1 comment
Labels
C-bug Category: bug

Comments

@Flaxoos
Copy link

Flaxoos commented Jan 28, 2025

It seems that every occurence of ellipsis () shifts the syntax tree by two places,
rust-analyzer version:
rust-analyzer version: 0.3.2273-standalone (248bd51 2025-01-18) [/Users/ido/.vscode/extensions/rust-lang.rust-analyzer-0.3.2273-darwin-arm64/server/rust-analyzer]

rustc version:
rustc 1.83.0-nightly (9c01301c5 2024-09-05)

editor or extension: vscode, extension version: 0.3.2273

code snippet to reproduce:
The rust code below

enum MyEnum {
    /// …
    MyEnumVariant
}

results in the syntax tree below

SOURCE_FILE@0..47
  ENUM@0..45
    ENUM_KW@0..4 "enum"
    WHITESPACE@4..5 " "
    NAME@5..11
      IDENT@5..11 "MyEnum"
    WHITESPACE@11..12 " "
    VARIANT_LIST@12..45
      L_CURLY@12..13 "{"
      WHITESPACE@13..18 "\n    "
      VARIANT@18..43
        COMMENT@18..25 "/// …\n "
        WHITESPACE@25..30 "   My"
        NAME@30..43
          IDENT@30..43 "EnumVariant\n}"
      WHITESPACE@43..44 "\n"
      R_CURLY@44..45 "\n"
  WHITESPACE@45..47 ""

Adding another elipsis:

enum MyEnum {
    /// ……
    MyEnumVariant
}

Shifts by another two places

SOURCE_FILE@0..49
  ENUM@0..48
    ENUM_KW@0..4 "enum"
    WHITESPACE@4..5 " "
    NAME@5..11
      IDENT@5..11 "MyEnum"
    WHITESPACE@11..12 " "
    VARIANT_LIST@12..48
      L_CURLY@12..13 "{"
      WHITESPACE@13..18 "\n    "
      VARIANT@18..46
        COMMENT@18..28 "/// ……\n   "
        WHITESPACE@28..33 " MyEn"
        NAME@33..46
          IDENT@33..46 "umVariant\n}\n"
      WHITESPACE@46..47 ""
      R_CURLY@47..48 ""
  WHITESPACE@48..49 ""

compared to the expected (if using ... (3 dots) instead of (ellipsis)

enum MyEnum {
    /// ...
    MyEnumVariant
}
SOURCE_FILE@0..47
  ENUM@0..45
    ENUM_KW@0..4 "enum"
    WHITESPACE@4..5 " "
    NAME@5..11
      IDENT@5..11 "MyEnum"
    WHITESPACE@11..12 " "
    VARIANT_LIST@12..45
      L_CURLY@12..13 "{"
      WHITESPACE@13..18 "\n    "
      VARIANT@18..43
        COMMENT@18..25 "/// ..."
        WHITESPACE@25..30 "\n    "
        NAME@30..43
          IDENT@30..43 "MyEnumVariant"
      WHITESPACE@43..44 "\n"
      R_CURLY@44..45 "}"
  WHITESPACE@45..47 "\n\n"
@Flaxoos Flaxoos added the C-bug Category: bug label Jan 28, 2025
@ChayimFriedman2
Copy link
Contributor

CC @Giga-Bowser

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
C-bug Category: bug
Projects
None yet
Development

No branches or pull requests

2 participants