type github.com/evanw/esbuild/internal/logger.Log

59 uses

	github.com/evanw/esbuild/internal/logger (current package)
		logger.go#L21: type Log struct {
		logger.go#L346: func NewStderrLog(options OutputOptions) Log {
		logger.go#L393: 	return Log{
		logger.go#L764: func NewDeferLog() Log {
		logger.go#L769: 	return Log{
		logger.go#L1229: func (log Log) AddError(source *Source, loc Loc, text string) {
		logger.go#L1236: func (log Log) AddErrorWithNotes(source *Source, loc Loc, text string, notes []MsgData) {
		logger.go#L1244: func (log Log) AddWarning(source *Source, loc Loc, text string) {
		logger.go#L1251: func (log Log) AddRangeError(source *Source, r Range, text string) {
		logger.go#L1258: func (log Log) AddRangeWarning(source *Source, r Range, text string) {
		logger.go#L1265: func (log Log) AddRangeErrorWithNotes(source *Source, r Range, text string, notes []MsgData) {
		logger.go#L1273: func (log Log) AddRangeWarningWithNotes(source *Source, r Range, text string, notes []MsgData) {

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L130: 	log                logger.Log
		bundler.go#L519: 	log logger.Log,
		bundler.go#L571: 	log logger.Log,
		bundler.go#L628: 	log logger.Log,
		bundler.go#L735: 	log logger.Log,
		bundler.go#L875: 	log     logger.Log
		bundler.go#L890: func ScanBundle(log logger.Log, fs fs.FS, res resolver.Resolver, caches *cache.CacheSet, entryPoints []string, options config.Options) Bundle {
		bundler.go#L1509: func (b *Bundle) Compile(log logger.Log, options config.Options) []OutputFile {
		linker.go#L62: 	log         logger.Log
		linker.go#L375: 	log logger.Log,

	github.com/evanw/esbuild/internal/cache
		cache_ast.go#L41: func (c *CSSCache) Parse(log logger.Log, source logger.Source, options css_parser.Options) css_ast.AST {
		cache_ast.go#L96: func (c *JSONCache) Parse(log logger.Log, source logger.Source, options js_parser.JSONOptions) (js_ast.Expr, bool) {
		cache_ast.go#L152: func (c *JSCache) Parse(log logger.Log, source logger.Source, options js_parser.Options) (js_ast.AST, bool) {

	github.com/evanw/esbuild/internal/css_lexer
		css_lexer.go#L149: 	log       logger.Log
		css_lexer.go#L156: func Tokenize(log logger.Log, source logger.Source) (tokens []Token) {

	github.com/evanw/esbuild/internal/css_parser
		css_parser.go#L18: 	log           logger.Log
		css_parser.go#L35: func Parse(log logger.Log, source logger.Source, options Options) css_ast.AST {

	github.com/evanw/esbuild/internal/js_lexer
		js_lexer.go#L219: 	log                             logger.Log
		js_lexer.go#L251: func NewLexer(log logger.Log, source logger.Source) Lexer {
		js_lexer.go#L262: func NewLexerGlobalName(log logger.Log, source logger.Source) Lexer {
		js_lexer.go#L274: func NewLexerJSON(log logger.Log, source logger.Source, allowComments bool) Lexer {

	github.com/evanw/esbuild/internal/js_parser
		global_name_parser.go#L8: func ParseGlobalName(log logger.Log, source logger.Source) (result []string, ok bool) {
		js_parser.go#L36: 	log                      logger.Log
		js_parser.go#L12622: func newParser(log logger.Log, source logger.Source, lexer js_lexer.Lexer, options *Options) *parser {
		js_parser.go#L12676: func Parse(log logger.Log, source logger.Source, options Options) (result js_ast.AST, ok bool) {
		js_parser.go#L12826: func LazyExportAST(log logger.Log, source logger.Source, options Options, expr js_ast.Expr, apiCall string) js_ast.AST {
		json_parser.go#L12: 	log     logger.Log
		json_parser.go#L158: func ParseJSON(log logger.Log, source logger.Source, options JSONOptions) (result js_ast.Expr, ok bool) {
		sourcemap_parser.go#L14: func ParseSourceMap(log logger.Log, source logger.Source) *sourcemap.SourceMap {

	github.com/evanw/esbuild/internal/resolver
		resolver.go#L126: 	log     logger.Log
		resolver.go#L169: func NewResolver(fs fs.FS, log logger.Log, caches *cache.CacheSet, options config.Options) Resolver {
		tsconfig_json.go#L40: 	log logger.Log,
		tsconfig_json.go#L177: func parseMemberExpressionForJSX(log logger.Log, source logger.Source, loc logger.Loc, text string) []string {
		tsconfig_json.go#L192: func isValidTSConfigPathPattern(text string, log logger.Log, source logger.Source, loc logger.Loc) bool {
		tsconfig_json.go#L212: func isValidTSConfigPathNoBaseURLPattern(text string, log logger.Log, source logger.Source, loc logger.Loc) bool {

	github.com/evanw/esbuild/pkg/api
		api_impl.go#L236: func validateFeatures(log logger.Log, target Target, engines []Engine) (compat.JSFeature, compat.CSSFeature) {
		api_impl.go#L295: func validateGlobalName(log logger.Log, text string) []string {
		api_impl.go#L311: func validateExternals(log logger.Log, fs fs.FS, paths []string) config.ExternalModules {
		api_impl.go#L339: func validateResolveExtensions(log logger.Log, order []string) []string {
		api_impl.go#L351: func validateLoaders(log logger.Log, loaders map[string]Loader) map[string]config.Loader {
		api_impl.go#L364: func validateJSX(log logger.Log, text string, name string) []string {
		api_impl.go#L378: func validateDefines(log logger.Log, defines map[string]string, pureFns []string) (*config.ProcessedDefines, []config.InjectedDefine) {
		api_impl.go#L478: func validatePath(log logger.Log, fs fs.FS, relPath string, pathKind string) string {
		api_impl.go#L489: func validateOutputExtensions(log logger.Log, outExtensions map[string]string) (js string, css string) {
		api_impl.go#L619: 	log logger.Log,
		api_impl.go#L1167: 	log    logger.Log
		api_impl.go#L1280: func loadPlugins(fs fs.FS, log logger.Log, plugins []Plugin) (results []config.Plugin) {