We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43651a3 commit 3f407abCopy full SHA for 3f407ab
CodeGeneration/Sources/SyntaxSupport/DeclNodes.swift
@@ -1820,6 +1820,14 @@ public let DECL_NODES: [Node] = [
1820
struct SomeStruct {
1821
let someMember: String
1822
var anotherMember: Int
1823
+
1824
+ func foo() {
1825
+ print(someMember)
1826
+ }
1827
1828
+ mutating func bar() {
1829
+ anotherMember = 42
1830
1831
}
1832
```
1833
0 commit comments