You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Release Notes/510.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,10 @@
42
42
43
43
## API-Incompatible Changes
44
44
45
+
-`NoteMessage.fixItID` renamed to `noteID`
46
+
- Description: This was an error that it was named `fixItID` and should have been named `noteID` instead. Accesses to `fixItID` are deprecated and forward to `noteID`. Any types that conform `NoteMessage` it will need to be updated to provide a `noteID` instead of a `fixItID`.
Copy file name to clipboardExpand all lines: Sources/SwiftBasicFormat/SwiftBasicFormat.docc/FilingBugReports.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,9 +6,9 @@ Guide to provide steps for filing actionable bug reports for `BasicFormat` failu
6
6
7
7
Reducing a failure requires the `swift-parser-cli` utility that you can build by checking out `swift-syntax` and running
8
8
```
9
-
swift build --product swift-parser-cli
9
+
swift build --package-path SwiftParserCLI
10
10
```
11
-
or building the `swift-parser-cli` target in Xcode.
11
+
or openning `SwiftParserCLI` package and building the `swift-parser-cli` target in Xcode.
12
12
13
13
1. After you have built `swift-parse-cli`, you can format a single source file using BasicFormat by running the following command. If you are only experiencing the issue while formatting a single node, e.g. while creating an `AccessorDeclSyntax` inside a macro, you can additionally pass the type of the node as `--node-type AccessorDeclSyntax`
Copy file name to clipboardExpand all lines: Sources/SwiftParser/SwiftParser.docc/FilingBugReports.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Guide to provide steps for filing actionable bug reports for parser failures.
4
4
5
-
Reducing a test case requires the `swift-parser-cli` utility that you can build by checking out `swift-syntax` and running `swift build --product swift-parser-cli` or building the `swift-parser-cli` target in Xcode.
5
+
Reducing a test case requires the `swift-parser-cli` utility that you can build by checking out `swift-syntax` and running `swift build --package-path SwiftParserCLI` or openning the `SwiftParserCLI` package and building the `swift-parser-cli` target in Xcode.
0 commit comments