1
0
mirror of https://github.com/golang/go synced 2024-10-04 22:21:22 -06:00
go/src/pkg/gob/dump.go
Rob Pike e7601e2980 add a debugging printer to the gob package.
used only for debugging, debug.go is not normally part of the package source.

also add a dump program to call it.

R=rsc
CC=golang-dev
https://golang.org/cl/183075
2009-12-29 14:03:33 +11:00

23 lines
341 B
Go

package main
// Need to compile package gob with debug.go to build this program.
import (
"fmt"
"gob"
"os"
)
func main() {
var err os.Error
file := os.Stdin
if len(os.Args) > 1 {
file, err = os.Open(os.Args[1], os.O_RDONLY, 0)
if err != nil {
fmt.Fprintf(os.Stderr, "dump: %s\n", err)
os.Exit(1)
}
}
gob.Debug(file)
}