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

30 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L49: 	LPrefix
		js_ast.go#L181: 	{"+", LPrefix, false},
		js_ast.go#L182: 	{"-", LPrefix, false},
		js_ast.go#L183: 	{"~", LPrefix, false},
		js_ast.go#L184: 	{"!", LPrefix, false},
		js_ast.go#L185: 	{"void", LPrefix, true},
		js_ast.go#L186: 	{"typeof", LPrefix, true},
		js_ast.go#L187: 	{"delete", LPrefix, true},
		js_ast.go#L190: 	{"--", LPrefix, false},
		js_ast.go#L191: 	{"++", LPrefix, false},

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L2698: 					value := p.parseExpr(js_ast.LPrefix)
		js_parser.go#L2820: 		value := p.parseExpr(js_ast.LPrefix)
		js_parser.go#L2828: 		value := p.parseExpr(js_ast.LPrefix)
		js_parser.go#L2836: 		value := p.parseExpr(js_ast.LPrefix)
		js_parser.go#L2851: 		value := p.parseExpr(js_ast.LPrefix)
		js_parser.go#L2859: 		value := p.parseExpr(js_ast.LPrefix)
		js_parser.go#L2867: 		value := p.parseExpr(js_ast.LPrefix)
		js_parser.go#L2875: 		value := p.parseExpr(js_ast.LPrefix)
		js_parser.go#L2883: 		return js_ast.Expr{Loc: loc, Data: &js_ast.EUnary{Op: js_ast.UnOpPreDec, Value: p.parseExpr(js_ast.LPrefix)}}
		js_parser.go#L2887: 		return js_ast.Expr{Loc: loc, Data: &js_ast.EUnary{Op: js_ast.UnOpPreInc, Value: p.parseExpr(js_ast.LPrefix)}}
		ts_parser.go#L217: 			p.skipTypeScriptType(js_ast.LPrefix)

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1360: 	if level >= js_ast.LPrefix {
		js_printer.go#L1783: 			if level >= js_ast.LPrefix {
		js_printer.go#L1886: 			if level >= js_ast.LPrefix {
		js_printer.go#L1899: 			} else if level >= js_ast.LPrefix {
		js_printer.go#L1966: 		wrap := level >= js_ast.LPrefix
		js_printer.go#L1975: 		p.printExpr(e.Value, js_ast.LPrefix-1, 0)
		js_printer.go#L2027: 			p.printExpr(e.Value, js_ast.LPrefix-1, 0)
		js_printer.go#L2064: 				leftLevel = js_ast.LPrefix
		js_printer.go#L2067: 				rightLevel = js_ast.LPrefix