Lines Matching refs:Go
2 # Starlark in Go: Implementation
5 choices of the Go implementation of Starlark.
56 Not all features of the Go implementation are "standard" (that is,
86 Floating point numbers are represented using Go's `float64`.
100 the Go values that represent them are not hashable in Go: big
102 Consequently, we cannot use Go maps to implement Starlark's dictionary.
111 The `starlarkstruct` Go package provides a non-standard Starlark
131 The Go implementation supports freezing by storing an additional
142 The freeze mechanism in the Go implementation is finer grained than in
150 The Go implementation would also permit the freeze operation to be
158 In some languages (such as Go), a program may mutate a data structure
180 A consequence of this design is that in the Go API, it is imperative
193 current Go compiler prevent this strategy from outperforming the
196 First, the Go compiler does not generate a "computed goto" for a
197 switch statement ([Go issue
205 Second, the Go compiler's escape analysis assumes that the underlying
207 ([Go issue 20533](https://github.com/golang/go/issues/20533)).
233 integration with Go testing.T