const github.com/evanw/esbuild/internal/js_ast.UnOpDelete

9 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L114: 	UnOpDelete
		js_ast.go#L788: 		return e.Op == UnOpNot || e.Op == UnOpDelete

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L679: 			js_ast.UnOpNot, js_ast.UnOpTypeof, js_ast.UnOpDelete:
		js_parser.go#L844: 			js_ast.UnOpNot, js_ast.UnOpDelete,
		js_parser.go#L2847: 		return js_ast.Expr{Loc: loc, Data: &js_ast.EUnary{Op: js_ast.UnOpDelete, Value: value}}
		js_parser.go#L7223: 		case js_ast.UnOpPreInc, js_ast.UnOpPostInc, js_ast.UnOpPreDec, js_ast.UnOpPostDec, js_ast.UnOpDelete:
		js_parser.go#L10616: 		case js_ast.UnOpDelete:
		js_parser.go#L10729: 		if p.options.mangleSyntax && e.Op != js_ast.UnOpDelete && e.Op != js_ast.UnOpTypeof {
		js_parser_lower.go#L703: 				Op:    js_ast.UnOpDelete,