github.com/evanw/esbuild/internal/config.StdinInfo.SourceFile (field)

9 uses

	github.com/evanw/esbuild/internal/config (current package)
		config.go#L140: 	SourceFile    string

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L1137: 		if stdin.SourceFile != "" {
		bundler.go#L1139: 				stdinPath = logger.Path{Text: stdin.SourceFile}
		bundler.go#L1140: 			} else if s.fs.IsAbs(stdin.SourceFile) {
		bundler.go#L1141: 				stdinPath = logger.Path{Text: stdin.SourceFile, Namespace: "file"}
		bundler.go#L1143: 				stdinPath = logger.Path{Text: s.fs.Join(stdin.AbsResolveDir, stdin.SourceFile), Namespace: "file"}

	github.com/evanw/esbuild/pkg/api
		api_impl.go#L693: 			SourceFile:    buildOpts.Stdin.Sourcefile,
		api_impl.go#L1103: 			SourceFile: transformOpts.Sourcefile,
		api_impl.go#L1112: 	if options.SourceMap != config.SourceMapNone && options.Stdin.SourceFile == "" {