go example_test 源码

  • 2022-07-15
  • 浏览 (822)

golang example_test 代码

文件路径:/src/go/parser/example_test.go

// 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 parser_test

import (
	"fmt"
	"go/parser"
	"go/token"
)

func ExampleParseFile() {
	fset := token.NewFileSet() // positions are relative to fset

	src := `package foo

import (
	"fmt"
	"time"
)

func bar() {
	fmt.Println(time.Now())
}`

	// Parse src but stop after processing the imports.
	f, err := parser.ParseFile(fset, "", src, parser.ImportsOnly)
	if err != nil {
		fmt.Println(err)
		return
	}

	// Print the imports from the file's AST.
	for _, s := range f.Imports {
		fmt.Println(s.Path.Value)
	}

	// output:
	//
	// "fmt"
	// "time"
}

相关信息

go 源码目录

相关文章

go error_test 源码

go interface 源码

go parser 源码

go parser_test 源码

go performance_test 源码

go resolver 源码

go resolver_test 源码

go short_test 源码

0  赞