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

15 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L50: 	LPostfix
		js_ast.go#L194: 	{"--", LPostfix, false},
		js_ast.go#L195: 	{"++", LPostfix, false},

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L3566: 			if level >= js_ast.LPostfix {
		js_parser.go#L3573: 			if p.lexer.HasNewlineBefore || level >= js_ast.LPostfix {
		js_parser.go#L3580: 			if p.lexer.HasNewlineBefore || level >= js_ast.LPostfix {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1406: 		if hasPureComment && level >= js_ast.LPostfix {
		js_printer.go#L1424: 		if !p.options.RemoveWhitespace || len(e.Args) > 0 || level >= js_ast.LPostfix {
		js_printer.go#L1450: 		if hasPureComment && level >= js_ast.LPostfix {
		js_printer.go#L1474: 			p.printExpr(e.Target, js_ast.LPostfix, 0)
		js_printer.go#L1477: 			p.printExpr(e.Target, js_ast.LPostfix, targetFlags)
		js_printer.go#L1568: 		p.printExpr(e.Target, js_ast.LPostfix, flags)
		js_printer.go#L1601: 		p.printExpr(e.Target, js_ast.LPostfix, flags)
		js_printer.go#L1836: 				p.printExpr(*e.Tag, js_ast.LPostfix, 0)
		js_printer.go#L2012: 			p.printExpr(e.Value, js_ast.LPostfix-1, 0)