Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(816)

Side by Side Diff: src/cmd/go/pkg.go

Issue 48870044: code review 48870044: cmd/link: intial skeleton of linker written in Go (Closed)
Patch Set: diff -r e4b3e3c1edda https://code.google.com/p/go/ Created 11 years, 2 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/cmd/link/dead.go » ('j') | src/cmd/link/layout.go » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package main 5 package main
6 6
7 import ( 7 import (
8 "bytes" 8 "bytes"
9 "errors" 9 "errors"
10 "fmt" 10 "fmt"
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 toRoot targetDir = iota // to bin dir inside package root (default) 300 toRoot targetDir = iota // to bin dir inside package root (default)
301 toTool // GOROOT/pkg/tool 301 toTool // GOROOT/pkg/tool
302 toBin // GOROOT/bin 302 toBin // GOROOT/bin
303 ) 303 )
304 304
305 // goTools is a map of Go program import path to install target directory. 305 // goTools is a map of Go program import path to install target directory.
306 var goTools = map[string]targetDir{ 306 var goTools = map[string]targetDir{
307 "cmd/api": toTool, 307 "cmd/api": toTool,
308 "cmd/cgo": toTool, 308 "cmd/cgo": toTool,
309 "cmd/fix": toTool, 309 "cmd/fix": toTool,
310 "cmd/link": toTool,
310 "cmd/nm": toTool, 311 "cmd/nm": toTool,
311 "cmd/yacc": toTool, 312 "cmd/yacc": toTool,
312 "code.google.com/p/go.tools/cmd/cover": toTool, 313 "code.google.com/p/go.tools/cmd/cover": toTool,
313 "code.google.com/p/go.tools/cmd/godoc": toBin, 314 "code.google.com/p/go.tools/cmd/godoc": toBin,
314 "code.google.com/p/go.tools/cmd/vet": toTool, 315 "code.google.com/p/go.tools/cmd/vet": toTool,
315 } 316 }
316 317
317 // expandScanner expands a scanner.List error into all the errors in the list. 318 // expandScanner expands a scanner.List error into all the errors in the list.
318 // The default Error method only shows the first error. 319 // The default Error method only shows the first error.
319 func expandScanner(err error) error { 320 func expandScanner(err error) error {
(...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 root = filepath.Clean(root) 853 root = filepath.Clean(root)
853 if !strings.HasSuffix(root, sep) { 854 if !strings.HasSuffix(root, sep) {
854 root += sep 855 root += sep
855 } 856 }
856 dir = filepath.Clean(dir) 857 dir = filepath.Clean(dir)
857 if !strings.HasPrefix(dir, root) { 858 if !strings.HasPrefix(dir, root) {
858 return "", false 859 return "", false
859 } 860 }
860 return filepath.ToSlash(dir[len(root):]), true 861 return filepath.ToSlash(dir[len(root):]), true
861 } 862 }
OLDNEW
« no previous file with comments | « no previous file | src/cmd/link/dead.go » ('j') | src/cmd/link/layout.go » ('J')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b