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

28 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1600: 	Parts       []Part
		js_ast.go#L1757: type Part struct {

	github.com/evanw/esbuild/internal/bundler
		linker.go#L424: 			repr.ast.Parts = append([]js_ast.Part{}, repr.ast.Parts...)
		linker.go#L595: func (c *linkerContext) addPartToFile(sourceIndex uint32, part js_ast.Part, partMeta partMeta) uint32 {
		linker.go#L1246: 		repr.meta.nsExportPartIndex = c.addPartToFile(sourceIndex, js_ast.Part{
		linker.go#L1475: 		partIndex := c.addPartToFile(sourceIndex, js_ast.Part{
		linker.go#L1750: 		*exportPart = js_ast.Part{
		linker.go#L1836: 		partIndex := c.addPartToFile(sourceIndex, js_ast.Part{
		linker.go#L2356: 				partIndex := c.addPartToFile(sourceIndex, js_ast.Part{
		linker.go#L2545: 	part *js_ast.Part, fileMeta *fileMeta, useCount uint32,
		linker.go#L2564: 	part *js_ast.Part, fileMeta *fileMeta, useCount uint32,
		linker.go#L2883: func (c *linkerContext) shouldIncludePart(repr *reprJS, part js_ast.Part) bool {
		linker.go#L3462: 	tree.Parts = []js_ast.Part{{Stmts: stmts}}
		linker.go#L3473: 		tree.Parts = []js_ast.Part{{Stmts: stmtList.entryPointTail}}
		linker.go#L3709: 				Parts:         []js_ast.Part{{Stmts: repr.crossChunkPrefixStmts}},
		linker.go#L3712: 				Parts: []js_ast.Part{{Stmts: repr.crossChunkSuffixStmts}},

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L12094: func (p *parser) appendPart(parts []js_ast.Part, stmts []js_ast.Stmt) []js_ast.Part {
		js_parser.go#L12099: 	part := js_ast.Part{
		js_parser.go#L12753: 	var before []js_ast.Part
		js_parser.go#L12754: 	var parts []js_ast.Part
		js_parser.go#L12755: 	var after []js_ast.Part
		js_parser.go#L12840: 	part := js_ast.Part{
		js_parser.go#L12846: 	ast := p.toAST(source, []js_ast.Part{part}, "", "")
		js_parser.go#L13003: 	parts []js_ast.Part,
		js_parser.go#L13005: ) []js_ast.Part {
		js_parser.go#L13028: 	return append(parts, js_ast.Part{
		js_parser.go#L13039: func (p *parser) toAST(source logger.Source, parts []js_ast.Part, hashbang string, directive string) js_ast.AST {