github.com/april1989/origin-go-tools@v0.0.32/refactor/eg/testdata/J.template (about)

     1  // +build ignore
     2  
     3  package templates
     4  
     5  import ()
     6  
     7  func before(x int) int { return x + x + x }
     8  func after(x int) int {
     9  	temp := x + x
    10  	return temp + x
    11  }