type go/ast.EmptyStmt

12 uses

	go/ast (current package)
		ast.go#L634: 	EmptyStmt struct {
		ast.go#L783: func (s *EmptyStmt) Pos() token.Pos      { return s.Semicolon }
		ast.go#L805: func (s *EmptyStmt) End() token.Pos {
		ast.go#L869: func (*EmptyStmt) stmtNode()      {}
		walk.go#L175: 	case *EmptyStmt:

	go/parser
		parser.go#L2498: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: p.lit == "\n"}
		parser.go#L2502: 		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: true}

	go/types
		return.go#L22: 	case *ast.BadStmt, *ast.DeclStmt, *ast.EmptyStmt, *ast.SendStmt,
		return.go#L82: 		if _, ok := list[i].(*ast.EmptyStmt); !ok {
		return.go#L115: 	case *ast.BadStmt, *ast.DeclStmt, *ast.EmptyStmt, *ast.ExprStmt,
		stmt.go#L109: 		if _, ok := list[i-1].(*ast.EmptyStmt); !ok {
		stmt.go#L430: 	case *ast.BadStmt, *ast.EmptyStmt: