forked from dave/dst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_test.go
55 lines (48 loc) · 1000 Bytes
/
example_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package dst_test
import (
"fmt"
"go/token"
"github.com/dave/dst"
"github.com/dave/dst/decorator"
)
// This example demonstrates how to inspect the AST of a Go program.
func ExampleInspect() {
// src is the input for which we want to inspect the AST.
src := `
package p
const c = 1.0
var X = f(3.14)*2 + c
`
// Create the AST by parsing src.
fset := token.NewFileSet() // positions are relative to fset
f, err := decorator.ParseFile(fset, "src.go", src, 0)
if err != nil {
panic(err)
}
// Inspect the AST and print all identifiers and literals.
dst.Inspect(f, func(n dst.Node) bool {
var s string
switch x := n.(type) {
case *dst.BasicLit:
s = x.Value
case *dst.Ident:
s = x.Name
}
if s != "" {
fmt.Println(s)
}
return true
})
// Output:
// p
// c
// 1.0
// X
// f
// 3.14
// 2
// c
}