github.com/evanw/esbuild/internal/js_ast.ECall.Args (field)

68 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L442: 	Args          []Expr

	github.com/evanw/esbuild/internal/bundler
		linker.go#L1705: 			Args:   []js_ast.Expr{{Data: &js_ast.EIdentifier{Ref: repr.ast.ExportsRef}}},
		linker.go#L1727: 			Args: []js_ast.Expr{
		linker.go#L3089: 									Args: []js_ast.Expr{
		linker.go#L3110: 									Args: []js_ast.Expr{
		linker.go#L3409: 				Args:   []js_ast.Expr{{Data: &js_ast.EFunction{Fn: js_ast.Fn{Args: args, Body: js_ast.FnBody{Stmts: stmts}}}}},
		linker.go#L3414: 				Args:   []js_ast.Expr{{Data: &js_ast.EArrow{Args: args, Body: js_ast.FnBody{Stmts: stmts}}}},

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L956: 			len(a.Args) == len(b.Args) && valuesLookTheSame(a.Target.Data, b.Target.Data) {
		js_parser.go#L957: 			for i := range a.Args {
		js_parser.go#L958: 				if !valuesLookTheSame(a.Args[i].Data, b.Args[i].Data) {
		js_parser.go#L1536: 		Args:   args,
		js_parser.go#L2438: 			Args:   items,
		js_parser.go#L3410: 					Args:          p.parseCallArgs(),
		js_parser.go#L3428: 					Args:          p.parseCallArgs(),
		js_parser.go#L3522: 				Args:          p.parseCallArgs(),
		js_parser.go#L7318: 			for i, arg := range e.Args {
		js_parser.go#L7320: 					e.Args[i] = value
		js_parser.go#L7839: 	if y, ok := e.Yes.Data.(*js_ast.ECall); ok && len(y.Args) > 0 {
		js_parser.go#L7840: 		if n, ok := e.No.Data.(*js_ast.ECall); ok && len(n.Args) == len(y.Args) &&
		js_parser.go#L7848: 				for i, count := 1, len(y.Args); i < count; i++ {
		js_parser.go#L7849: 					if !valuesLookTheSame(y.Args[i].Data, n.Args[i].Data) {
		js_parser.go#L7855: 					yesSpread, yesIsSpread := y.Args[0].Data.(*js_ast.ESpread)
		js_parser.go#L7856: 					noSpread, noIsSpread := n.Args[0].Data.(*js_ast.ESpread)
		js_parser.go#L7862: 						y.Args[0] = js_ast.Expr{Loc: loc, Data: &js_ast.ESpread{Value: p.mangleIfExpr(loc, e)}}
		js_parser.go#L7868: 						e.Yes = y.Args[0]
		js_parser.go#L7869: 						e.No = n.Args[0]
		js_parser.go#L7870: 						y.Args[0] = p.mangleIfExpr(loc, e)
		js_parser.go#L8929: 					Args: []js_ast.Expr{},
		js_parser.go#L9993: 			Args:   args,
		js_parser.go#L11148: 					Args:   []js_ast.Expr{arg},
		js_parser.go#L11168: 					Args: []js_ast.Expr{then},
		js_parser.go#L11184: 			hasMultipleArgs: len(e.Args) >= 2,
		js_parser.go#L11190: 		if len(e.Args) == 1 && p.options.mode != config.ModePassThrough {
		js_parser.go#L11210: 		for i, arg := range e.Args {
		js_parser.go#L11215: 			e.Args[i] = arg
		js_parser.go#L11222: 					return p.maybeTransposeIfExprChain(e.Args[0], func(arg js_ast.Expr) js_ast.Expr {
		js_parser.go#L11223: 						if str, ok := e.Args[0].Data.(*js_ast.EString); ok {
		js_parser.go#L11231: 							importRecordIndex := p.addImportRecord(ast.ImportRequireResolve, e.Args[0].Loc, js_lexer.UTF16ToString(str.Value))
		js_parser.go#L11247: 							Args: []js_ast.Expr{arg},
		js_parser.go#L11256: 			e.Args = inlineSpreadsOfArrayLiterals(e.Args)
		js_parser.go#L11323: 					Args:                   append([]js_ast.Expr{targetFunc()}, e.Args...),
		js_parser.go#L11340: 					if len(e.Args) == 1 {
		js_parser.go#L11341: 						return p.maybeTransposeIfExprChain(e.Args[0], func(arg js_ast.Expr) js_ast.Expr {
		js_parser.go#L11369: 								Args:   []js_ast.Expr{arg},
		js_parser.go#L11375: 							"This call to \"require\" will not be bundled because it has %d arguments (surround with a try/catch to silence this warning)", len(e.Args)))
		js_parser.go#L12348: 			for _, arg := range e.Args {
		js_parser.go#L12572: 			for _, arg := range e.Args {
		js_parser_lower.go#L670: 					Args:                   append([]js_ast.Expr{thisArg}, e.Args...),
		js_parser_lower.go#L687: 					Args:                   append([]js_ast.Expr{privateThisFunc()}, e.Args...),
		js_parser_lower.go#L696: 				Args:                   e.Args,
		js_parser_lower.go#L1844: 						Args: []js_ast.Expr{
		js_parser_lower.go#L1928: 						Args: []js_ast.Expr{
		js_parser_lower.go#L2015: 					Args:   []js_ast.Expr{{Loc: classLoc, Data: &js_ast.ESpread{Value: js_ast.Expr{Loc: classLoc, Data: &js_ast.EIdentifier{Ref: argumentsRef}}}}},
		js_parser_lower.go#L2283: 		Args:   []js_ast.Expr{key},
		js_parser_lower.go#L2316: 	call.Args = append([]js_ast.Expr{thisExpr}, call.Args...)
		ts_parser.go#L849: 			Args:   []js_ast.Expr{path},
		ts_parser.go#L1051: 		Args: []js_ast.Expr{argExpr},

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L1484: 		for i, arg := range e.Args {