mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
cmd/compile: update/remove outdated comments
Change-Id: I5a74be1593dca8ba5e0829f0bae35dc9ce702671 Reviewed-on: https://go-review.googlesource.com/32672 Reviewed-by: Matthew Dempsky <mdempsky@google.com>
This commit is contained in:
parent
21c114e930
commit
f4f6b64750
2 changed files with 3 additions and 15 deletions
|
|
@ -3,7 +3,6 @@
|
|||
// license that can be found in the LICENSE file.
|
||||
|
||||
// Binary package export.
|
||||
// (see fmt.go, parser.go as "documentation" for how to use/setup data structures)
|
||||
|
||||
/*
|
||||
1) Export data encoding principles:
|
||||
|
|
@ -71,8 +70,9 @@ same type was imported before via another import, the importer must use
|
|||
the previously imported type pointer so that we have exactly one version
|
||||
(i.e., one pointer) for each named type (and read but discard the current
|
||||
type encoding). Unnamed types simply encode their respective fields.
|
||||
Aliases are encoded starting with their name followed by the original
|
||||
(aliased) object.
|
||||
Aliases are encoded starting with their name followed by the qualified
|
||||
identifier denoting the original (aliased) object, which was exported
|
||||
earlier.
|
||||
|
||||
In the encoding, some lists start with the list length. Some lists are
|
||||
terminated with an end marker (usually for lists where we may not know
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue