-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
The auto-completion suggestion when instancing a struct have an item for the memberwise init, but with no arguments.
The item should be filled with all members as arguments.
Example :
struct A {
public memberwise init
public init(arg1: Bool) {
self.m1 = !arg1
}
public let m1: Bool
}
A // <-Trigger autcompletion here
// Results :
// - A() <-- This should fill the different members of A as arguments of constructor
// - A(arg1: Bool)
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels