type go/ast.GoStmt

10 uses

	go/ast (current package)
		ast.go#L669: 	GoStmt struct {
		ast.go#L779: func (s *GoStmt) Pos() token.Pos         { return s.Go }
		ast.go#L808: func (s *GoStmt) End() token.Pos     { return s.Call.End() }
		ast.go#L866: func (*GoStmt) stmtNode()         {}
		walk.go#L220: 	case *GoStmt:

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

	go/printer
		nodes.go#L1348: 	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#L499: 	case *ast.GoStmt: