mirror of
https://github.com/google/go-jsonnet.git
synced 2025-08-08 07:17:12 +02:00
8 lines
118 B
Go
8 lines
118 B
Go
package ast
|
|
|
|
func (i *IdentifierSet) Append(idents Identifiers) {
|
|
for _, ident := range idents {
|
|
i.Add(ident)
|
|
}
|
|
}
|