生成Go源代码

时间:2013-02-06 08:22:08

标签: go generated-code

我正在寻找一种生成Go源代码的方法。

我发现go / parser生成一个AST形式的Go源文件,但找不到从AST生成Go源的方法。

1 个答案:

答案 0 :(得分:16)

要将AST转换为源表单,可以使用go/printer包。

示例(另一个example的改编形式)

package main

import (
        "go/parser"
        "go/printer"
        "go/token"
        "os"
)

func main() {
        // src is the input for which we want to print the AST.
        src := `
package main
func main() {
        println("Hello, World!")
}
`

        // Create the AST by parsing src.
        fset := token.NewFileSet() // positions are relative to fset
        f, err := parser.ParseFile(fset, "", src, 0)
        if err != nil {
                panic(err)
        }

        printer.Fprint(os.Stdout, fset, f)

}

(也here


输出:

package main

func main() {
        println("Hello, World!")
}