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

7 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L609: type EAwait struct {
		js_ast.go#L675: func (*EAwait) isExpr()             {}

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L2702: 					return js_ast.Expr{Loc: loc, Data: &js_ast.EAwait{Value: value}}
		js_parser.go#L7193: 	case *js_ast.EAwait:
		js_parser.go#L10890: 	case *js_ast.EAwait:

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1965: 	case *js_ast.EAwait:
		js_printer.go#L2074: 			} else if _, ok := e.Left.Data.(*js_ast.EAwait); ok {