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

Delta Between Two Patch Sets: src/cmd/godoc/snippet.go

Issue 189080: code review 189080: Steps towards tracking scopes for identifiers. (Closed)
Left Patch Set: code review 189080: Steps towards tracking scopes for identifiers. Created 15 years, 2 months ago
Right Patch Set: code review 189080: Steps towards tracking scopes for identifiers. Created 15 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:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « src/cmd/godoc/index.go ('k') | src/cmd/gofmt/gofmt.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 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 // This file contains the infrastructure to create a code 5 // This file contains the infrastructure to create a code
6 // snippet for search results. 6 // snippet for search results.
7 // 7 //
8 // Note: At the moment, this only creates HTML snippets. 8 // Note: At the moment, this only creates HTML snippets.
9 9
10 package main 10 package main
(...skipping 18 matching lines...) Expand all
29 highlight *ast.Ident // identifier to highlight 29 highlight *ast.Ident // identifier to highlight
30 } 30 }
31 31
32 32
33 func (s *snippetStyler) LineTag(line int) (text []uint8, tag printer.HTMLTag) { 33 func (s *snippetStyler) LineTag(line int) (text []uint8, tag printer.HTMLTag) {
34 return // no LineTag for snippets 34 return // no LineTag for snippets
35 } 35 }
36 36
37 37
38 func (s *snippetStyler) Ident(id *ast.Ident) (text []byte, tag printer.HTMLTag) { 38 func (s *snippetStyler) Ident(id *ast.Ident) (text []byte, tag printer.HTMLTag) {
39 » text = strings.Bytes(id.Value()) 39 » text = strings.Bytes(id.Name())
40 if s.highlight == id { 40 if s.highlight == id {
41 tag = printer.HTMLTag{"<span class=highlight>", "</span>"} 41 tag = printer.HTMLTag{"<span class=highlight>", "</span>"}
42 } 42 }
43 return 43 return
44 } 44 }
45 45
46 46
47 func newSnippet(decl ast.Decl, id *ast.Ident) *Snippet { 47 func newSnippet(decl ast.Decl, id *ast.Ident) *Snippet {
48 var buf bytes.Buffer 48 var buf bytes.Buffer
49 writeNode(&buf, decl, true, &snippetStyler{highlight: id}) 49 writeNode(&buf, decl, true, &snippetStyler{highlight: id})
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 case *ast.GenDecl: 108 case *ast.GenDecl:
109 s = genSnippet(d, id) 109 s = genSnippet(d, id)
110 case *ast.FuncDecl: 110 case *ast.FuncDecl:
111 s = funcSnippet(d, id) 111 s = funcSnippet(d, id)
112 } 112 }
113 113
114 // handle failure gracefully 114 // handle failure gracefully
115 if s == nil { 115 if s == nil {
116 s = &Snippet{ 116 s = &Snippet{
117 id.Pos().Line, 117 id.Pos().Line,
118 » » » fmt.Sprintf(`could not generate a snippet for <span clas s="highlight">%s</span>`, id.Value()), 118 » » » fmt.Sprintf(`could not generate a snippet for <span clas s="highlight">%s</span>`, id.Name()),
119 } 119 }
120 } 120 }
121 return 121 return
122 } 122 }
LEFTRIGHT

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