Skip to content

[bug] Format Document in VSCode fails to properly handle line comments for enum #766

Open
@sv158

Description

@sv158

before:

enum W {
  A /// apple
  B /// berry
}

after format:

enum W {
  /// apple
  /// berry
  A 
  B 
}

another case:

enum W {
  A /// apple

  B /// berry
}

this works after format:

enum W {
  /// apple
  A 
  /// berry
  B 
}

Metadata

Metadata

Assignees

Labels

bugSomething isn't working

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions