type go/ast.GoStmt

10 uses

	go/ast (current package)
		ast.go#L674: 	GoStmt struct {
		ast.go#L785: func (s *GoStmt) Pos() token.Pos         { return s.Go }
		ast.go#L814: func (s *GoStmt) End() token.Pos     { return s.Call.End() }
		ast.go#L871: func (*GoStmt) stmtNode()         {}
		walk.go#L196: 	case *GoStmt:

	go/parser
		parser.go#L2012: 	return &ast.GoStmt{Go: pos, Call: call}

	go/printer
		nodes.go#L1409: 	case *ast.GoStmt:

	go/types
		return.go#L23: 		*ast.IncDecStmt, *ast.AssignStmt, *ast.GoStmt, *ast.DeferStmt,
		return.go#L116: 		*ast.SendStmt, *ast.IncDecStmt, *ast.AssignStmt, *ast.GoStmt,
		stmt.go#L547: 	case *ast.GoStmt: