type github.com/evanw/esbuild/internal/js_ast.SEmpty

16 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L929: type SEmpty struct{}
		js_ast.go#L1168: func (*SEmpty) isStmt()         {}

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5041: 		return js_ast.Stmt{Loc: loc, Data: &js_ast.SEmpty{}}
		js_parser.go#L6234: 						stmt.Data = &js_ast.SEmpty{}
		js_parser.go#L6414: 	case *js_ast.SEmpty, *js_ast.SExpr, *js_ast.SThrow, *js_ast.SReturn,
		js_parser.go#L6744: 		case *js_ast.SEmpty:
		js_parser.go#L7420: 		return js_ast.Stmt{Loc: loc, Data: &js_ast.SEmpty{}}
		js_parser.go#L7527: 	case *js_ast.SBlock, *js_ast.SEmpty, *js_ast.SDebugger, *js_ast.SExpr, *js_ast.SIf,
		js_parser.go#L7555: 	return js_ast.Stmt{Loc: body.Loc, Data: &js_ast.SEmpty{}}
		js_parser.go#L7680: 	} else if _, ok := s.Yes.Data.(*js_ast.SEmpty); ok {
		js_parser.go#L7953: 	case *js_ast.SDebugger, *js_ast.SEmpty, *js_ast.SComment:
		js_parser.go#L8241: 				stmt = js_ast.Stmt{Loc: stmt.Loc, Data: &js_ast.SEmpty{}}
		js_parser.go#L8280: 				stmt = js_ast.Stmt{Loc: stmt.Loc, Data: &js_ast.SEmpty{}}
		js_parser.go#L8352: 				if _, ok := s.No.Data.(*js_ast.SEmpty); ok {
		js_parser.go#L12143: 		case *js_ast.SFunction, *js_ast.SEmpty:

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2534: 	case *js_ast.SEmpty: