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
It has 3 required fields (location, name, kind) and several optional fields. All the fields become withCamelCase methods on the generated builder, but to create the builder you need to pass the required fields:
SymbolInformation
.builder(name, location, kind)
.withTags(v: Vector[SymbolTag])
.withContainerName(s: String)
.withName(s: String) // overwrites the value passed to the builder method
.build // : SymbolInformation
The text was updated successfully, but these errors were encountered:
Perhaps it will make IDE experience better if structures exposed builder-style pattern.
I.e. if you have a
SymbolInformation
structure:It has 3 required fields (location, name, kind) and several optional fields. All the fields become
withCamelCase
methods on the generated builder, but to create the builder you need to pass the required fields:The text was updated successfully, but these errors were encountered: