1
0
mirror of https://github.com/golang/go synced 2024-11-19 14:54:43 -07:00

split printer.go into two files; it has become too large:

- nodes.go implements ast node formatting
- printer.go implements the core printing functionality
  and public interface

No code changes except for updating the import clauses
and adding a top-level comment to nodes.go.

R=rsc
http://go/go-review/1016026
This commit is contained in:
Robert Griesemer 2009-11-02 20:55:40 -08:00
parent 120d0b50c6
commit 6e98b7f0b2
3 changed files with 1085 additions and 1070 deletions

View File

@ -7,5 +7,6 @@ include $(GOROOT)/src/Make.$(GOARCH)
TARG=go/printer
GOFILES=\
printer.go\
nodes.go\
include $(GOROOT)/src/Make.pkg

1083
src/pkg/go/printer/nodes.go Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff