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

32 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L385: type EArray struct {
		js_ast.go#L646: func (*EArray) isExpr()             {}

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L665: 	case *js_ast.EObject, *js_ast.EArray, *js_ast.EClass:
		js_parser.go#L734: 	case *js_ast.EObject, *js_ast.EArray, *js_ast.EClass:
		js_parser.go#L2489: 	case *js_ast.EArray:
		js_parser.go#L2579: 		return js_ast.Expr{Loc: loc, Data: &js_ast.EArray{
		js_parser.go#L3017: 		return js_ast.Expr{Loc: loc, Data: &js_ast.EArray{
		js_parser.go#L7326: 	case *js_ast.EArray:
		js_parser.go#L8760: 	case *js_ast.EArray:
		js_parser.go#L9341: 	case *js_ast.EArray, *js_ast.EArrow, *js_ast.EClass,
		js_parser.go#L9731: 			if array, ok := spread.Value.Data.(*js_ast.EArray); ok {
		js_parser.go#L9789: 	case *js_ast.EArray:
		js_parser.go#L10904: 	case *js_ast.EArray:
		js_parser.go#L12324: 	case *js_ast.EArray:
		js_parser.go#L12427: 	case *js_ast.EArray:
		js_parser_lower.go#L406: 				forwardedArgs = js_ast.Expr{Loc: bodyLoc, Data: &js_ast.EArray{Items: items, IsSingleLine: true}}
		js_parser_lower.go#L1097: 	case *js_ast.EArray:
		js_parser_lower.go#L1244: 	case *js_ast.EArray, *js_ast.EObject:
		js_parser_lower.go#L1259: 		case *js_ast.EArray:
		js_parser_lower.go#L1326: 			{Loc: binding.Loc, Data: &js_ast.EArray{Items: keysToExclude, IsSingleLine: isSingleLine}}}))
		js_parser_lower.go#L1354: 			tailExpr = js_ast.Expr{Loc: loc, Data: &js_ast.EArray{Items: after, IsSingleLine: isSingleLine}}
		js_parser_lower.go#L1362: 		assign(js_ast.Expr{Loc: split.Loc, Data: &js_ast.EArray{Items: items, IsSingleLine: isSingleLine}}, init)
		js_parser_lower.go#L1435: 		case *js_ast.EArray:
		js_parser_lower.go#L1777: 					{Loc: loc, Data: &js_ast.EArray{Items: prop.TSDecorators}},
		js_parser_lower.go#L2232: 				{Loc: classLoc, Data: &js_ast.EArray{Items: class.TSDecorators}},
		json_parser.go#L90: 		return js_ast.Expr{Loc: loc, Data: &js_ast.EArray{
		sourcemap_parser.go#L52: 			if value, ok := prop.Value.Data.(*js_ast.EArray); ok {
		sourcemap_parser.go#L64: 			if value, ok := prop.Value.Data.(*js_ast.EArray); ok {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1709: 	case *js_ast.EArray:

	github.com/evanw/esbuild/internal/resolver
		resolver.go#L1022: 		case *js_ast.EArray:
		tsconfig_json.go#L155: 						if array, ok := prop.Value.Data.(*js_ast.EArray); ok {

	github.com/evanw/esbuild/pkg/api
		api_impl.go#L436: 		case *js_ast.EArray, *js_ast.EObject: