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

17 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1579: type AST struct {
		js_ast.go#L1721: func (ast *AST) HasCommonJSFeatures() bool {
		js_ast.go#L1725: func (ast *AST) UsesCommonJSExports() bool {
		js_ast.go#L1729: func (ast *AST) HasESMFeatures() bool {

	github.com/evanw/esbuild/internal/bundler
		bundler.go#L80: 	ast  js_ast.AST
		bundler.go#L1812: 	astMap   map[runtimeCacheKey]js_ast.AST
		bundler.go#L1820: func (cache *runtimeCache) parseRuntime(options *config.Options) (source logger.Source, runtimeAST js_ast.AST, ok bool) {
		bundler.go#L1882: 			cache.astMap = make(map[runtimeCacheKey]js_ast.AST)
		linker.go#L3707: 			crossChunkPrefix = js_printer.Print(js_ast.AST{
		linker.go#L3711: 			crossChunkSuffix = js_printer.Print(js_ast.AST{

	github.com/evanw/esbuild/internal/cache
		cache_ast.go#L147: 	ast     js_ast.AST
		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/js_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 {
		js_parser.go#L13039: func (p *parser) toAST(source logger.Source, parts []js_ast.Part, hashbang string, directive string) js_ast.AST {
		js_parser.go#L13151: 	return js_ast.AST{

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L3086: func Print(tree js_ast.AST, symbols js_ast.SymbolMap, r renamer.Renamer, options Options) PrintResult {