github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/go/types/context.go (about) 1 // "go test -run=Generate -write=all" によって生成されたコードです。編集しないでください。 2 3 // Copyright 2021 The Go Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style 5 // license that can be found in the LICENSE file. 6 7 package types 8 9 import ( 10 "github.com/shogo82148/std/sync" 11 ) 12 13 // Contextは不透明な型チェックコンテキストです。これは、型チェックされたパッケージやInstantiateへの呼び出し間で同じ型のインスタンスを共有するために使用される場合があります。Contextは同時利用に関して安全です。 14 // 15 // 共有コンテキストの利用は、すべてのケースで同じインスタンスが重複削除されることを保証するものではありません。 16 type Context struct { 17 mu sync.Mutex 18 typeMap map[string][]ctxtEntry 19 nextID int 20 originIDs map[Type]int 21 } 22 23 // NewContext は新しいコンテキストを作成します。 24 func NewContext() *Context