LEFT | RIGHT |
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 Loading... |
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 Loading... |
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 } |
LEFT | RIGHT |