github.com/evanw/esbuild/internal/bundler.scanner.results (field)
21 uses
github.com/evanw/esbuild/internal/bundler (current package)
bundler.go#L884: results []parseResult
bundler.go#L899: results: make([]parseResult, 0, caches.SourceIndexCache.LenHint()),
bundler.go#L905: s.results = append(s.results, parseResult{})
bundler.go#L1033: if newLen := int(sourceIndex) + 1; len(s.results) < newLen {
bundler.go#L1035: if cap(s.results) < newLen {
bundler.go#L1036: s.results = append(make([]parseResult, 0, 2*newLen), s.results...)
bundler.go#L1040: s.results = s.results[:newLen]
bundler.go#L1284: s.results[result.file.source.Index] = result
bundler.go#L1290: for i, result := range s.results {
bundler.go#L1344: js_printer.QuoteForJSON(s.results[record.SourceIndex.GetIndex()].file.source.PrettyPath, s.options.ASCIIOnly),
bundler.go#L1351: otherFile := &s.results[record.SourceIndex.GetIndex()].file
bundler.go#L1359: otherFile := &s.results[record.SourceIndex.GetIndex()].file
bundler.go#L1377: otherFile := &s.results[record.SourceIndex.GetIndex()].file
bundler.go#L1392: s.results[sourceIndex] = parseResult{
bundler.go#L1415: if otherFile := &s.results[record.SourceIndex.GetIndex()].file; otherFile.ignoreIfUnused {
bundler.go#L1442: s.results[i].file.jsonMetadataChunk = j.Done()
bundler.go#L1448: files := make([]file, len(s.results))
bundler.go#L1449: for i, result := range s.results {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |