SYMBOL INDEX (6848 symbols across 183 files) FILE: cmd/esbuild/main.go function main (line 159) | func main() { FILE: cmd/esbuild/main_other.go function createTraceFile (line 15) | func createTraceFile(osArgs []string, traceFile string) func() { function createHeapFile (line 29) | func createHeapFile(osArgs []string, heapFile string) func() { function createCpuprofileFile (line 45) | func createCpuprofileFile(osArgs []string, cpuprofileFile string) func() { function isServeUnsupported (line 59) | func isServeUnsupported() bool { FILE: cmd/esbuild/main_wasm.go function createTraceFile (line 12) | func createTraceFile(osArgs []string, traceFile string) func() { function createHeapFile (line 17) | func createHeapFile(osArgs []string, heapFile string) func() { function createCpuprofileFile (line 22) | func createCpuprofileFile(osArgs []string, cpuprofileFile string) func() { function isServeUnsupported (line 27) | func isServeUnsupported() bool { FILE: cmd/esbuild/service.go type responseCallback (line 27) | type responseCallback type pluginResolveCallback (line 28) | type pluginResolveCallback type activeBuild (line 30) | type activeBuild struct type serviceType (line 42) | type serviceType struct method getActiveBuild (line 51) | func (service *serviceType) getActiveBuild(key int) *activeBuild { method createActiveBuild (line 58) | func (service *serviceType) createActiveBuild(key int) *activeBuild { method destroyActiveBuild (line 72) | func (service *serviceType) destroyActiveBuild(key int) { method sendPacket (line 163) | func (service *serviceType) sendPacket(packet []byte) { method sendRequest (line 171) | func (service *serviceType) sendRequest(request interface{}) interface... method handleIncomingPacket (line 203) | func (service *serviceType) handleIncomingPacket(bytes []byte) { method handleBuildRequest (line 597) | func (service *serviceType) handleBuildRequest(id uint32, request map[... method convertPlugins (line 848) | func (service *serviceType) convertPlugins(key int, jsPlugins interfac... method handleTransformRequest (line 1154) | func (service *serviceType) handleTransformRequest(id uint32, request ... method handleFormatMessagesRequest (line 1228) | func (service *serviceType) handleFormatMessagesRequest(id uint32, req... method handleAnalyzeMetafileRequest (line 1254) | func (service *serviceType) handleAnalyzeMetafileRequest(id uint32, re... function runService (line 84) | func runService(sendPings bool) { function encodeErrorPacket (line 588) | func encodeErrorPacket(id uint32, err error) []byte { function resolveKindToString (line 793) | func resolveKindToString(kind api.ResolveKind) string { function stringToResolveKind (line 821) | func stringToResolveKind(kind string) (api.ResolveKind, bool) { function encodeStringArray (line 1275) | func encodeStringArray(strings []string) []interface{} { function decodeStringArray (line 1283) | func decodeStringArray(values []interface{}) []string { function encodeOutputFiles (line 1291) | func encodeOutputFiles(outputFiles []api.OutputFile) []interface{} { function encodeLocation (line 1303) | func encodeLocation(loc *api.Location) interface{} { function encodeMessages (line 1318) | func encodeMessages(msgs []api.Message) []interface{} { function decodeLocation (line 1348) | func decodeLocation(value interface{}) *api.Location { function decodeMessages (line 1368) | func decodeMessages(values []interface{}) []api.Message { function decodeLocationToPrivate (line 1391) | func decodeLocationToPrivate(value interface{}) *logger.MsgLocation { function decodeMessageToPrivate (line 1412) | func decodeMessageToPrivate(obj map[string]interface{}) logger.Msg { FILE: cmd/esbuild/stdio_protocol.go function readUint32 (line 14) | func readUint32(bytes []byte) (value uint32, leftOver []byte, ok bool) { function writeUint32 (line 22) | func writeUint32(bytes []byte, value uint32) []byte { function readLengthPrefixedSlice (line 28) | func readLengthPrefixedSlice(bytes []byte) (slice []byte, leftOver []byt... type packet (line 36) | type packet struct function encodePacket (line 42) | func encodePacket(p packet) []byte { function decodePacket (line 110) | func decodePacket(bytes []byte) (packet, bool) { FILE: cmd/esbuild/version.go constant esbuildVersion (line 3) | esbuildVersion = "0.27.4" FILE: compat-table/src/caniuse.ts type StatusCode (line 6) | const enum StatusCode { FILE: compat-table/src/compat-table.ts type Test (line 139) | interface Test { FILE: compat-table/src/index.ts type Engine (line 12) | type Engine = keyof typeof engines type JSFeature (line 28) | type JSFeature = keyof typeof jsFeatures type CSSFeature (line 93) | type CSSFeature = keyof typeof cssFeatures type CSSProperty (line 110) | type CSSProperty = keyof typeof cssProperties type Support (line 147) | interface Support { type VersionRange (line 153) | interface VersionRange { type PrefixData (line 158) | interface PrefixData { type SupportMap (line 164) | type SupportMap = Record = Partial = Partial> FILE: compat-table/src/mdn.ts type PrefixRange (line 208) | type PrefixRange = { prefix: string, start: string, end?: string } FILE: internal/ast/ast.go type ImportKind (line 15) | type ImportKind method StringForMetafile (line 43) | func (kind ImportKind) StringForMetafile() string { method IsFromCSS (line 66) | func (kind ImportKind) IsFromCSS() bool { method MustResolveToCSS (line 74) | func (kind ImportKind) MustResolveToCSS() bool { constant ImportEntryPoint (line 19) | ImportEntryPoint ImportKind = iota constant ImportStmt (line 22) | ImportStmt constant ImportRequire (line 25) | ImportRequire constant ImportDynamic (line 28) | ImportDynamic constant ImportRequireResolve (line 31) | ImportRequireResolve constant ImportAt (line 34) | ImportAt constant ImportComposesFrom (line 37) | ImportComposesFrom constant ImportURL (line 40) | ImportURL type ImportPhase (line 82) | type ImportPhase constant EvaluationPhase (line 85) | EvaluationPhase ImportPhase = iota constant DeferPhase (line 88) | DeferPhase constant SourcePhase (line 91) | SourcePhase type ImportRecordFlags (line 94) | type ImportRecordFlags method Has (line 160) | func (flags ImportRecordFlags) Has(flag ImportRecordFlags) bool { constant IsUnused (line 100) | IsUnused ImportRecordFlags = 1 << iota constant ContainsImportStar (line 105) | ContainsImportStar constant ContainsDefaultAlias (line 109) | ContainsDefaultAlias constant ContainsESModuleAlias (line 113) | ContainsESModuleAlias constant CallsRunTimeReExportFn (line 117) | CallsRunTimeReExportFn constant WrapWithToESM (line 120) | WrapWithToESM constant WrapWithToCJS (line 123) | WrapWithToCJS constant CallRuntimeRequire (line 126) | CallRuntimeRequire constant HandlesImportErrors (line 138) | HandlesImportErrors constant WasOriginallyBareImport (line 141) | WasOriginallyBareImport constant IsExternalWithoutSideEffects (line 144) | IsExternalWithoutSideEffects constant AssertTypeJSON (line 147) | AssertTypeJSON constant ShouldNotBeExternalInMetafile (line 150) | ShouldNotBeExternalInMetafile constant WasLoadedWithEmptyLoader (line 153) | WasLoadedWithEmptyLoader constant ContainsUniqueKey (line 157) | ContainsUniqueKey type ImportRecord (line 164) | type ImportRecord struct type AssertOrWithKeyword (line 187) | type AssertOrWithKeyword method String (line 194) | func (kw AssertOrWithKeyword) String() string { constant AssertKeyword (line 190) | AssertKeyword AssertOrWithKeyword = iota constant WithKeyword (line 191) | WithKeyword type ImportAssertOrWith (line 201) | type ImportAssertOrWith struct type AssertOrWithEntry (line 211) | type AssertOrWithEntry struct function FindAssertOrWithEntry (line 219) | func FindAssertOrWithEntry(assertions []AssertOrWithEntry, name string) ... type GlobPattern (line 228) | type GlobPattern struct type Index32 (line 237) | type Index32 struct method IsValid (line 245) | func (i Index32) IsValid() bool { method GetIndex (line 249) | func (i Index32) GetIndex() uint32 { function MakeIndex32 (line 241) | func MakeIndex32(index uint32) Index32 { type SymbolKind (line 253) | type SymbolKind method IsPrivate (line 352) | func (kind SymbolKind) IsPrivate() bool { method IsHoisted (line 356) | func (kind SymbolKind) IsHoisted() bool { method IsHoistedOrFunction (line 360) | func (kind SymbolKind) IsHoistedOrFunction() bool { method IsFunction (line 364) | func (kind SymbolKind) IsFunction() bool { method IsUnboundOrInjected (line 368) | func (kind SymbolKind) IsUnboundOrInjected() bool { constant SymbolUnbound (line 258) | SymbolUnbound SymbolKind = iota constant SymbolHoisted (line 269) | SymbolHoisted constant SymbolHoistedFunction (line 270) | SymbolHoistedFunction constant SymbolCatchIdentifier (line 290) | SymbolCatchIdentifier constant SymbolGeneratorOrAsyncFunction (line 295) | SymbolGeneratorOrAsyncFunction constant SymbolArguments (line 298) | SymbolArguments constant SymbolClass (line 301) | SymbolClass constant SymbolClassInComputedPropertyKey (line 304) | SymbolClassInComputedPropertyKey constant SymbolPrivateField (line 307) | SymbolPrivateField constant SymbolPrivateMethod (line 308) | SymbolPrivateMethod constant SymbolPrivateGet (line 309) | SymbolPrivateGet constant SymbolPrivateSet (line 310) | SymbolPrivateSet constant SymbolPrivateGetSetPair (line 311) | SymbolPrivateGetSetPair constant SymbolPrivateStaticField (line 312) | SymbolPrivateStaticField constant SymbolPrivateStaticMethod (line 313) | SymbolPrivateStaticMethod constant SymbolPrivateStaticGet (line 314) | SymbolPrivateStaticGet constant SymbolPrivateStaticSet (line 315) | SymbolPrivateStaticSet constant SymbolPrivateStaticGetSetPair (line 316) | SymbolPrivateStaticGetSetPair constant SymbolLabel (line 319) | SymbolLabel constant SymbolTSEnum (line 323) | SymbolTSEnum constant SymbolTSNamespace (line 327) | SymbolTSNamespace constant SymbolImport (line 331) | SymbolImport constant SymbolConst (line 334) | SymbolConst constant SymbolInjected (line 337) | SymbolInjected constant SymbolMangledProp (line 340) | SymbolMangledProp constant SymbolGlobalCSS (line 343) | SymbolGlobalCSS constant SymbolLocalCSS (line 346) | SymbolLocalCSS constant SymbolOther (line 349) | SymbolOther type Ref (line 385) | type Ref struct type LocRef (line 390) | type LocRef struct type ImportItemStatus (line 395) | type ImportItemStatus constant ImportItemNone (line 398) | ImportItemNone ImportItemStatus = iota constant ImportItemGenerated (line 401) | ImportItemGenerated constant ImportItemMissing (line 404) | ImportItemMissing type SymbolFlags (line 407) | type SymbolFlags method Has (line 514) | func (flags SymbolFlags) Has(flag SymbolFlags) bool { constant MustNotBeRenamed (line 413) | MustNotBeRenamed SymbolFlags = 1 << iota constant MustStartWithCapitalLetterForJSX (line 420) | MustStartWithCapitalLetterForJSX constant DidKeepName (line 427) | DidKeepName constant PrivateSymbolMustBeLowered (line 480) | PrivateSymbolMustBeLowered constant RemoveOverwrittenFunctionDeclaration (line 488) | RemoveOverwrittenFunctionDeclaration constant DidWarnAboutCommonJSInESM (line 492) | DidWarnAboutCommonJSInESM constant CouldPotentiallyBeMutated (line 496) | CouldPotentiallyBeMutated constant WasExported (line 500) | WasExported constant IsEmptyFunction (line 503) | IsEmptyFunction constant IsIdentityFunction (line 507) | IsIdentityFunction constant CallCanBeUnwrappedIfUnused (line 511) | CallCanBeUnwrappedIfUnused type Symbol (line 519) | type Symbol struct method MergeContentsWith (line 593) | func (newSymbol *Symbol) MergeContentsWith(oldSymbol *Symbol) { method SlotNamespace (line 614) | func (s *Symbol) SlotNamespace() SlotNamespace { type SlotNamespace (line 604) | type SlotNamespace constant SlotDefault (line 607) | SlotDefault SlotNamespace = iota constant SlotLabel (line 608) | SlotLabel constant SlotPrivateName (line 609) | SlotPrivateName constant SlotMangledProp (line 610) | SlotMangledProp constant SlotMustNotBeRenamed (line 611) | SlotMustNotBeRenamed type SlotCounts (line 630) | type SlotCounts method UnionMax (line 632) | func (a *SlotCounts) UnionMax(b SlotCounts) { type NamespaceAlias (line 642) | type NamespaceAlias struct type SymbolMap (line 647) | type SymbolMap struct method Get (line 662) | func (sm SymbolMap) Get(ref Ref) *Symbol { function NewSymbolMap (line 658) | func NewSymbolMap(sourceCount int) SymbolMap { function FollowSymbols (line 669) | func FollowSymbols(symbols SymbolMap, ref Ref) Ref { function FollowAllSymbols (line 689) | func FollowAllSymbols(symbols SymbolMap) { function MergeSymbols (line 700) | func MergeSymbols(symbols SymbolMap, old Ref, new Ref) Ref { type CharFreq (line 723) | type CharFreq method Scan (line 725) | func (freq *CharFreq) Scan(text string, delta int32) { method Include (line 748) | func (freq *CharFreq) Include(other *CharFreq) { type NameMinifier (line 754) | type NameMinifier struct method ShuffleByCharFreq (line 787) | func (source NameMinifier) ShuffleByCharFreq(freq CharFreq) NameMinifi... method NumberToMinifiedName (line 810) | func (minifier NameMinifier) NumberToMinifiedName(i int) string { type charAndCount (line 769) | type charAndCount struct type charAndCountArray (line 776) | type charAndCountArray method Len (line 778) | func (a charAndCountArray) Len() int { return len(a) } method Swap (line 779) | func (a charAndCountArray) Swap(i int, j int) { a[i], a[j] = a[j], a[i] } method Less (line 781) | func (a charAndCountArray) Less(i int, j int) bool { FILE: internal/bundler/bundler.go type scannerFile (line 43) | type scannerFile struct type DataForSourceMap (line 56) | type DataForSourceMap struct type Bundle (line 68) | type Bundle struct method Compile (line 3009) | func (b *Bundle) Compile(log logger.Log, timer *helpers.Timer, mangleC... method computeDataForSourceMapsInParallel (line 3213) | func (b *Bundle) computeDataForSourceMapsInParallel(options *config.Op... method generateMetadataJSON (line 3276) | func (b *Bundle) generateMetadataJSON(results []graph.OutputFile, allR... type parseArgs (line 82) | type parseArgs struct type parseResult (line 102) | type parseResult struct type globResolveResult (line 110) | type globResolveResult struct type tlaCheck (line 117) | type tlaCheck struct function parseFile (line 123) | func parseFile(args parseArgs) { function reportExplicitPhaseImport (line 775) | func reportExplicitPhaseImport( function ResolveFailureErrorTextSuggestionNotes (line 799) | func ResolveFailureErrorTextSuggestionNotes( function isASCIIOnly (line 880) | func isASCIIOnly(text string) bool { function guessMimeType (line 889) | func guessMimeType(extension string, contents string) string { function extractSourceMapFromComment (line 899) | func extractSourceMapFromComment( function sanitizeLocation (line 978) | func sanitizeLocation(fs fs.FS, loc *logger.MsgLocation) { function logPluginMessages (line 989) | func logPluginMessages( function RunOnResolvePlugins (line 1048) | func RunOnResolvePlugins( type loaderPluginResult (line 1171) | type loaderPluginResult struct function runOnLoadPlugins (line 1178) | func runOnLoadPlugins( function canonicalFileSystemPathForWindows (line 1312) | func canonicalFileSystemPathForWindows(absPath string) string { function HashForFileName (line 1316) | func HashForFileName(hashBytes []byte) string { type scanner (line 1320) | type scanner struct method maybeParseFile (line 1536) | func (s *scanner) maybeParseFile( method allocateSourceIndex (line 1653) | func (s *scanner) allocateSourceIndex(path logger.Path, kind cache.Sou... method allocateGlobSourceIndex (line 1673) | func (s *scanner) allocateGlobSourceIndex(parentSourceIndex uint32, gl... method preprocessInjectedFiles (line 1693) | func (s *scanner) preprocessInjectedFiles() { method addEntryPoints (line 1838) | func (s *scanner) addEntryPoints(entryPoints []EntryPoint) []graph.Ent... method scanAllDependencies (line 2172) | func (s *scanner) scanAllDependencies() { method generateResultForGlobResolve (line 2248) | func (s *scanner) generateResultForGlobResolve( method processScannedFiles (line 2357) | func (s *scanner) processScannedFiles(entryPointMeta []graph.EntryPoin... method validateTLA (line 2824) | func (s *scanner) validateTLA(sourceIndex uint32) tlaCheck { type visitedFile (line 1341) | type visitedFile struct type EntryPoint (line 1345) | type EntryPoint struct function generateUniqueKeyPrefix (line 1351) | func generateUniqueKeyPrefix() (string, error) { function ScanBundle (line 1367) | func ScanBundle( type inputKind (line 1527) | type inputKind constant inputKindNormal (line 1530) | inputKindNormal inputKind = iota constant inputKindEntryPoint (line 1531) | inputKindEntryPoint constant inputKindStdin (line 1532) | inputKindStdin function lowestCommonAncestorDirectory (line 2115) | func lowestCommonAncestorDirectory(fs fs.FS, entryPoints []graph.EntryPo... function DefaultExtensionToLoaderMap (line 2913) | func DefaultExtensionToLoaderMap() map[string]config.Loader { function applyOptionDefaults (line 2931) | func applyOptionDefaults(options *config.Options) { function fixInvalidUnsupportedJSFeatureOverrides (line 2987) | func fixInvalidUnsupportedJSFeatureOverrides(options *config.Options, im... type Linker (line 2996) | type Linker function findReachableFiles (line 3164) | func findReachableFiles(files []graph.InputFile, entryPoints []graph.Ent... type runtimeCacheKey (line 3327) | type runtimeCacheKey struct type runtimeCache (line 3333) | type runtimeCache struct method parseRuntime (line 3340) | func (cache *runtimeCache) parseRuntime(options *config.Options) (sour... function PathRelativeToOutbase (line 3398) | func PathRelativeToOutbase( function sanitizeFilePathForVirtualModulePath (line 3487) | func sanitizeFilePathForVirtualModulePath(path string) string { FILE: internal/bundler_tests/bundler_css_test.go function TestCSSEntryPoint (line 14) | func TestCSSEntryPoint(t *testing.T) { function TestCSSAtImportMissing (line 31) | func TestCSSAtImportMissing(t *testing.T) { function TestCSSAtImportExternal (line 48) | func TestCSSAtImportExternal(t *testing.T) { function TestCSSAtImport (line 99) | func TestCSSAtImport(t *testing.T) { function TestCSSFromJSMissingImport (line 127) | func TestCSSFromJSMissingImport(t *testing.T) { function TestCSSFromJSMissingStarImport (line 148) | func TestCSSFromJSMissingStarImport(t *testing.T) { function TestImportGlobalCSSFromJS (line 169) | func TestImportGlobalCSSFromJS(t *testing.T) { function TestImportLocalCSSFromJS (line 202) | func TestImportLocalCSSFromJS(t *testing.T) { function TestImportLocalCSSFromJSMinifyIdentifiers (line 238) | func TestImportLocalCSSFromJSMinifyIdentifiers(t *testing.T) { function TestImportLocalCSSFromJSMinifyIdentifiersAvoidGlobalNames (line 275) | func TestImportLocalCSSFromJSMinifyIdentifiersAvoidGlobalNames(t *testin... function TestImportLocalCSSFromJSMinifyIdentifiersMultipleEntryPoints (line 306) | func TestImportLocalCSSFromJSMinifyIdentifiersMultipleEntryPoints(t *tes... function TestImportCSSFromJSLocalVsGlobal (line 335) | func TestImportCSSFromJSLocalVsGlobal(t *testing.T) { function TestImportCSSFromJSLowerBareLocalAndGlobal (line 427) | func TestImportCSSFromJSLowerBareLocalAndGlobal(t *testing.T) { function TestImportCSSFromJSLocalAtKeyframes (line 466) | func TestImportCSSFromJSLocalAtKeyframes(t *testing.T) { function TestImportCSSFromJSLocalAtCounterStyle (line 507) | func TestImportCSSFromJSLocalAtCounterStyle(t *testing.T) { function TestImportCSSFromJSLocalAtContainer (line 586) | func TestImportCSSFromJSLocalAtContainer(t *testing.T) { function TestImportCSSFromJSNthIndexLocal (line 631) | func TestImportCSSFromJSNthIndexLocal(t *testing.T) { function TestImportCSSFromJSComposes (line 663) | func TestImportCSSFromJSComposes(t *testing.T) { function TestImportCSSFromJSComposesFromMissingImport (line 744) | func TestImportCSSFromJSComposesFromMissingImport(t *testing.T) { function TestImportCSSFromJSComposesFromNotCSS (line 794) | func TestImportCSSFromJSComposesFromNotCSS(t *testing.T) { function TestImportCSSFromJSComposesCircular (line 828) | func TestImportCSSFromJSComposesCircular(t *testing.T) { function TestImportCSSFromJSComposesFromCircular (line 859) | func TestImportCSSFromJSComposesFromCircular(t *testing.T) { function TestImportCSSFromJSComposesFromUndefined (line 892) | func TestImportCSSFromJSComposesFromUndefined(t *testing.T) { function TestImportCSSFromJSWriteToStdout (line 987) | func TestImportCSSFromJSWriteToStdout(t *testing.T) { function TestImportJSFromCSS (line 1007) | func TestImportJSFromCSS(t *testing.T) { function TestImportJSONFromCSS (line 1028) | func TestImportJSONFromCSS(t *testing.T) { function TestMissingImportURLInCSS (line 1049) | func TestMissingImportURLInCSS(t *testing.T) { function TestExternalImportURLInCSS (line 1068) | func TestExternalImportURLInCSS(t *testing.T) { function TestInvalidImportURLInCSS (line 1098) | func TestInvalidImportURLInCSS(t *testing.T) { function TestTextImportURLInCSSText (line 1139) | func TestTextImportURLInCSSText(t *testing.T) { function TestDataURLImportURLInCSS (line 1157) | func TestDataURLImportURLInCSS(t *testing.T) { function TestBinaryImportURLInCSS (line 1179) | func TestBinaryImportURLInCSS(t *testing.T) { function TestBase64ImportURLInCSS (line 1201) | func TestBase64ImportURLInCSS(t *testing.T) { function TestFileImportURLInCSS (line 1223) | func TestFileImportURLInCSS(t *testing.T) { function TestIgnoreURLsInAtRulePrelude (line 1250) | func TestIgnoreURLsInAtRulePrelude(t *testing.T) { function TestPackageURLsInCSS (line 1268) | func TestPackageURLsInCSS(t *testing.T) { function TestCSSAtImportExtensionOrderCollision (line 1296) | func TestCSSAtImportExtensionOrderCollision(t *testing.T) { function TestCSSAtImportExtensionOrderCollisionUnsupported (line 1317) | func TestCSSAtImportExtensionOrderCollisionUnsupported(t *testing.T) { function TestCSSAtImportConditionsNoBundle (line 1340) | func TestCSSAtImportConditionsNoBundle(t *testing.T) { function TestCSSAtImportConditionsBundleExternal (line 1353) | func TestCSSAtImportConditionsBundleExternal(t *testing.T) { function TestCSSAtImportConditionsBundleExternalConditionWithURL (line 1366) | func TestCSSAtImportConditionsBundleExternalConditionWithURL(t *testing.... function TestCSSAtImportConditionsBundle (line 1381) | func TestCSSAtImportConditionsBundle(t *testing.T) { function TestCSSAtImportConditionsWithImportRecordsBundle (line 1438) | func TestCSSAtImportConditionsWithImportRecordsBundle(t *testing.T) { function TestCSSAtImportConditionsFromExternalRepo (line 1471) | func TestCSSAtImportConditionsFromExternalRepo(t *testing.T) { function TestCSSAtImportConditionsAtLayerBundle (line 1808) | func TestCSSAtImportConditionsAtLayerBundle(t *testing.T) { function TestCSSAtImportConditionsAtLayerBundleAlternatingLayerInFile (line 1870) | func TestCSSAtImportConditionsAtLayerBundleAlternatingLayerInFile(t *tes... function TestCSSAtImportConditionsAtLayerBundleAlternatingLayerOnImport (line 1937) | func TestCSSAtImportConditionsAtLayerBundleAlternatingLayerOnImport(t *t... function TestCSSAtImportConditionsChainExternal (line 2004) | func TestCSSAtImportConditionsChainExternal(t *testing.T) { function TestCSSAndJavaScriptCodeSplittingIssue1064 (line 2029) | func TestCSSAndJavaScriptCodeSplittingIssue1064(t *testing.T) { function TestCSSExternalQueryAndHashNoMatchIssue1822 (line 2070) | func TestCSSExternalQueryAndHashNoMatchIssue1822(t *testing.T) { function TestCSSExternalQueryAndHashMatchIssue1822 (line 2096) | func TestCSSExternalQueryAndHashMatchIssue1822(t *testing.T) { function TestCSSNestingOldBrowser (line 2118) | func TestCSSNestingOldBrowser(t *testing.T) { function TestMetafileCSSBundleTwoToOne (line 2229) | func TestMetafileCSSBundleTwoToOne(t *testing.T) { function TestDeduplicateRules (line 2261) | func TestDeduplicateRules(t *testing.T) { function TestDeduplicateRulesGlobalVsLocalNames (line 2314) | func TestDeduplicateRulesGlobalVsLocalNames(t *testing.T) { function TestUndefinedImportWarningCSS (line 2362) | func TestUndefinedImportWarningCSS(t *testing.T) { function TestCSSMalformedAtImport (line 2462) | func TestCSSMalformedAtImport(t *testing.T) { function TestCSSAtLayerBeforeImportNoBundle (line 2499) | func TestCSSAtLayerBeforeImportNoBundle(t *testing.T) { function TestCSSAtLayerBeforeImportBundle (line 2517) | func TestCSSAtLayerBeforeImportBundle(t *testing.T) { function TestCSSAtLayerMergingWithImportConditions (line 2545) | func TestCSSAtLayerMergingWithImportConditions(t *testing.T) { function TestCSSCaseInsensitivity (line 2579) | func TestCSSCaseInsensitivity(t *testing.T) { function TestCSSAssetPathsWithSpacesBundle (line 2621) | func TestCSSAssetPathsWithSpacesBundle(t *testing.T) { FILE: internal/bundler_tests/bundler_dce_test.go function TestPackageJsonSideEffectsFalseKeepNamedImportES6 (line 15) | func TestPackageJsonSideEffectsFalseKeepNamedImportES6(t *testing.T) { function TestPackageJsonSideEffectsFalseKeepNamedImportCommonJS (line 40) | func TestPackageJsonSideEffectsFalseKeepNamedImportCommonJS(t *testing.T) { function TestPackageJsonSideEffectsFalseKeepStarImportES6 (line 65) | func TestPackageJsonSideEffectsFalseKeepStarImportES6(t *testing.T) { function TestPackageJsonSideEffectsFalseKeepStarImportCommonJS (line 90) | func TestPackageJsonSideEffectsFalseKeepStarImportCommonJS(t *testing.T) { function TestPackageJsonSideEffectsTrueKeepES6 (line 115) | func TestPackageJsonSideEffectsTrueKeepES6(t *testing.T) { function TestPackageJsonSideEffectsTrueKeepCommonJS (line 140) | func TestPackageJsonSideEffectsTrueKeepCommonJS(t *testing.T) { function TestPackageJsonSideEffectsFalseKeepBareImportAndRequireES6 (line 165) | func TestPackageJsonSideEffectsFalseKeepBareImportAndRequireES6(t *testi... function TestPackageJsonSideEffectsFalseKeepBareImportAndRequireCommonJS (line 194) | func TestPackageJsonSideEffectsFalseKeepBareImportAndRequireCommonJS(t *... function TestPackageJsonSideEffectsFalseRemoveBareImportES6 (line 223) | func TestPackageJsonSideEffectsFalseRemoveBareImportES6(t *testing.T) { function TestPackageJsonSideEffectsFalseRemoveBareImportCommonJS (line 251) | func TestPackageJsonSideEffectsFalseRemoveBareImportCommonJS(t *testing.... function TestPackageJsonSideEffectsFalseRemoveNamedImportES6 (line 279) | func TestPackageJsonSideEffectsFalseRemoveNamedImportES6(t *testing.T) { function TestPackageJsonSideEffectsFalseRemoveNamedImportCommonJS (line 304) | func TestPackageJsonSideEffectsFalseRemoveNamedImportCommonJS(t *testing... function TestPackageJsonSideEffectsFalseRemoveStarImportES6 (line 329) | func TestPackageJsonSideEffectsFalseRemoveStarImportES6(t *testing.T) { function TestPackageJsonSideEffectsFalseRemoveStarImportCommonJS (line 354) | func TestPackageJsonSideEffectsFalseRemoveStarImportCommonJS(t *testing.... function TestPackageJsonSideEffectsArrayRemove (line 379) | func TestPackageJsonSideEffectsArrayRemove(t *testing.T) { function TestPackageJsonSideEffectsArrayKeep (line 404) | func TestPackageJsonSideEffectsArrayKeep(t *testing.T) { function TestPackageJsonSideEffectsArrayKeepMainUseModule (line 429) | func TestPackageJsonSideEffectsArrayKeepMainUseModule(t *testing.T) { function TestPackageJsonSideEffectsArrayKeepMainUseMain (line 461) | func TestPackageJsonSideEffectsArrayKeepMainUseMain(t *testing.T) { function TestPackageJsonSideEffectsArrayKeepMainImplicitModule (line 493) | func TestPackageJsonSideEffectsArrayKeepMainImplicitModule(t *testing.T) { function TestPackageJsonSideEffectsArrayKeepMainImplicitMain (line 524) | func TestPackageJsonSideEffectsArrayKeepMainImplicitMain(t *testing.T) { function TestPackageJsonSideEffectsArrayKeepModuleUseModule (line 560) | func TestPackageJsonSideEffectsArrayKeepModuleUseModule(t *testing.T) { function TestPackageJsonSideEffectsArrayKeepModuleUseMain (line 592) | func TestPackageJsonSideEffectsArrayKeepModuleUseMain(t *testing.T) { function TestPackageJsonSideEffectsArrayKeepModuleImplicitModule (line 624) | func TestPackageJsonSideEffectsArrayKeepModuleImplicitModule(t *testing.... function TestPackageJsonSideEffectsArrayKeepModuleImplicitMain (line 655) | func TestPackageJsonSideEffectsArrayKeepModuleImplicitMain(t *testing.T) { function TestPackageJsonSideEffectsArrayGlob (line 691) | func TestPackageJsonSideEffectsArrayGlob(t *testing.T) { function TestPackageJsonSideEffectsNestedDirectoryRemove (line 725) | func TestPackageJsonSideEffectsNestedDirectoryRemove(t *testing.T) { function TestPackageJsonSideEffectsKeepExportDefaultExpr (line 750) | func TestPackageJsonSideEffectsKeepExportDefaultExpr(t *testing.T) { function TestPackageJsonSideEffectsFalseNoWarningInNodeModulesIssue999 (line 774) | func TestPackageJsonSideEffectsFalseNoWarningInNodeModulesIssue999(t *te... function TestPackageJsonSideEffectsFalseIntermediateFilesUnused (line 803) | func TestPackageJsonSideEffectsFalseIntermediateFilesUnused(t *testing.T) { function TestPackageJsonSideEffectsFalseIntermediateFilesUsed (line 828) | func TestPackageJsonSideEffectsFalseIntermediateFilesUsed(t *testing.T) { function TestPackageJsonSideEffectsFalseIntermediateFilesChainAll (line 854) | func TestPackageJsonSideEffectsFalseIntermediateFilesChainAll(t *testing... function TestPackageJsonSideEffectsFalseIntermediateFilesChainOne (line 895) | func TestPackageJsonSideEffectsFalseIntermediateFilesChainOne(t *testing... function TestPackageJsonSideEffectsFalseIntermediateFilesDiamond (line 927) | func TestPackageJsonSideEffectsFalseIntermediateFilesDiamond(t *testing.... function TestPackageJsonSideEffectsFalseOneFork (line 967) | func TestPackageJsonSideEffectsFalseOneFork(t *testing.T) { function TestPackageJsonSideEffectsFalseAllFork (line 999) | func TestPackageJsonSideEffectsFalseAllFork(t *testing.T) { function TestJSONLoaderRemoveUnused (line 1037) | func TestJSONLoaderRemoveUnused(t *testing.T) { function TestTextLoaderRemoveUnused (line 1054) | func TestTextLoaderRemoveUnused(t *testing.T) { function TestBase64LoaderRemoveUnused (line 1071) | func TestBase64LoaderRemoveUnused(t *testing.T) { function TestDataURLLoaderRemoveUnused (line 1092) | func TestDataURLLoaderRemoveUnused(t *testing.T) { function TestFileLoaderRemoveUnused (line 1113) | func TestFileLoaderRemoveUnused(t *testing.T) { function TestRemoveUnusedImportMeta (line 1134) | func TestRemoveUnusedImportMeta(t *testing.T) { function TestRemoveUnusedPureCommentCalls (line 1152) | func TestRemoveUnusedPureCommentCalls(t *testing.T) { function TestRemoveUnusedNoSideEffectsTaggedTemplates (line 1225) | func TestRemoveUnusedNoSideEffectsTaggedTemplates(t *testing.T) { function TestTreeShakingReactElements (line 1250) | func TestTreeShakingReactElements(t *testing.T) { function TestDisableTreeShaking (line 1274) | func TestDisableTreeShaking(t *testing.T) { function TestDeadCodeFollowingJump (line 1315) | func TestDeadCodeFollowingJump(t *testing.T) { function TestDeadCodeInsideEmptyTry (line 1408) | func TestDeadCodeInsideEmptyTry(t *testing.T) { function TestDeadCodeInsideUnusedCases (line 1433) | func TestDeadCodeInsideUnusedCases(t *testing.T) { function TestRemoveTrailingReturn (line 1520) | func TestRemoveTrailingReturn(t *testing.T) { function TestImportReExportOfNamespaceImport (line 1564) | func TestImportReExportOfNamespaceImport(t *testing.T) { function TestTreeShakingImportIdentifier (line 1593) | func TestTreeShakingImportIdentifier(t *testing.T) { function TestTreeShakingObjectProperty (line 1617) | func TestTreeShakingObjectProperty(t *testing.T) { function TestTreeShakingClassProperty (line 1658) | func TestTreeShakingClassProperty(t *testing.T) { function TestTreeShakingClassStaticProperty (line 1697) | func TestTreeShakingClassStaticProperty(t *testing.T) { function TestTreeShakingUnaryOperators (line 1736) | func TestTreeShakingUnaryOperators(t *testing.T) { function TestTreeShakingBinaryOperators (line 1766) | func TestTreeShakingBinaryOperators(t *testing.T) { function TestTreeShakingNoBundleESM (line 1827) | func TestTreeShakingNoBundleESM(t *testing.T) { function TestTreeShakingNoBundleCJS (line 1845) | func TestTreeShakingNoBundleCJS(t *testing.T) { function TestTreeShakingNoBundleIIFE (line 1863) | func TestTreeShakingNoBundleIIFE(t *testing.T) { function TestTreeShakingInESMWrapper (line 1881) | func TestTreeShakingInESMWrapper(t *testing.T) { function TestDCETypeOf (line 1907) | func TestDCETypeOf(t *testing.T) { function TestDCETypeOfEqualsString (line 1940) | func TestDCETypeOfEqualsString(t *testing.T) { function TestDCETypeOfEqualsStringMangle (line 1957) | func TestDCETypeOfEqualsStringMangle(t *testing.T) { function TestDCETypeOfEqualsStringGuardCondition (line 1976) | func TestDCETypeOfEqualsStringGuardCondition(t *testing.T) { function TestDCETypeOfCompareStringGuardCondition (line 2080) | func TestDCETypeOfCompareStringGuardCondition(t *testing.T) { function TestRemoveUnusedImports (line 2150) | func TestRemoveUnusedImports(t *testing.T) { function TestRemoveUnusedImportsEval (line 2170) | func TestRemoveUnusedImportsEval(t *testing.T) { function TestRemoveUnusedImportsEvalTS (line 2194) | func TestRemoveUnusedImportsEvalTS(t *testing.T) { function TestDCEClassStaticBlocks (line 2213) | func TestDCEClassStaticBlocks(t *testing.T) { function TestDCEClassStaticBlocksMinifySyntax (line 2258) | func TestDCEClassStaticBlocksMinifySyntax(t *testing.T) { function TestDCEVarExports (line 2304) | func TestDCEVarExports(t *testing.T) { function TestDCETemplateLiteral (line 2328) | func TestDCETemplateLiteral(t *testing.T) { function TestTreeShakingLoweredClassStaticField (line 2349) | func TestTreeShakingLoweredClassStaticField(t *testing.T) { function TestTreeShakingLoweredClassStaticFieldMinified (line 2383) | func TestTreeShakingLoweredClassStaticFieldMinified(t *testing.T) { function TestTreeShakingLoweredClassStaticFieldAssignment (line 2419) | func TestTreeShakingLoweredClassStaticFieldAssignment(t *testing.T) { function TestInlineIdentityFunctionCalls (line 2453) | func TestInlineIdentityFunctionCalls(t *testing.T) { function TestInlineEmptyFunctionCalls (line 2634) | func TestInlineEmptyFunctionCalls(t *testing.T) { function TestInlineFunctionCallBehaviorChanges (line 2769) | func TestInlineFunctionCallBehaviorChanges(t *testing.T) { function TestInlineFunctionCallForInitDecl (line 2840) | func TestInlineFunctionCallForInitDecl(t *testing.T) { function TestConstValueInliningNoBundle (line 2860) | func TestConstValueInliningNoBundle(t *testing.T) { function TestConstValueInliningBundle (line 3034) | func TestConstValueInliningBundle(t *testing.T) { function TestConstValueInliningAssign (line 3183) | func TestConstValueInliningAssign(t *testing.T) { function TestConstValueInliningDirectEval (line 3212) | func TestConstValueInliningDirectEval(t *testing.T) { function TestCrossModuleConstantFoldingNumber (line 3272) | func TestCrossModuleConstantFoldingNumber(t *testing.T) { function TestCrossModuleConstantFoldingString (line 3398) | func TestCrossModuleConstantFoldingString(t *testing.T) { function TestCrossModuleConstantFoldingComputedPropertyName (line 3490) | func TestCrossModuleConstantFoldingComputedPropertyName(t *testing.T) { function TestMultipleDeclarationTreeShaking (line 3547) | func TestMultipleDeclarationTreeShaking(t *testing.T) { function TestMultipleDeclarationTreeShakingMinifySyntax (line 3589) | func TestMultipleDeclarationTreeShakingMinifySyntax(t *testing.T) { function TestPureCallsWithSpread (line 3632) | func TestPureCallsWithSpread(t *testing.T) { function TestTopLevelFunctionInliningWithSpread (line 3649) | func TestTopLevelFunctionInliningWithSpread(t *testing.T) { function TestNestedFunctionInliningWithSpread (line 3709) | func TestNestedFunctionInliningWithSpread(t *testing.T) { function TestPackageJsonSideEffectsFalseCrossPlatformSlash (line 3773) | func TestPackageJsonSideEffectsFalseCrossPlatformSlash(t *testing.T) { function TestTreeShakingJSWithAssociatedCSS (line 3803) | func TestTreeShakingJSWithAssociatedCSS(t *testing.T) { function TestTreeShakingJSWithAssociatedCSSReExportSideEffectsFalse (line 3834) | func TestTreeShakingJSWithAssociatedCSSReExportSideEffectsFalse(t *testi... function TestTreeShakingJSWithAssociatedCSSReExportSideEffectsFalseOnlyJS (line 3864) | func TestTreeShakingJSWithAssociatedCSSReExportSideEffectsFalseOnlyJS(t ... function TestTreeShakingJSWithAssociatedCSSExportStarSideEffectsFalse (line 3894) | func TestTreeShakingJSWithAssociatedCSSExportStarSideEffectsFalse(t *tes... function TestTreeShakingJSWithAssociatedCSSExportStarSideEffectsFalseOnlyJS (line 3924) | func TestTreeShakingJSWithAssociatedCSSExportStarSideEffectsFalseOnlyJS(... function TestTreeShakingJSWithAssociatedCSSUnusedNestedImportSideEffectsFalse (line 3954) | func TestTreeShakingJSWithAssociatedCSSUnusedNestedImportSideEffectsFals... function TestTreeShakingJSWithAssociatedCSSUnusedNestedImportSideEffectsFalseOnlyJS (line 3984) | func TestTreeShakingJSWithAssociatedCSSUnusedNestedImportSideEffectsFals... function TestPreserveDirectivesMinifyPassThrough (line 4014) | func TestPreserveDirectivesMinifyPassThrough(t *testing.T) { function TestPreserveDirectivesMinifyIIFE (line 4042) | func TestPreserveDirectivesMinifyIIFE(t *testing.T) { function TestPreserveDirectivesMinifyBundle (line 4071) | func TestPreserveDirectivesMinifyBundle(t *testing.T) { function TestNoSideEffectsComment (line 4117) | func TestNoSideEffectsComment(t *testing.T) { function TestNoSideEffectsCommentIgnoreAnnotations (line 4257) | func TestNoSideEffectsCommentIgnoreAnnotations(t *testing.T) { function TestNoSideEffectsCommentMinifyWhitespace (line 4390) | func TestNoSideEffectsCommentMinifyWhitespace(t *testing.T) { function TestNoSideEffectsCommentUnusedCalls (line 4523) | func TestNoSideEffectsCommentUnusedCalls(t *testing.T) { function TestNoSideEffectsCommentTypeScriptDeclare (line 4577) | func TestNoSideEffectsCommentTypeScriptDeclare(t *testing.T) { function TestDCEOfIIFE (line 4605) | func TestDCEOfIIFE(t *testing.T) { function TestDCEOfDestructuring (line 4647) | func TestDCEOfDestructuring(t *testing.T) { function TestDCEOfDecorators (line 4675) | func TestDCEOfDecorators(t *testing.T) { function TestDCEOfExperimentalDecorators (line 4702) | func TestDCEOfExperimentalDecorators(t *testing.T) { function TestDCEOfUsingDeclarations (line 4736) | func TestDCEOfUsingDeclarations(t *testing.T) { function TestDCEOfExprAfterKeepNamesIssue3195 (line 4775) | func TestDCEOfExprAfterKeepNamesIssue3195(t *testing.T) { function TestDropLabels (line 4799) | func TestDropLabels(t *testing.T) { function TestRemoveCodeAfterLabelWithReturn (line 4832) | func TestRemoveCodeAfterLabelWithReturn(t *testing.T) { function TestDropLabelTreeShakingBugIssue3311 (line 4862) | func TestDropLabelTreeShakingBugIssue3311(t *testing.T) { function TestDCEOfSymbolInstances (line 4883) | func TestDCEOfSymbolInstances(t *testing.T) { function TestDCEOfNegatedBigints (line 4916) | func TestDCEOfNegatedBigints(t *testing.T) { function TestDCEOfIteratorSuperclassIssue4310 (line 4935) | func TestDCEOfIteratorSuperclassIssue4310(t *testing.T) { function TestDCEOfSymbolCtorCall (line 4951) | func TestDCEOfSymbolCtorCall(t *testing.T) { function TestDCEOfSymbolForCall (line 4981) | func TestDCEOfSymbolForCall(t *testing.T) { FILE: internal/bundler_tests/bundler_default_test.go function TestSimpleES6 (line 20) | func TestSimpleES6(t *testing.T) { function TestSimpleCommonJS (line 41) | func TestSimpleCommonJS(t *testing.T) { function TestNestedCommonJS (line 65) | func TestNestedCommonJS(t *testing.T) { function TestNewExpressionCommonJS (line 91) | func TestNewExpressionCommonJS(t *testing.T) { function TestCommonJSFromES6 (line 110) | func TestCommonJSFromES6(t *testing.T) { function TestES6FromCommonJS (line 137) | func TestES6FromCommonJS(t *testing.T) { function TestNestedES6FromCommonJS (line 167) | func TestNestedES6FromCommonJS(t *testing.T) { function TestExportFormsES6 (line 190) | func TestExportFormsES6(t *testing.T) { function TestExportFormsIIFE (line 216) | func TestExportFormsIIFE(t *testing.T) { function TestExportFormsWithMinifyIdentifiersAndNoBundle (line 243) | func TestExportFormsWithMinifyIdentifiersAndNoBundle(t *testing.T) { function TestImportFormsWithNoBundle (line 278) | func TestImportFormsWithNoBundle(t *testing.T) { function TestImportFormsWithMinifyIdentifiersAndNoBundle (line 303) | func TestImportFormsWithMinifyIdentifiersAndNoBundle(t *testing.T) { function TestExportFormsCommonJS (line 329) | func TestExportFormsCommonJS(t *testing.T) { function TestExportChain (line 369) | func TestExportChain(t *testing.T) { function TestExportInfiniteCycle1 (line 390) | func TestExportInfiniteCycle1(t *testing.T) { function TestExportInfiniteCycle2 (line 413) | func TestExportInfiniteCycle2(t *testing.T) { function TestJSXImportsCommonJS (line 438) | func TestJSXImportsCommonJS(t *testing.T) { function TestJSXImportsES6 (line 461) | func TestJSXImportsES6(t *testing.T) { function TestJSXSyntaxInJS (line 485) | func TestJSXSyntaxInJS(t *testing.T) { function TestJSXConstantFragments (line 504) | func TestJSXConstantFragments(t *testing.T) { function TestJSXAutomaticImportsCommonJS (line 543) | func TestJSXAutomaticImportsCommonJS(t *testing.T) { function TestJSXAutomaticImportsES6 (line 570) | func TestJSXAutomaticImportsES6(t *testing.T) { function TestJSXAutomaticSyntaxInJS (line 598) | func TestJSXAutomaticSyntaxInJS(t *testing.T) { function TestNodeModules (line 625) | func TestNodeModules(t *testing.T) { function TestRequireChildDirCommonJS (line 646) | func TestRequireChildDirCommonJS(t *testing.T) { function TestRequireChildDirES6 (line 664) | func TestRequireChildDirES6(t *testing.T) { function TestRequireParentDirCommonJS (line 683) | func TestRequireParentDirCommonJS(t *testing.T) { function TestRequireParentDirES6 (line 701) | func TestRequireParentDirES6(t *testing.T) { function TestImportMissingES6 (line 720) | func TestImportMissingES6(t *testing.T) { function TestImportMissingUnusedES6 (line 742) | func TestImportMissingUnusedES6(t *testing.T) { function TestImportMissingCommonJS (line 763) | func TestImportMissingCommonJS(t *testing.T) { function TestImportMissingNeitherES6NorCommonJS (line 782) | func TestImportMissingNeitherES6NorCommonJS(t *testing.T) { function TestExportMissingES6 (line 830) | func TestExportMissingES6(t *testing.T) { function TestDotImport (line 855) | func TestDotImport(t *testing.T) { function TestRequireWithTemplate (line 874) | func TestRequireWithTemplate(t *testing.T) { function TestDynamicImportWithTemplateIIFE (line 893) | func TestDynamicImportWithTemplateIIFE(t *testing.T) { function TestRequireAndDynamicImportInvalidTemplate (line 913) | func TestRequireAndDynamicImportInvalidTemplate(t *testing.T) { function TestDynamicImportWithExpressionCJS (line 950) | func TestDynamicImportWithExpressionCJS(t *testing.T) { function TestMinifiedDynamicImportWithExpressionCJS (line 967) | func TestMinifiedDynamicImportWithExpressionCJS(t *testing.T) { function TestConditionalRequireResolve (line 985) | func TestConditionalRequireResolve(t *testing.T) { function TestConditionalRequire (line 1010) | func TestConditionalRequire(t *testing.T) { function TestConditionalImport (line 1035) | func TestConditionalImport(t *testing.T) { function TestRequireBadArgumentCount (line 1062) | func TestRequireBadArgumentCount(t *testing.T) { function TestRequireJson (line 1084) | func TestRequireJson(t *testing.T) { function TestRequireTxt (line 1106) | func TestRequireTxt(t *testing.T) { function TestRequireBadExtension (line 1122) | func TestRequireBadExtension(t *testing.T) { function TestFalseRequire (line 1140) | func TestFalseRequire(t *testing.T) { function TestRequireWithoutCall (line 1156) | func TestRequireWithoutCall(t *testing.T) { function TestNestedRequireWithoutCall (line 1172) | func TestNestedRequireWithoutCall(t *testing.T) { function TestRequireWithCallInsideTry (line 1191) | func TestRequireWithCallInsideTry(t *testing.T) { function TestRequireWithoutCallInsideTry (line 1213) | func TestRequireWithoutCallInsideTry(t *testing.T) { function TestRequirePropertyAccessCommonJS (line 1233) | func TestRequirePropertyAccessCommonJS(t *testing.T) { function TestAwaitImportInsideTry (line 1255) | func TestAwaitImportInsideTry(t *testing.T) { function TestImportInsideTry (line 1276) | func TestImportInsideTry(t *testing.T) { function TestImportThenCatch (line 1300) | func TestImportThenCatch(t *testing.T) { function TestSourceMap (line 1317) | func TestSourceMap(t *testing.T) { function TestNestedScopeBug (line 1347) | func TestNestedScopeBug(t *testing.T) { function TestHashbangBundle (line 1370) | func TestHashbangBundle(t *testing.T) { function TestHashbangNoBundle (line 1389) | func TestHashbangNoBundle(t *testing.T) { function TestHashbangBannerUseStrictOrder (line 1403) | func TestHashbangBannerUseStrictOrder(t *testing.T) { function TestRequireFSBrowser (line 1421) | func TestRequireFSBrowser(t *testing.T) { function TestRequireFSNode (line 1440) | func TestRequireFSNode(t *testing.T) { function TestRequireFSNodeMinify (line 1457) | func TestRequireFSNodeMinify(t *testing.T) { function TestImportFSBrowser (line 1475) | func TestImportFSBrowser(t *testing.T) { function TestImportFSNodeCommonJS (line 1498) | func TestImportFSNodeCommonJS(t *testing.T) { function TestImportFSNodeES6 (line 1519) | func TestImportFSNodeES6(t *testing.T) { function TestExportFSBrowser (line 1540) | func TestExportFSBrowser(t *testing.T) { function TestExportFSNode (line 1560) | func TestExportFSNode(t *testing.T) { function TestReExportFSNode (line 1577) | func TestReExportFSNode(t *testing.T) { function TestExportFSNodeInCommonJSModule (line 1598) | func TestExportFSNodeInCommonJSModule(t *testing.T) { function TestExportWildcardFSNodeES6 (line 1618) | func TestExportWildcardFSNodeES6(t *testing.T) { function TestExportWildcardFSNodeCommonJS (line 1647) | func TestExportWildcardFSNodeCommonJS(t *testing.T) { function TestExportSpecialName (line 1676) | func TestExportSpecialName(t *testing.T) { function TestExportSpecialNameBundle (line 1693) | func TestExportSpecialNameBundle(t *testing.T) { function TestNodeAnnotationFalsePositiveIssue3544 (line 1715) | func TestNodeAnnotationFalsePositiveIssue3544(t *testing.T) { function TestNodeAnnotationInvalidIdentifierIssue4100 (line 1740) | func TestNodeAnnotationInvalidIdentifierIssue4100(t *testing.T) { function TestMinifiedBundleES6 (line 1760) | func TestMinifiedBundleES6(t *testing.T) { function TestMinifiedBundleCommonJS (line 1785) | func TestMinifiedBundleCommonJS(t *testing.T) { function TestMinifiedBundleEndingWithImportantSemicolon (line 1812) | func TestMinifiedBundleEndingWithImportantSemicolon(t *testing.T) { function TestRuntimeNameCollisionNoBundle (line 1829) | func TestRuntimeNameCollisionNoBundle(t *testing.T) { function TestTopLevelReturnForbiddenImport (line 1844) | func TestTopLevelReturnForbiddenImport(t *testing.T) { function TestTopLevelReturnForbiddenExport (line 1863) | func TestTopLevelReturnForbiddenExport(t *testing.T) { function TestTopLevelReturnForbiddenTLA (line 1882) | func TestTopLevelReturnForbiddenTLA(t *testing.T) { function TestThisOutsideFunction (line 1900) | func TestThisOutsideFunction(t *testing.T) { function TestThisInsideFunction (line 1930) | func TestThisInsideFunction(t *testing.T) { function TestThisWithES6Syntax (line 1970) | func TestThisWithES6Syntax(t *testing.T) { function TestArrowFnScope (line 2093) | func TestArrowFnScope(t *testing.T) { function TestSwitchScopeNoBundle (line 2118) | func TestSwitchScopeNoBundle(t *testing.T) { function TestArgumentDefaultValueScopeNoBundle (line 2134) | func TestArgumentDefaultValueScopeNoBundle(t *testing.T) { function TestArgumentsSpecialCaseNoBundle (line 2156) | func TestArgumentsSpecialCaseNoBundle(t *testing.T) { function TestWithStatementTaintingNoBundle (line 2207) | func TestWithStatementTaintingNoBundle(t *testing.T) { function TestDirectEvalTaintingNoBundle (line 2240) | func TestDirectEvalTaintingNoBundle(t *testing.T) { function TestImportReExportES6Issue149 (line 2285) | func TestImportReExportES6Issue149(t *testing.T) { function TestExternalModuleExclusionPackage (line 2320) | func TestExternalModuleExclusionPackage(t *testing.T) { function TestExternalModuleExclusionScopedPackage (line 2345) | func TestExternalModuleExclusionScopedPackage(t *testing.T) { function TestScopedExternalModuleExclusion (line 2397) | func TestScopedExternalModuleExclusion(t *testing.T) { function TestExternalModuleExclusionRelativePath (line 2422) | func TestExternalModuleExclusionRelativePath(t *testing.T) { function TestImportWithHashInPath (line 2456) | func TestImportWithHashInPath(t *testing.T) { function TestImportWithHashParameter (line 2475) | func TestImportWithHashParameter(t *testing.T) { function TestImportWithQueryParameter (line 2494) | func TestImportWithQueryParameter(t *testing.T) { function TestImportAbsPathWithQueryParameter (line 2513) | func TestImportAbsPathWithQueryParameter(t *testing.T) { function TestImportAbsPathAsFile (line 2532) | func TestImportAbsPathAsFile(t *testing.T) { function TestImportAbsPathAsDir (line 2551) | func TestImportAbsPathAsDir(t *testing.T) { function TestAutoExternal (line 2587) | func TestAutoExternal(t *testing.T) { function TestAutoExternalNode (line 2606) | func TestAutoExternalNode(t *testing.T) { function TestExternalWithWildcard (line 2630) | func TestExternalWithWildcard(t *testing.T) { function TestExternalWildcardDoesNotMatchEntryPoint (line 2665) | func TestExternalWildcardDoesNotMatchEntryPoint(t *testing.T) { function TestManyEntryPoints (line 2687) | func TestManyEntryPoints(t *testing.T) { function TestRenamePrivateIdentifiersNoBundle (line 2749) | func TestRenamePrivateIdentifiersNoBundle(t *testing.T) { function TestMinifyPrivateIdentifiersNoBundle (line 2782) | func TestMinifyPrivateIdentifiersNoBundle(t *testing.T) { function TestRenameLabelsNoBundle (line 2816) | func TestRenameLabelsNoBundle(t *testing.T) { function TestMinifySiblingLabelsNoBundle (line 2848) | func TestMinifySiblingLabelsNoBundle(t *testing.T) { function TestMinifyNestedLabelsNoBundle (line 2881) | func TestMinifyNestedLabelsNoBundle(t *testing.T) { function TestExportsAndModuleFormatCommonJS (line 2918) | func TestExportsAndModuleFormatCommonJS(t *testing.T) { function TestMinifiedExportsAndModuleFormatCommonJS (line 2945) | func TestMinifiedExportsAndModuleFormatCommonJS(t *testing.T) { function TestEmptyExportClauseBundleAsCommonJSIssue910 (line 2974) | func TestEmptyExportClauseBundleAsCommonJSIssue910(t *testing.T) { function TestUseStrictDirectiveMinifyNoBundle (line 2995) | func TestUseStrictDirectiveMinifyNoBundle(t *testing.T) { function TestUseStrictDirectiveBundleIssue1837 (line 3014) | func TestUseStrictDirectiveBundleIssue1837(t *testing.T) { function TestUseStrictDirectiveBundleIIFEIssue2264 (line 3040) | func TestUseStrictDirectiveBundleIIFEIssue2264(t *testing.T) { function TestUseStrictDirectiveBundleCJSIssue2264 (line 3057) | func TestUseStrictDirectiveBundleCJSIssue2264(t *testing.T) { function TestUseStrictDirectiveBundleESMIssue2264 (line 3074) | func TestUseStrictDirectiveBundleESMIssue2264(t *testing.T) { function TestNoOverwriteInputFileError (line 3091) | func TestNoOverwriteInputFileError(t *testing.T) { function TestDuplicateEntryPoint (line 3108) | func TestDuplicateEntryPoint(t *testing.T) { function TestRelativeEntryPointError (line 3123) | func TestRelativeEntryPointError(t *testing.T) { function TestMultipleEntryPointsSameNameCollision (line 3141) | func TestMultipleEntryPointsSameNameCollision(t *testing.T) { function TestReExportCommonJSAsES6 (line 3156) | func TestReExportCommonJSAsES6(t *testing.T) { function TestReExportDefaultInternal (line 3174) | func TestReExportDefaultInternal(t *testing.T) { function TestReExportDefaultExternalES6 (line 3196) | func TestReExportDefaultExternalES6(t *testing.T) { function TestReExportDefaultExternalCommonJS (line 3222) | func TestReExportDefaultExternalCommonJS(t *testing.T) { function TestReExportDefaultNoBundle (line 3248) | func TestReExportDefaultNoBundle(t *testing.T) { function TestReExportDefaultNoBundleES6 (line 3263) | func TestReExportDefaultNoBundleES6(t *testing.T) { function TestReExportDefaultNoBundleCommonJS (line 3280) | func TestReExportDefaultNoBundleCommonJS(t *testing.T) { function TestImportMetaCommonJS (line 3297) | func TestImportMetaCommonJS(t *testing.T) { function TestImportMetaES6 (line 3318) | func TestImportMetaES6(t *testing.T) { function TestImportMetaNoBundle (line 3334) | func TestImportMetaNoBundle(t *testing.T) { function TestLegalCommentsNone (line 3348) | func TestLegalCommentsNone(t *testing.T) { function TestLegalCommentsInline (line 3385) | func TestLegalCommentsInline(t *testing.T) { function TestLegalCommentsEndOfFile (line 3422) | func TestLegalCommentsEndOfFile(t *testing.T) { function TestLegalCommentsLinked (line 3459) | func TestLegalCommentsLinked(t *testing.T) { function TestLegalCommentsExternal (line 3496) | func TestLegalCommentsExternal(t *testing.T) { function TestLegalCommentsModifyIndent (line 3533) | func TestLegalCommentsModifyIndent(t *testing.T) { function TestLegalCommentsAvoidSlashTagInline (line 3561) | func TestLegalCommentsAvoidSlashTagInline(t *testing.T) { function TestLegalCommentsAvoidSlashTagEndOfFile (line 3582) | func TestLegalCommentsAvoidSlashTagEndOfFile(t *testing.T) { function TestLegalCommentsAvoidSlashTagExternal (line 3603) | func TestLegalCommentsAvoidSlashTagExternal(t *testing.T) { function TestLegalCommentsManyEndOfFile (line 3624) | func TestLegalCommentsManyEndOfFile(t *testing.T) { function TestLegalCommentsEscapeSlashScriptAndStyleEndOfFile (line 3724) | func TestLegalCommentsEscapeSlashScriptAndStyleEndOfFile(t *testing.T) { function TestLegalCommentsEscapeSlashScriptAndStyleExternal (line 3743) | func TestLegalCommentsEscapeSlashScriptAndStyleExternal(t *testing.T) { function TestLegalCommentsNoEscapeSlashScriptEndOfFile (line 3762) | func TestLegalCommentsNoEscapeSlashScriptEndOfFile(t *testing.T) { function TestLegalCommentsNoEscapeSlashStyleEndOfFile (line 3782) | func TestLegalCommentsNoEscapeSlashStyleEndOfFile(t *testing.T) { function TestLegalCommentsManyLinked (line 3802) | func TestLegalCommentsManyLinked(t *testing.T) { function TestLegalCommentsMergeDuplicatesIssue4139 (line 3875) | func TestLegalCommentsMergeDuplicatesIssue4139(t *testing.T) { function TestIIFE_ES5 (line 3928) | func TestIIFE_ES5(t *testing.T) { function TestOutputExtensionRemappingFile (line 3945) | func TestOutputExtensionRemappingFile(t *testing.T) { function TestOutputExtensionRemappingDir (line 3961) | func TestOutputExtensionRemappingDir(t *testing.T) { function TestTopLevelAwaitIIFE (line 3977) | func TestTopLevelAwaitIIFE(t *testing.T) { function TestTopLevelAwaitIIFEDeadBranch (line 3997) | func TestTopLevelAwaitIIFEDeadBranch(t *testing.T) { function TestTopLevelAwaitCJS (line 4014) | func TestTopLevelAwaitCJS(t *testing.T) { function TestTopLevelAwaitCJSDeadBranch (line 4034) | func TestTopLevelAwaitCJSDeadBranch(t *testing.T) { function TestTopLevelAwaitESM (line 4051) | func TestTopLevelAwaitESM(t *testing.T) { function TestTopLevelAwaitESMDeadBranch (line 4068) | func TestTopLevelAwaitESMDeadBranch(t *testing.T) { function TestTopLevelAwaitNoBundle (line 4085) | func TestTopLevelAwaitNoBundle(t *testing.T) { function TestTopLevelAwaitNoBundleDeadBranch (line 4100) | func TestTopLevelAwaitNoBundleDeadBranch(t *testing.T) { function TestTopLevelAwaitNoBundleESM (line 4115) | func TestTopLevelAwaitNoBundleESM(t *testing.T) { function TestTopLevelAwaitNoBundleESMDeadBranch (line 4132) | func TestTopLevelAwaitNoBundleESMDeadBranch(t *testing.T) { function TestTopLevelAwaitNoBundleCommonJS (line 4149) | func TestTopLevelAwaitNoBundleCommonJS(t *testing.T) { function TestTopLevelAwaitNoBundleCommonJSDeadBranch (line 4169) | func TestTopLevelAwaitNoBundleCommonJSDeadBranch(t *testing.T) { function TestTopLevelAwaitNoBundleIIFE (line 4186) | func TestTopLevelAwaitNoBundleIIFE(t *testing.T) { function TestTopLevelAwaitNoBundleIIFEDeadBranch (line 4206) | func TestTopLevelAwaitNoBundleIIFEDeadBranch(t *testing.T) { function TestTopLevelAwaitForbiddenRequire (line 4223) | func TestTopLevelAwaitForbiddenRequire(t *testing.T) { function TestTopLevelAwaitForbiddenRequireDeadBranch (line 4266) | func TestTopLevelAwaitForbiddenRequireDeadBranch(t *testing.T) { function TestTopLevelAwaitAllowedImportWithoutSplitting (line 4295) | func TestTopLevelAwaitAllowedImportWithoutSplitting(t *testing.T) { function TestTopLevelAwaitAllowedImportWithSplitting (line 4324) | func TestTopLevelAwaitAllowedImportWithSplitting(t *testing.T) { function TestAssignToImport (line 4354) | func TestAssignToImport(t *testing.T) { function TestAssignToImportNoBundle (line 4448) | func TestAssignToImportNoBundle(t *testing.T) { function TestMinifyArguments (line 4531) | func TestMinifyArguments(t *testing.T) { function TestWarningsInsideNodeModules (line 4559) | func TestWarningsInsideNodeModules(t *testing.T) { function TestRequireResolve (line 4662) | func TestRequireResolve(t *testing.T) { function TestInjectMissing (line 4716) | func TestInjectMissing(t *testing.T) { function TestInjectDuplicate (line 4749) | func TestInjectDuplicate(t *testing.T) { function TestInject (line 4767) | func TestInject(t *testing.T) { function TestInjectNoBundle (line 4867) | func TestInjectNoBundle(t *testing.T) { function TestInjectJSX (line 4961) | func TestInjectJSX(t *testing.T) { function TestInjectJSXDotNames (line 4998) | func TestInjectJSXDotNames(t *testing.T) { function TestInjectImportTS (line 5024) | func TestInjectImportTS(t *testing.T) { function TestInjectImportOrder (line 5051) | func TestInjectImportOrder(t *testing.T) { function TestInjectAssign (line 5086) | func TestInjectAssign(t *testing.T) { function TestInjectWithDefine (line 5125) | func TestInjectWithDefine(t *testing.T) { function TestOutbase (line 5174) | func TestOutbase(t *testing.T) { function TestAvoidTDZ (line 5193) | func TestAvoidTDZ(t *testing.T) { function TestAvoidTDZNoBundle (line 5214) | func TestAvoidTDZNoBundle(t *testing.T) { function TestDefineImportMeta (line 5235) | func TestDefineImportMeta(t *testing.T) { function TestDefineImportMetaES5 (line 5282) | func TestDefineImportMetaES5(t *testing.T) { function TestInjectImportMeta (line 5320) | func TestInjectImportMeta(t *testing.T) { function TestDefineThis (line 5357) | func TestDefineThis(t *testing.T) { function TestDefineOptionalChain (line 5426) | func TestDefineOptionalChain(t *testing.T) { function TestDefineOptionalChainLowered (line 5460) | func TestDefineOptionalChainLowered(t *testing.T) { function TestDefineOptionalChainPanicIssue3551 (line 5496) | func TestDefineOptionalChainPanicIssue3551(t *testing.T) { function TestDefineInfiniteLoopIssue2407 (line 5556) | func TestDefineInfiniteLoopIssue2407(t *testing.T) { function TestDefineAssignWarning (line 5599) | func TestDefineAssignWarning(t *testing.T) { function TestKeepNamesAllForms (line 5674) | func TestKeepNamesAllForms(t *testing.T) { function TestKeepNamesTreeShaking (line 5757) | func TestKeepNamesTreeShaking(t *testing.T) { function TestKeepNamesClassStaticName (line 5788) | func TestKeepNamesClassStaticName(t *testing.T) { function TestCharFreqIgnoreComments (line 5823) | func TestCharFreqIgnoreComments(t *testing.T) { function TestImportRelativeAsPackage (line 5853) | func TestImportRelativeAsPackage(t *testing.T) { function TestForbidConstAssignWhenBundling (line 5878) | func TestForbidConstAssignWhenBundling(t *testing.T) { function TestForbidConstAssignWhenLoweringUsing (line 5905) | func TestForbidConstAssignWhenLoweringUsing(t *testing.T) { function TestConstWithLet (line 5932) | func TestConstWithLet(t *testing.T) { function TestConstWithLetNoBundle (line 5953) | func TestConstWithLetNoBundle(t *testing.T) { function TestConstWithLetNoMangle (line 5974) | func TestConstWithLetNoMangle(t *testing.T) { function TestRequireMainCacheCommonJS (line 5993) | func TestRequireMainCacheCommonJS(t *testing.T) { function TestExternalES6ConvertedToCommonJS (line 6015) | func TestExternalES6ConvertedToCommonJS(t *testing.T) { function TestCallImportNamespaceWarning (line 6057) | func TestCallImportNamespaceWarning(t *testing.T) { function TestJSXThisValueCommonJS (line 6137) | func TestJSXThisValueCommonJS(t *testing.T) { function TestJSXThisValueESM (line 6177) | func TestJSXThisValueESM(t *testing.T) { function TestJSXThisPropertyCommonJS (line 6225) | func TestJSXThisPropertyCommonJS(t *testing.T) { function TestJSXThisPropertyESM (line 6265) | func TestJSXThisPropertyESM(t *testing.T) { function TestJSXImportMetaValue (line 6313) | func TestJSXImportMetaValue(t *testing.T) { function TestJSXImportMetaProperty (line 6363) | func TestJSXImportMetaProperty(t *testing.T) { function TestBundlingFilesOutsideOfOutbase (line 6413) | func TestBundlingFilesOutsideOfOutbase(t *testing.T) { function TestVarRelocatingBundle (line 6508) | func TestVarRelocatingBundle(t *testing.T) { function TestVarRelocatingNoBundle (line 6520) | func TestVarRelocatingNoBundle(t *testing.T) { function TestImportNamespaceThisValue (line 6532) | func TestImportNamespaceThisValue(t *testing.T) { function TestThisUndefinedWarningESM (line 6563) | func TestThisUndefinedWarningESM(t *testing.T) { function TestQuotedProperty (line 6592) | func TestQuotedProperty(t *testing.T) { function TestQuotedPropertyMangle (line 6614) | func TestQuotedPropertyMangle(t *testing.T) { function TestDuplicatePropertyWarning (line 6637) | func TestDuplicatePropertyWarning(t *testing.T) { function TestRequireShimSubstitution (line 6672) | func TestRequireShimSubstitution(t *testing.T) { function TestStrictModeNestedFnDeclKeepNamesVariableInliningIssue1552 (line 6710) | func TestStrictModeNestedFnDeclKeepNamesVariableInliningIssue1552(t *tes... function TestBuiltInNodeModulePrecedence (line 6736) | func TestBuiltInNodeModulePrecedence(t *testing.T) { function TestEntryNamesNoSlashAfterDir (line 6771) | func TestEntryNamesNoSlashAfterDir(t *testing.T) { function TestEntryNamesNonPortableCharacter (line 6795) | func TestEntryNamesNonPortableCharacter(t *testing.T) { function TestEntryNamesChunkNamesExtPlaceholder (line 6815) | func TestEntryNamesChunkNamesExtPlaceholder(t *testing.T) { function TestMinifyIdentifiersImportPathFrequencyAnalysis (line 6847) | func TestMinifyIdentifiersImportPathFrequencyAnalysis(t *testing.T) { function TestToESMWrapperOmission (line 6875) | func TestToESMWrapperOmission(t *testing.T) { function TestNamedFunctionExpressionArgumentCollision (line 6926) | func TestNamedFunctionExpressionArgumentCollision(t *testing.T) { function TestNoWarnCommonJSExportsInESMPassThrough (line 6945) | func TestNoWarnCommonJSExportsInESMPassThrough(t *testing.T) { function TestWarnCommonJSExportsInESMConvert (line 6974) | func TestWarnCommonJSExportsInESMConvert(t *testing.T) { function TestWarnCommonJSExportsInESMBundle (line 7017) | func TestWarnCommonJSExportsInESMBundle(t *testing.T) { function TestMangleProps (line 7057) | func TestMangleProps(t *testing.T) { function TestManglePropsMinify (line 7113) | func TestManglePropsMinify(t *testing.T) { function TestManglePropsKeywordPropertyMinify (line 7173) | func TestManglePropsKeywordPropertyMinify(t *testing.T) { function TestManglePropsOptionalChain (line 7194) | func TestManglePropsOptionalChain(t *testing.T) { function TestManglePropsLoweredOptionalChain (line 7219) | func TestManglePropsLoweredOptionalChain(t *testing.T) { function TestReserveProps (line 7245) | func TestReserveProps(t *testing.T) { function TestManglePropsImportExport (line 7265) | func TestManglePropsImportExport(t *testing.T) { function TestManglePropsImportExportBundled (line 7292) | func TestManglePropsImportExportBundled(t *testing.T) { function TestManglePropsJSXTransform (line 7337) | func TestManglePropsJSXTransform(t *testing.T) { function TestManglePropsJSXPreserve (line 7369) | func TestManglePropsJSXPreserve(t *testing.T) { function TestManglePropsJSXTransformNamespace (line 7394) | func TestManglePropsJSXTransformNamespace(t *testing.T) { function TestManglePropsAvoidCollisions (line 7414) | func TestManglePropsAvoidCollisions(t *testing.T) { function TestManglePropsTypeScriptFeatures (line 7436) | func TestManglePropsTypeScriptFeatures(t *testing.T) { function TestManglePropsShorthand (line 7544) | func TestManglePropsShorthand(t *testing.T) { function TestManglePropsNoShorthand (line 7562) | func TestManglePropsNoShorthand(t *testing.T) { function TestManglePropsLoweredClassFields (line 7581) | func TestManglePropsLoweredClassFields(t *testing.T) { function TestManglePropsSuperCall (line 7606) | func TestManglePropsSuperCall(t *testing.T) { function TestMangleNoQuotedProps (line 7627) | func TestMangleNoQuotedProps(t *testing.T) { function TestMangleNoQuotedPropsMinifySyntax (line 7655) | func TestMangleNoQuotedPropsMinifySyntax(t *testing.T) { function TestMangleQuotedProps (line 7684) | func TestMangleQuotedProps(t *testing.T) { function TestMangleQuotedPropsMinifySyntax (line 7732) | func TestMangleQuotedPropsMinifySyntax(t *testing.T) { function TestPreserveKeyComment (line 7781) | func TestPreserveKeyComment(t *testing.T) { function TestManglePropsKeyComment (line 7798) | func TestManglePropsKeyComment(t *testing.T) { function TestManglePropsKeyCommentMinify (line 7821) | func TestManglePropsKeyCommentMinify(t *testing.T) { function TestIndirectRequireMessage (line 7854) | func TestIndirectRequireMessage(t *testing.T) { function TestAmbiguousReexportMsg (line 7884) | func TestAmbiguousReexportMsg(t *testing.T) { function TestNonDeterminismIssue2537 (line 7910) | func TestNonDeterminismIssue2537(t *testing.T) { function TestMinifiedJSXPreserveWithObjectSpread (line 7946) | func TestMinifiedJSXPreserveWithObjectSpread(t *testing.T) { function TestPackageAlias (line 7984) | func TestPackageAlias(t *testing.T) { function TestPackageAliasMatchLongest (line 8035) | func TestPackageAliasMatchLongest(t *testing.T) { function TestErrorsForAssertTypeJSON (line 8065) | func TestErrorsForAssertTypeJSON(t *testing.T) { function TestOutputForAssertTypeJSON (line 8154) | func TestOutputForAssertTypeJSON(t *testing.T) { function TestExternalPackages (line 8201) | func TestExternalPackages(t *testing.T) { function TestMetafileVariousCases (line 8234) | func TestMetafileVariousCases(t *testing.T) { function TestMetafileNoBundle (line 8299) | func TestMetafileNoBundle(t *testing.T) { function TestMetafileVeryLongExternalPaths (line 8333) | func TestMetafileVeryLongExternalPaths(t *testing.T) { function TestMetafileImportWithTypeJSON (line 8376) | func TestMetafileImportWithTypeJSON(t *testing.T) { function TestCommentPreservation (line 8396) | func TestCommentPreservation(t *testing.T) { function TestCommentPreservationImportAssertions (line 8562) | func TestCommentPreservationImportAssertions(t *testing.T) { function TestCommentPreservationTransformJSX (line 8586) | func TestCommentPreservationTransformJSX(t *testing.T) { function TestCommentPreservationPreserveJSX (line 8622) | func TestCommentPreservationPreserveJSX(t *testing.T) { function TestErrorMessageCrashStdinIssue2913 (line 8661) | func TestErrorMessageCrashStdinIssue2913(t *testing.T) { function TestLineLimitNotMinified (line 8682) | func TestLineLimitNotMinified(t *testing.T) { function TestLineLimitMinified (line 8742) | func TestLineLimitMinified(t *testing.T) { function TestBadImportErrorMessageWithHandlesImportErrorsFlag (line 8783) | func TestBadImportErrorMessageWithHandlesImportErrorsFlag(t *testing.T) { function TestDecoratorPrintingESM (line 8814) | func TestDecoratorPrintingESM(t *testing.T) { function TestDecoratorPrintingCJS (line 8856) | func TestDecoratorPrintingCJS(t *testing.T) { function TestJSXDevSelfEdgeCases (line 8914) | func TestJSXDevSelfEdgeCases(t *testing.T) { function TestObjectLiteralProtoSetterEdgeCases (line 8952) | func TestObjectLiteralProtoSetterEdgeCases(t *testing.T) { function TestObjectLiteralProtoSetterEdgeCasesMinifySyntax (line 9012) | func TestObjectLiteralProtoSetterEdgeCasesMinifySyntax(t *testing.T) { function TestForbidStringImportNamesNoBundle (line 9073) | func TestForbidStringImportNamesNoBundle(t *testing.T) { function TestForbidStringExportNamesNoBundle (line 9095) | func TestForbidStringExportNamesNoBundle(t *testing.T) { function TestForbidStringImportNamesBundle (line 9121) | func TestForbidStringImportNamesBundle(t *testing.T) { function TestForbidStringExportNamesBundle (line 9149) | func TestForbidStringExportNamesBundle(t *testing.T) { function TestInjectWithStringExportNameNoBundle (line 9186) | func TestInjectWithStringExportNameNoBundle(t *testing.T) { function TestInjectWithStringExportNameBundle (line 9208) | func TestInjectWithStringExportNameBundle(t *testing.T) { function TestInjectWithStringReExportNameNoBundle (line 9235) | func TestInjectWithStringReExportNameNoBundle(t *testing.T) { function TestStringExportNamesCommonJS (line 9255) | func TestStringExportNamesCommonJS(t *testing.T) { function TestStringExportNamesIIFE (line 9274) | func TestStringExportNamesIIFE(t *testing.T) { function TestSourceIdentifierNameIndexSingleEntry (line 9294) | func TestSourceIdentifierNameIndexSingleEntry(t *testing.T) { function TestSourceIdentifierNameIndexMultipleEntry (line 9314) | func TestSourceIdentifierNameIndexMultipleEntry(t *testing.T) { function TestResolveExtensionsOrderIssue4053 (line 9342) | func TestResolveExtensionsOrderIssue4053(t *testing.T) { function TestBundleESMWithNestedVarIssue4348 (line 9382) | func TestBundleESMWithNestedVarIssue4348(t *testing.T) { FILE: internal/bundler_tests/bundler_glob_test.go function TestGlobBasicNoBundle (line 13) | func TestGlobBasicNoBundle(t *testing.T) { function TestGlobBasicNoSplitting (line 39) | func TestGlobBasicNoSplitting(t *testing.T) { function TestTSGlobBasicNoSplitting (line 66) | func TestTSGlobBasicNoSplitting(t *testing.T) { function TestGlobBasicSplitting (line 93) | func TestGlobBasicSplitting(t *testing.T) { function TestTSGlobBasicSplitting (line 121) | func TestTSGlobBasicSplitting(t *testing.T) { function TestGlobDirDoesNotExist (line 149) | func TestGlobDirDoesNotExist(t *testing.T) { function TestGlobNoMatches (line 178) | func TestGlobNoMatches(t *testing.T) { function TestGlobEntryPointAbsPath (line 208) | func TestGlobEntryPointAbsPath(t *testing.T) { function TestGlobWildcardSlash (line 223) | func TestGlobWildcardSlash(t *testing.T) { function TestGlobWildcardNoSlash (line 258) | func TestGlobWildcardNoSlash(t *testing.T) { FILE: internal/bundler_tests/bundler_importphase_test.go function TestImportDeferExternalESM (line 13) | func TestImportDeferExternalESM(t *testing.T) { function TestImportDeferExternalCommonJS (line 45) | func TestImportDeferExternalCommonJS(t *testing.T) { function TestImportDeferExternalIIFE (line 84) | func TestImportDeferExternalIIFE(t *testing.T) { function TestImportDeferInternalESM (line 123) | func TestImportDeferInternalESM(t *testing.T) { function TestImportDeferInternalCommonJS (line 157) | func TestImportDeferInternalCommonJS(t *testing.T) { function TestImportDeferInternalIIFE (line 191) | func TestImportDeferInternalIIFE(t *testing.T) { function TestImportSourceExternalESM (line 225) | func TestImportSourceExternalESM(t *testing.T) { function TestImportSourceExternalCommonJS (line 257) | func TestImportSourceExternalCommonJS(t *testing.T) { function TestImportSourceExternalIIFE (line 296) | func TestImportSourceExternalIIFE(t *testing.T) { function TestImportSourceInternalESM (line 335) | func TestImportSourceInternalESM(t *testing.T) { function TestImportSourceInternalCommonJS (line 369) | func TestImportSourceInternalCommonJS(t *testing.T) { function TestImportSourceInternalIIFE (line 403) | func TestImportSourceInternalIIFE(t *testing.T) { FILE: internal/bundler_tests/bundler_importstar_test.go function TestImportStarUnused (line 13) | func TestImportStarUnused(t *testing.T) { function TestImportStarCapture (line 33) | func TestImportStarCapture(t *testing.T) { function TestImportStarNoCapture (line 53) | func TestImportStarNoCapture(t *testing.T) { function TestImportStarExportImportStarUnused (line 73) | func TestImportStarExportImportStarUnused(t *testing.T) { function TestImportStarExportImportStarNoCapture (line 97) | func TestImportStarExportImportStarNoCapture(t *testing.T) { function TestImportStarExportImportStarCapture (line 121) | func TestImportStarExportImportStarCapture(t *testing.T) { function TestImportStarExportStarAsUnused (line 145) | func TestImportStarExportStarAsUnused(t *testing.T) { function TestImportStarExportStarAsNoCapture (line 168) | func TestImportStarExportStarAsNoCapture(t *testing.T) { function TestImportStarExportStarAsCapture (line 191) | func TestImportStarExportStarAsCapture(t *testing.T) { function TestImportStarExportStarUnused (line 214) | func TestImportStarExportStarUnused(t *testing.T) { function TestImportStarExportStarNoCapture (line 237) | func TestImportStarExportStarNoCapture(t *testing.T) { function TestImportStarExportStarCapture (line 260) | func TestImportStarExportStarCapture(t *testing.T) { function TestImportStarCommonJSUnused (line 283) | func TestImportStarCommonJSUnused(t *testing.T) { function TestImportStarCommonJSCapture (line 303) | func TestImportStarCommonJSCapture(t *testing.T) { function TestImportStarCommonJSNoCapture (line 323) | func TestImportStarCommonJSNoCapture(t *testing.T) { function TestImportStarAndCommonJS (line 343) | func TestImportStarAndCommonJS(t *testing.T) { function TestImportStarNoBundleUnused (line 363) | func TestImportStarNoBundleUnused(t *testing.T) { function TestImportStarNoBundleCapture (line 379) | func TestImportStarNoBundleCapture(t *testing.T) { function TestImportStarNoBundleNoCapture (line 395) | func TestImportStarNoBundleNoCapture(t *testing.T) { function TestImportStarMangleNoBundleUnused (line 411) | func TestImportStarMangleNoBundleUnused(t *testing.T) { function TestImportStarMangleNoBundleCapture (line 428) | func TestImportStarMangleNoBundleCapture(t *testing.T) { function TestImportStarMangleNoBundleNoCapture (line 445) | func TestImportStarMangleNoBundleNoCapture(t *testing.T) { function TestImportStarExportStarOmitAmbiguous (line 462) | func TestImportStarExportStarOmitAmbiguous(t *testing.T) { function TestImportExportStarAmbiguousError (line 490) | func TestImportExportStarAmbiguousError(t *testing.T) { function TestImportExportStarAmbiguousWarning (line 522) | func TestImportExportStarAmbiguousWarning(t *testing.T) { function TestReExportStarNameCollisionNotAmbiguousImport (line 554) | func TestReExportStarNameCollisionNotAmbiguousImport(t *testing.T) { function TestReExportStarNameCollisionNotAmbiguousExport (line 583) | func TestReExportStarNameCollisionNotAmbiguousExport(t *testing.T) { function TestReExportStarNameShadowingNotAmbiguous (line 609) | func TestReExportStarNameShadowingNotAmbiguous(t *testing.T) { function TestReExportStarNameShadowingNotAmbiguousReExport (line 633) | func TestReExportStarNameShadowingNotAmbiguousReExport(t *testing.T) { function TestImportStarOfExportStarAs (line 660) | func TestImportStarOfExportStarAs(t *testing.T) { function TestImportOfExportStar (line 682) | func TestImportOfExportStar(t *testing.T) { function TestImportOfExportStarOfImport (line 709) | func TestImportOfExportStarOfImport(t *testing.T) { function TestExportSelfIIFE (line 739) | func TestExportSelfIIFE(t *testing.T) { function TestExportSelfIIFEWithName (line 756) | func TestExportSelfIIFEWithName(t *testing.T) { function TestExportSelfES6 (line 774) | func TestExportSelfES6(t *testing.T) { function TestExportSelfCommonJS (line 791) | func TestExportSelfCommonJS(t *testing.T) { function TestExportSelfCommonJSMinified (line 808) | func TestExportSelfCommonJSMinified(t *testing.T) { function TestImportSelfCommonJS (line 826) | func TestImportSelfCommonJS(t *testing.T) { function TestExportSelfAsNamespaceES6 (line 844) | func TestExportSelfAsNamespaceES6(t *testing.T) { function TestImportExportSelfAsNamespaceES6 (line 861) | func TestImportExportSelfAsNamespaceES6(t *testing.T) { function TestReExportOtherFileExportSelfAsNamespaceES6 (line 879) | func TestReExportOtherFileExportSelfAsNamespaceES6(t *testing.T) { function TestReExportOtherFileImportExportSelfAsNamespaceES6 (line 899) | func TestReExportOtherFileImportExportSelfAsNamespaceES6(t *testing.T) { function TestOtherFileExportSelfAsNamespaceUnusedES6 (line 920) | func TestOtherFileExportSelfAsNamespaceUnusedES6(t *testing.T) { function TestOtherFileImportExportSelfAsNamespaceUnusedES6 (line 940) | func TestOtherFileImportExportSelfAsNamespaceUnusedES6(t *testing.T) { function TestExportSelfAsNamespaceCommonJS (line 961) | func TestExportSelfAsNamespaceCommonJS(t *testing.T) { function TestExportSelfAndRequireSelfCommonJS (line 978) | func TestExportSelfAndRequireSelfCommonJS(t *testing.T) { function TestExportSelfAndImportSelfCommonJS (line 995) | func TestExportSelfAndImportSelfCommonJS(t *testing.T) { function TestExportOtherAsNamespaceCommonJS (line 1013) | func TestExportOtherAsNamespaceCommonJS(t *testing.T) { function TestImportExportOtherAsNamespaceCommonJS (line 1032) | func TestImportExportOtherAsNamespaceCommonJS(t *testing.T) { function TestNamespaceImportMissingES6 (line 1052) | func TestNamespaceImportMissingES6(t *testing.T) { function TestExportOtherCommonJS (line 1073) | func TestExportOtherCommonJS(t *testing.T) { function TestExportOtherNestedCommonJS (line 1092) | func TestExportOtherNestedCommonJS(t *testing.T) { function TestNamespaceImportUnusedMissingES6 (line 1114) | func TestNamespaceImportUnusedMissingES6(t *testing.T) { function TestNamespaceImportMissingCommonJS (line 1135) | func TestNamespaceImportMissingCommonJS(t *testing.T) { function TestNamespaceImportUnusedMissingCommonJS (line 1154) | func TestNamespaceImportUnusedMissingCommonJS(t *testing.T) { function TestReExportNamespaceImportMissingES6 (line 1173) | func TestReExportNamespaceImportMissingES6(t *testing.T) { function TestReExportNamespaceImportUnusedMissingES6 (line 1195) | func TestReExportNamespaceImportUnusedMissingES6(t *testing.T) { function TestNamespaceImportReExportMissingES6 (line 1217) | func TestNamespaceImportReExportMissingES6(t *testing.T) { function TestNamespaceImportReExportUnusedMissingES6 (line 1242) | func TestNamespaceImportReExportUnusedMissingES6(t *testing.T) { function TestNamespaceImportReExportStarMissingES6 (line 1267) | func TestNamespaceImportReExportStarMissingES6(t *testing.T) { function TestNamespaceImportReExportStarUnusedMissingES6 (line 1291) | func TestNamespaceImportReExportStarUnusedMissingES6(t *testing.T) { function TestExportStarDefaultExportCommonJS (line 1315) | func TestExportStarDefaultExportCommonJS(t *testing.T) { function TestIssue176 (line 1335) | func TestIssue176(t *testing.T) { function TestReExportStarExternalIIFE (line 1360) | func TestReExportStarExternalIIFE(t *testing.T) { function TestReExportStarExternalES6 (line 1382) | func TestReExportStarExternalES6(t *testing.T) { function TestReExportStarExternalCommonJS (line 1403) | func TestReExportStarExternalCommonJS(t *testing.T) { function TestReExportStarIIFENoBundle (line 1424) | func TestReExportStarIIFENoBundle(t *testing.T) { function TestReExportStarES6NoBundle (line 1441) | func TestReExportStarES6NoBundle(t *testing.T) { function TestReExportStarCommonJSNoBundle (line 1457) | func TestReExportStarCommonJSNoBundle(t *testing.T) { function TestReExportStarAsExternalIIFE (line 1473) | func TestReExportStarAsExternalIIFE(t *testing.T) { function TestReExportStarAsExternalES6 (line 1495) | func TestReExportStarAsExternalES6(t *testing.T) { function TestReExportStarAsExternalCommonJS (line 1516) | func TestReExportStarAsExternalCommonJS(t *testing.T) { function TestReExportStarAsIIFENoBundle (line 1537) | func TestReExportStarAsIIFENoBundle(t *testing.T) { function TestReExportStarAsES6NoBundle (line 1554) | func TestReExportStarAsES6NoBundle(t *testing.T) { function TestReExportStarAsCommonJSNoBundle (line 1570) | func TestReExportStarAsCommonJSNoBundle(t *testing.T) { function TestImportDefaultNamespaceComboIssue446 (line 1586) | func TestImportDefaultNamespaceComboIssue446(t *testing.T) { function TestImportDefaultNamespaceComboNoDefault (line 1670) | func TestImportDefaultNamespaceComboNoDefault(t *testing.T) { function TestImportNamespaceUndefinedPropertyEmptyFile (line 1714) | func TestImportNamespaceUndefinedPropertyEmptyFile(t *testing.T) { function TestImportNamespaceUndefinedPropertySideEffectFreeFile (line 1763) | func TestImportNamespaceUndefinedPropertySideEffectFreeFile(t *testing.T) { function TestReExportStarEntryPointAndInnerFile (line 1814) | func TestReExportStarEntryPointAndInnerFile(t *testing.T) { FILE: internal/bundler_tests/bundler_importstar_ts_test.go function TestTSImportStarUnused (line 13) | func TestTSImportStarUnused(t *testing.T) { function TestTSImportStarCapture (line 33) | func TestTSImportStarCapture(t *testing.T) { function TestTSImportStarNoCapture (line 53) | func TestTSImportStarNoCapture(t *testing.T) { function TestTSImportStarExportImportStarUnused (line 73) | func TestTSImportStarExportImportStarUnused(t *testing.T) { function TestTSImportStarExportImportStarNoCapture (line 97) | func TestTSImportStarExportImportStarNoCapture(t *testing.T) { function TestTSImportStarExportImportStarCapture (line 121) | func TestTSImportStarExportImportStarCapture(t *testing.T) { function TestTSImportStarExportStarAsUnused (line 145) | func TestTSImportStarExportStarAsUnused(t *testing.T) { function TestTSImportStarExportStarAsNoCapture (line 168) | func TestTSImportStarExportStarAsNoCapture(t *testing.T) { function TestTSImportStarExportStarAsCapture (line 191) | func TestTSImportStarExportStarAsCapture(t *testing.T) { function TestTSImportStarExportStarUnused (line 214) | func TestTSImportStarExportStarUnused(t *testing.T) { function TestTSImportStarExportStarNoCapture (line 237) | func TestTSImportStarExportStarNoCapture(t *testing.T) { function TestTSImportStarExportStarCapture (line 260) | func TestTSImportStarExportStarCapture(t *testing.T) { function TestTSImportStarCommonJSUnused (line 283) | func TestTSImportStarCommonJSUnused(t *testing.T) { function TestTSImportStarCommonJSCapture (line 303) | func TestTSImportStarCommonJSCapture(t *testing.T) { function TestTSImportStarCommonJSNoCapture (line 323) | func TestTSImportStarCommonJSNoCapture(t *testing.T) { function TestTSImportStarAndCommonJS (line 343) | func TestTSImportStarAndCommonJS(t *testing.T) { function TestTSImportStarNoBundleUnused (line 363) | func TestTSImportStarNoBundleUnused(t *testing.T) { function TestTSImportStarNoBundleCapture (line 379) | func TestTSImportStarNoBundleCapture(t *testing.T) { function TestTSImportStarNoBundleNoCapture (line 395) | func TestTSImportStarNoBundleNoCapture(t *testing.T) { function TestTSImportStarMangleNoBundleUnused (line 411) | func TestTSImportStarMangleNoBundleUnused(t *testing.T) { function TestTSImportStarMangleNoBundleCapture (line 428) | func TestTSImportStarMangleNoBundleCapture(t *testing.T) { function TestTSImportStarMangleNoBundleNoCapture (line 445) | func TestTSImportStarMangleNoBundleNoCapture(t *testing.T) { function TestTSReExportTypeOnlyFileES6 (line 462) | func TestTSReExportTypeOnlyFileES6(t *testing.T) { FILE: internal/bundler_tests/bundler_loader_test.go function TestLoaderFile (line 15) | func TestLoaderFile(t *testing.T) { function TestLoaderFileMultipleNoCollision (line 35) | func TestLoaderFileMultipleNoCollision(t *testing.T) { function TestJSXSyntaxInJSWithJSXLoader (line 61) | func TestJSXSyntaxInJSWithJSXLoader(t *testing.T) { function TestJSXPreserveCapitalLetter (line 79) | func TestJSXPreserveCapitalLetter(t *testing.T) { function TestJSXPreserveCapitalLetterMinify (line 102) | func TestJSXPreserveCapitalLetterMinify(t *testing.T) { function TestJSXPreserveCapitalLetterMinifyNested (line 126) | func TestJSXPreserveCapitalLetterMinifyNested(t *testing.T) { function TestRequireCustomExtensionString (line 149) | func TestRequireCustomExtensionString(t *testing.T) { function TestRequireCustomExtensionBase64 (line 169) | func TestRequireCustomExtensionBase64(t *testing.T) { function TestRequireCustomExtensionDataURL (line 189) | func TestRequireCustomExtensionDataURL(t *testing.T) { function TestRequireCustomExtensionPreferLongest (line 209) | func TestRequireCustomExtensionPreferLongest(t *testing.T) { function TestAutoDetectMimeTypeFromExtension (line 231) | func TestAutoDetectMimeTypeFromExtension(t *testing.T) { function TestLoaderJSONCommonJSAndES6 (line 251) | func TestLoaderJSONCommonJSAndES6(t *testing.T) { function TestLoaderJSONInvalidIdentifierES6 (line 276) | func TestLoaderJSONInvalidIdentifierES6(t *testing.T) { function TestLoaderJSONMissingES6 (line 295) | func TestLoaderJSONMissingES6(t *testing.T) { function TestLoaderTextCommonJSAndES6 (line 313) | func TestLoaderTextCommonJSAndES6(t *testing.T) { function TestLoaderBase64CommonJSAndES6 (line 332) | func TestLoaderBase64CommonJSAndES6(t *testing.T) { function TestLoaderDataURLCommonJSAndES6 (line 355) | func TestLoaderDataURLCommonJSAndES6(t *testing.T) { function TestLoaderFileCommonJSAndES6 (line 378) | func TestLoaderFileCommonJSAndES6(t *testing.T) { function TestLoaderFileRelativePathJS (line 401) | func TestLoaderFileRelativePathJS(t *testing.T) { function TestLoaderFileRelativePathCSS (line 423) | func TestLoaderFileRelativePathCSS(t *testing.T) { function TestLoaderFileRelativePathAssetNamesJS (line 446) | func TestLoaderFileRelativePathAssetNamesJS(t *testing.T) { function TestLoaderFileExtPathAssetNamesJS (line 473) | func TestLoaderFileExtPathAssetNamesJS(t *testing.T) { function TestLoaderFileRelativePathAssetNamesCSS (line 503) | func TestLoaderFileRelativePathAssetNamesCSS(t *testing.T) { function TestLoaderFilePublicPathJS (line 531) | func TestLoaderFilePublicPathJS(t *testing.T) { function TestLoaderFilePublicPathCSS (line 554) | func TestLoaderFilePublicPathCSS(t *testing.T) { function TestLoaderFilePublicPathAssetNamesJS (line 578) | func TestLoaderFilePublicPathAssetNamesJS(t *testing.T) { function TestLoaderFilePublicPathAssetNamesCSS (line 606) | func TestLoaderFilePublicPathAssetNamesCSS(t *testing.T) { function TestLoaderFileOneSourceTwoDifferentOutputPathsJS (line 635) | func TestLoaderFileOneSourceTwoDifferentOutputPathsJS(t *testing.T) { function TestLoaderFileOneSourceTwoDifferentOutputPathsCSS (line 666) | func TestLoaderFileOneSourceTwoDifferentOutputPathsCSS(t *testing.T) { function TestLoaderJSONNoBundle (line 698) | func TestLoaderJSONNoBundle(t *testing.T) { function TestLoaderJSONNoBundleES6 (line 710) | func TestLoaderJSONNoBundleES6(t *testing.T) { function TestLoaderJSONNoBundleES6ArbitraryModuleNamespaceNames (line 725) | func TestLoaderJSONNoBundleES6ArbitraryModuleNamespaceNames(t *testing.T) { function TestLoaderJSONNoBundleCommonJS (line 739) | func TestLoaderJSONNoBundleCommonJS(t *testing.T) { function TestLoaderJSONNoBundleIIFE (line 753) | func TestLoaderJSONNoBundleIIFE(t *testing.T) { function TestLoaderJSONSharedWithMultipleEntriesIssue413 (line 767) | func TestLoaderJSONSharedWithMultipleEntriesIssue413(t *testing.T) { function TestLoaderFileWithQueryParameter (line 789) | func TestLoaderFileWithQueryParameter(t *testing.T) { function TestLoaderFromExtensionWithQueryParameter (line 812) | func TestLoaderFromExtensionWithQueryParameter(t *testing.T) { function TestLoaderDataURLTextCSS (line 834) | func TestLoaderDataURLTextCSS(t *testing.T) { function TestLoaderDataURLTextCSSCannotImport (line 852) | func TestLoaderDataURLTextCSSCannotImport(t *testing.T) { function TestLoaderDataURLTextJavaScript (line 872) | func TestLoaderDataURLTextJavaScript(t *testing.T) { function TestLoaderDataURLTextJavaScriptCannotImport (line 890) | func TestLoaderDataURLTextJavaScriptCannotImport(t *testing.T) { function TestLoaderDataURLTextJavaScriptPlusCharacter (line 911) | func TestLoaderDataURLTextJavaScriptPlusCharacter(t *testing.T) { function TestLoaderDataURLApplicationJSON (line 926) | func TestLoaderDataURLApplicationJSON(t *testing.T) { function TestLoaderDataURLUnknownMIME (line 947) | func TestLoaderDataURLUnknownMIME(t *testing.T) { function TestLoaderDataURLExtensionBasedMIME (line 964) | func TestLoaderDataURLExtensionBasedMIME(t *testing.T) { function TestLoaderDataURLBase64VsPercentEncoding (line 1046) | func TestLoaderDataURLBase64VsPercentEncoding(t *testing.T) { function TestLoaderDataURLBase64InvalidUTF8 (line 1078) | func TestLoaderDataURLBase64InvalidUTF8(t *testing.T) { function TestLoaderDataURLEscapePercents (line 1099) | func TestLoaderDataURLEscapePercents(t *testing.T) { function TestLoaderCopyWithBundleFromJS (line 1124) | func TestLoaderCopyWithBundleFromJS(t *testing.T) { function TestLoaderCopyWithBundleFromCSS (line 1146) | func TestLoaderCopyWithBundleFromCSS(t *testing.T) { function TestLoaderCopyWithBundleEntryPoint (line 1169) | func TestLoaderCopyWithBundleEntryPoint(t *testing.T) { function TestLoaderCopyWithTransform (line 1202) | func TestLoaderCopyWithTransform(t *testing.T) { function TestLoaderCopyWithFormat (line 1224) | func TestLoaderCopyWithFormat(t *testing.T) { function TestJSXAutomaticNoNameCollision (line 1247) | func TestJSXAutomaticNoNameCollision(t *testing.T) { function TestAssertTypeJSONWrongLoader (line 1267) | func TestAssertTypeJSONWrongLoader(t *testing.T) { function TestWithTypeJSONOverrideLoader (line 1291) | func TestWithTypeJSONOverrideLoader(t *testing.T) { function TestWithTypeJSONOverrideLoaderGlob (line 1308) | func TestWithTypeJSONOverrideLoaderGlob(t *testing.T) { function TestWithTypeBytesOverrideLoader (line 1324) | func TestWithTypeBytesOverrideLoader(t *testing.T) { function TestWithTypeBytesOverrideLoaderGlob (line 1341) | func TestWithTypeBytesOverrideLoaderGlob(t *testing.T) { function TestWithBadType (line 1357) | func TestWithBadType(t *testing.T) { function TestWithBadAttribute (line 1377) | func TestWithBadAttribute(t *testing.T) { function TestEmptyLoaderJS (line 1397) | func TestEmptyLoaderJS(t *testing.T) { function TestEmptyLoaderCSS (line 1428) | func TestEmptyLoaderCSS(t *testing.T) { function TestExtensionlessLoaderJS (line 1452) | func TestExtensionlessLoaderJS(t *testing.T) { function TestExtensionlessLoaderCSS (line 1472) | func TestExtensionlessLoaderCSS(t *testing.T) { function TestLoaderCopyEntryPointAdvanced (line 1493) | func TestLoaderCopyEntryPointAdvanced(t *testing.T) { function TestLoaderCopyUseIndex (line 1530) | func TestLoaderCopyUseIndex(t *testing.T) { function TestLoaderCopyExplicitOutputFile (line 1549) | func TestLoaderCopyExplicitOutputFile(t *testing.T) { function TestLoaderCopyStartsWithDotAbsPath (line 1565) | func TestLoaderCopyStartsWithDotAbsPath(t *testing.T) { function TestLoaderCopyStartsWithDotRelPath (line 1589) | func TestLoaderCopyStartsWithDotRelPath(t *testing.T) { function TestLoaderCopyWithInjectedFileNoBundle (line 1614) | func TestLoaderCopyWithInjectedFileNoBundle(t *testing.T) { function TestLoaderCopyWithInjectedFileBundle (line 1634) | func TestLoaderCopyWithInjectedFileBundle(t *testing.T) { function TestLoaderBundleWithImportAttributes (line 1653) | func TestLoaderBundleWithImportAttributes(t *testing.T) { function TestLoaderBundleWithUnknownImportAttributesAndJSLoader (line 1672) | func TestLoaderBundleWithUnknownImportAttributesAndJSLoader(t *testing.T) { function TestLoaderBundleWithUnknownImportAttributesAndCopyLoader (line 1698) | func TestLoaderBundleWithUnknownImportAttributesAndCopyLoader(t *testing... function TestLoaderBundleWithTypeJSONOnlyDefaultExport (line 1721) | func TestLoaderBundleWithTypeJSONOnlyDefaultExport(t *testing.T) { function TestLoaderJSONPrototype (line 1740) | func TestLoaderJSONPrototype(t *testing.T) { function TestLoaderJSONPrototypeES5 (line 1761) | func TestLoaderJSONPrototypeES5(t *testing.T) { function TestLoaderJSONWithBigInt (line 1783) | func TestLoaderJSONWithBigInt(t *testing.T) { function TestLoaderTextUTF8BOM (line 1804) | func TestLoaderTextUTF8BOM(t *testing.T) { function TestLoaderInlineSourceMapAbsolutePathIssue4075Unix (line 1824) | func TestLoaderInlineSourceMapAbsolutePathIssue4075Unix(t *testing.T) { function TestLoaderInlineSourceMapAbsolutePathIssue4075Windows (line 1867) | func TestLoaderInlineSourceMapAbsolutePathIssue4075Windows(t *testing.T) { function TestLoaderDataURLHashSuffixIssue4370 (line 1910) | func TestLoaderDataURLHashSuffixIssue4370(t *testing.T) { FILE: internal/bundler_tests/bundler_lower_test.go function TestLowerOptionalCatchNameCollisionNoBundle (line 18) | func TestLowerOptionalCatchNameCollisionNoBundle(t *testing.T) { function TestLowerObjectSpreadNoBundle (line 35) | func TestLowerObjectSpreadNoBundle(t *testing.T) { function TestLowerExponentiationOperatorNoBundle (line 63) | func TestLowerExponentiationOperatorNoBundle(t *testing.T) { function TestLowerPrivateFieldAssignments2015NoBundle (line 108) | func TestLowerPrivateFieldAssignments2015NoBundle(t *testing.T) { function TestLowerPrivateFieldAssignments2019NoBundle (line 149) | func TestLowerPrivateFieldAssignments2019NoBundle(t *testing.T) { function TestLowerPrivateFieldAssignments2020NoBundle (line 190) | func TestLowerPrivateFieldAssignments2020NoBundle(t *testing.T) { function TestLowerPrivateFieldAssignmentsNextNoBundle (line 231) | func TestLowerPrivateFieldAssignmentsNextNoBundle(t *testing.T) { function TestLowerPrivateFieldOptionalChain2019NoBundle (line 271) | func TestLowerPrivateFieldOptionalChain2019NoBundle(t *testing.T) { function TestLowerPrivateFieldOptionalChain2020NoBundle (line 293) | func TestLowerPrivateFieldOptionalChain2020NoBundle(t *testing.T) { function TestLowerPrivateFieldOptionalChainNextNoBundle (line 315) | func TestLowerPrivateFieldOptionalChainNextNoBundle(t *testing.T) { function TestTSLowerPrivateFieldOptionalChain2015NoBundle (line 336) | func TestTSLowerPrivateFieldOptionalChain2015NoBundle(t *testing.T) { function TestTSLowerPrivateStaticMembers2015NoBundle (line 358) | func TestTSLowerPrivateStaticMembers2015NoBundle(t *testing.T) { function TestTSLowerPrivateFieldAndMethodAvoidNameCollision2015 (line 383) | func TestTSLowerPrivateFieldAndMethodAvoidNameCollision2015(t *testing.T) { function TestLowerPrivateGetterSetter2015 (line 404) | func TestLowerPrivateGetterSetter2015(t *testing.T) { function TestLowerPrivateGetterSetter2019 (line 455) | func TestLowerPrivateGetterSetter2019(t *testing.T) { function TestLowerPrivateGetterSetter2020 (line 506) | func TestLowerPrivateGetterSetter2020(t *testing.T) { function TestLowerPrivateGetterSetterNext (line 557) | func TestLowerPrivateGetterSetterNext(t *testing.T) { function TestLowerPrivateMethod2019 (line 607) | func TestLowerPrivateMethod2019(t *testing.T) { function TestLowerPrivateMethod2020 (line 649) | func TestLowerPrivateMethod2020(t *testing.T) { function TestLowerPrivateMethodNext (line 691) | func TestLowerPrivateMethodNext(t *testing.T) { function TestLowerPrivateClassExpr2020NoBundle (line 732) | func TestLowerPrivateClassExpr2020NoBundle(t *testing.T) { function TestLowerPrivateMethodWithModifiers2020 (line 756) | func TestLowerPrivateMethodWithModifiers2020(t *testing.T) { function TestLowerAsync2016NoBundle (line 780) | func TestLowerAsync2016NoBundle(t *testing.T) { function TestLowerAsync2017NoBundle (line 825) | func TestLowerAsync2017NoBundle(t *testing.T) { function TestLowerAsyncThis2016CommonJS (line 858) | func TestLowerAsyncThis2016CommonJS(t *testing.T) { function TestLowerAsyncThis2016ES6 (line 874) | func TestLowerAsyncThis2016ES6(t *testing.T) { function TestLowerAsyncES5 (line 898) | func TestLowerAsyncES5(t *testing.T) { function TestLowerAsyncSuperES2017NoBundle (line 935) | func TestLowerAsyncSuperES2017NoBundle(t *testing.T) { function TestLowerAsyncSuperES2016NoBundle (line 1011) | func TestLowerAsyncSuperES2016NoBundle(t *testing.T) { function TestLowerStaticAsyncSuperES2021NoBundle (line 1087) | func TestLowerStaticAsyncSuperES2021NoBundle(t *testing.T) { function TestLowerStaticAsyncSuperES2016NoBundle (line 1153) | func TestLowerStaticAsyncSuperES2016NoBundle(t *testing.T) { function TestLowerStaticSuperES2021NoBundle (line 1219) | func TestLowerStaticSuperES2021NoBundle(t *testing.T) { function TestLowerStaticSuperES2016NoBundle (line 1271) | func TestLowerStaticSuperES2016NoBundle(t *testing.T) { function TestLowerAsyncArrowSuperES2016 (line 1323) | func TestLowerAsyncArrowSuperES2016(t *testing.T) { function TestLowerAsyncArrowSuperSetterES2016 (line 1368) | func TestLowerAsyncArrowSuperSetterES2016(t *testing.T) { function TestLowerStaticAsyncArrowSuperES2016 (line 1413) | func TestLowerStaticAsyncArrowSuperES2016(t *testing.T) { function TestLowerStaticAsyncArrowSuperSetterES2016 (line 1458) | func TestLowerStaticAsyncArrowSuperSetterES2016(t *testing.T) { function TestLowerPrivateSuperES2022 (line 1503) | func TestLowerPrivateSuperES2022(t *testing.T) { function TestLowerPrivateSuperES2021 (line 1534) | func TestLowerPrivateSuperES2021(t *testing.T) { function TestLowerPrivateSuperStaticBundleIssue2158 (line 1566) | func TestLowerPrivateSuperStaticBundleIssue2158(t *testing.T) { function TestLowerClassField2020NoBundle (line 1587) | func TestLowerClassField2020NoBundle(t *testing.T) { function TestLowerClassFieldNextNoBundle (line 1611) | func TestLowerClassFieldNextNoBundle(t *testing.T) { function TestTSLowerClassField2020NoBundle (line 1634) | func TestTSLowerClassField2020NoBundle(t *testing.T) { function TestTSLowerClassPrivateFieldNextNoBundle (line 1663) | func TestTSLowerClassPrivateFieldNextNoBundle(t *testing.T) { function TestLowerClassFieldStrictTsconfigJson2020 (line 1691) | func TestLowerClassFieldStrictTsconfigJson2020(t *testing.T) { function TestTSLowerClassFieldStrictTsconfigJson2020 (line 1733) | func TestTSLowerClassFieldStrictTsconfigJson2020(t *testing.T) { function TestTSLowerObjectRest2017NoBundle (line 1775) | func TestTSLowerObjectRest2017NoBundle(t *testing.T) { function TestTSLowerObjectRest2018NoBundle (line 1823) | func TestTSLowerObjectRest2018NoBundle(t *testing.T) { function TestClassSuperThisIssue242NoBundle (line 1871) | func TestClassSuperThisIssue242NoBundle(t *testing.T) { function TestLowerExportStarAsNameCollisionNoBundle (line 1897) | func TestLowerExportStarAsNameCollisionNoBundle(t *testing.T) { function TestLowerExportStarAsNameCollision (line 1914) | func TestLowerExportStarAsNameCollision(t *testing.T) { function TestLowerStrictModeSyntax (line 1945) | func TestLowerStrictModeSyntax(t *testing.T) { function TestLowerForbidStrictModeSyntax (line 1966) | func TestLowerForbidStrictModeSyntax(t *testing.T) { function TestLowerPrivateClassFieldOrder (line 2001) | func TestLowerPrivateClassFieldOrder(t *testing.T) { function TestLowerPrivateClassMethodOrder (line 2021) | func TestLowerPrivateClassMethodOrder(t *testing.T) { function TestLowerPrivateClassAccessorOrder (line 2041) | func TestLowerPrivateClassAccessorOrder(t *testing.T) { function TestLowerPrivateClassStaticFieldOrder (line 2061) | func TestLowerPrivateClassStaticFieldOrder(t *testing.T) { function TestLowerPrivateClassStaticMethodOrder (line 2087) | func TestLowerPrivateClassStaticMethodOrder(t *testing.T) { function TestLowerPrivateClassStaticAccessorOrder (line 2113) | func TestLowerPrivateClassStaticAccessorOrder(t *testing.T) { function TestLowerPrivateClassBrandCheckUnsupported (line 2139) | func TestLowerPrivateClassBrandCheckUnsupported(t *testing.T) { function TestLowerPrivateClassBrandCheckSupported (line 2165) | func TestLowerPrivateClassBrandCheckSupported(t *testing.T) { function TestLowerTemplateObject (line 2190) | func TestLowerTemplateObject(t *testing.T) { function TestLowerPrivateClassFieldStaticIssue1424 (line 2218) | func TestLowerPrivateClassFieldStaticIssue1424(t *testing.T) { function TestLowerNullishCoalescingAssignmentIssue1493 (line 2241) | func TestLowerNullishCoalescingAssignmentIssue1493(t *testing.T) { function TestStaticClassBlockESNext (line 2262) | func TestStaticClassBlockESNext(t *testing.T) { function TestStaticClassBlockES2021 (line 2293) | func TestStaticClassBlockES2021(t *testing.T) { function TestLowerRegExpNameCollision (line 2325) | func TestLowerRegExpNameCollision(t *testing.T) { function TestLowerForAwait2017 (line 2343) | func TestLowerForAwait2017(t *testing.T) { function TestLowerForAwait2015 (line 2366) | func TestLowerForAwait2015(t *testing.T) { function TestLowerNestedFunctionDirectEval (line 2389) | func TestLowerNestedFunctionDirectEval(t *testing.T) { function TestJavaScriptDecoratorsESNext (line 2418) | func TestJavaScriptDecoratorsESNext(t *testing.T) { function TestJavaScriptAutoAccessorESNext (line 2442) | func TestJavaScriptAutoAccessorESNext(t *testing.T) { function TestJavaScriptAutoAccessorES2022 (line 2509) | func TestJavaScriptAutoAccessorES2022(t *testing.T) { function TestJavaScriptAutoAccessorES2021 (line 2577) | func TestJavaScriptAutoAccessorES2021(t *testing.T) { function TestLowerUsing (line 2645) | func TestLowerUsing(t *testing.T) { function TestLowerUsingUnsupportedAsync (line 2709) | func TestLowerUsingUnsupportedAsync(t *testing.T) { function TestLowerUsingUnsupportedUsingAndAsync (line 2758) | func TestLowerUsingUnsupportedUsingAndAsync(t *testing.T) { function TestLowerUsingHoisting (line 2807) | func TestLowerUsingHoisting(t *testing.T) { function TestLowerUsingInsideTSNamespace (line 2978) | func TestLowerUsingInsideTSNamespace(t *testing.T) { function TestLowerAsyncGenerator (line 2998) | func TestLowerAsyncGenerator(t *testing.T) { function TestLowerAsyncGeneratorNoAwait (line 3058) | func TestLowerAsyncGeneratorNoAwait(t *testing.T) { function TestJavaScriptDecoratorsBundleIssue3768 (line 3119) | func TestJavaScriptDecoratorsBundleIssue3768(t *testing.T) { function TestForAwaitWithOptionalCatchIssue4378 (line 3148) | func TestForAwaitWithOptionalCatchIssue4378(t *testing.T) { FILE: internal/bundler_tests/bundler_packagejson_test.go function TestPackageJsonMain (line 13) | func TestPackageJsonMain(t *testing.T) { function TestPackageJsonBadMain (line 39) | func TestPackageJsonBadMain(t *testing.T) { function TestPackageJsonSyntaxErrorComment (line 65) | func TestPackageJsonSyntaxErrorComment(t *testing.T) { function TestPackageJsonSyntaxErrorTrailingComma (line 94) | func TestPackageJsonSyntaxErrorTrailingComma(t *testing.T) { function TestPackageJsonModule (line 123) | func TestPackageJsonModule(t *testing.T) { function TestPackageJsonBrowserString (line 155) | func TestPackageJsonBrowserString(t *testing.T) { function TestPackageJsonBrowserMapRelativeToRelative (line 181) | func TestPackageJsonBrowserMapRelativeToRelative(t *testing.T) { function TestPackageJsonBrowserMapRelativeToModule (line 224) | func TestPackageJsonBrowserMapRelativeToModule(t *testing.T) { function TestPackageJsonBrowserMapRelativeDisabled (line 260) | func TestPackageJsonBrowserMapRelativeDisabled(t *testing.T) { function TestPackageJsonBrowserMapModuleToRelative (line 293) | func TestPackageJsonBrowserMapModuleToRelative(t *testing.T) { function TestPackageJsonBrowserMapModuleToModule (line 332) | func TestPackageJsonBrowserMapModuleToModule(t *testing.T) { function TestPackageJsonBrowserMapModuleDisabled (line 371) | func TestPackageJsonBrowserMapModuleDisabled(t *testing.T) { function TestPackageJsonBrowserMapNativeModuleDisabled (line 405) | func TestPackageJsonBrowserMapNativeModuleDisabled(t *testing.T) { function TestPackageJsonBrowserMapAvoidMissing (line 434) | func TestPackageJsonBrowserMapAvoidMissing(t *testing.T) { function TestPackageJsonBrowserOverModuleBrowser (line 468) | func TestPackageJsonBrowserOverModuleBrowser(t *testing.T) { function TestPackageJsonBrowserOverMainNode (line 507) | func TestPackageJsonBrowserOverMainNode(t *testing.T) { function TestPackageJsonBrowserWithModuleBrowser (line 546) | func TestPackageJsonBrowserWithModuleBrowser(t *testing.T) { function TestPackageJsonBrowserWithMainNode (line 593) | func TestPackageJsonBrowserWithMainNode(t *testing.T) { function TestPackageJsonBrowserNodeModulesNoExt (line 640) | func TestPackageJsonBrowserNodeModulesNoExt(t *testing.T) { function TestPackageJsonBrowserNodeModulesIndexNoExt (line 682) | func TestPackageJsonBrowserNodeModulesIndexNoExt(t *testing.T) { function TestPackageJsonBrowserNoExt (line 724) | func TestPackageJsonBrowserNoExt(t *testing.T) { function TestPackageJsonBrowserIndexNoExt (line 766) | func TestPackageJsonBrowserIndexNoExt(t *testing.T) { function TestPackageJsonBrowserIssue2002A (line 809) | func TestPackageJsonBrowserIssue2002A(t *testing.T) { function TestPackageJsonBrowserIssue2002B (line 830) | func TestPackageJsonBrowserIssue2002B(t *testing.T) { function TestPackageJsonBrowserIssue2002C (line 852) | func TestPackageJsonBrowserIssue2002C(t *testing.T) { function TestPackageJsonDualPackageHazardImportOnly (line 873) | func TestPackageJsonDualPackageHazardImportOnly(t *testing.T) { function TestPackageJsonDualPackageHazardRequireOnly (line 901) | func TestPackageJsonDualPackageHazardRequireOnly(t *testing.T) { function TestPackageJsonDualPackageHazardImportAndRequireSameFile (line 928) | func TestPackageJsonDualPackageHazardImportAndRequireSameFile(t *testing... function TestPackageJsonDualPackageHazardImportAndRequireSeparateFiles (line 956) | func TestPackageJsonDualPackageHazardImportAndRequireSeparateFiles(t *te... function TestPackageJsonDualPackageHazardImportAndRequireForceModuleBeforeMain (line 991) | func TestPackageJsonDualPackageHazardImportAndRequireForceModuleBeforeMa... function TestPackageJsonDualPackageHazardImportAndRequireImplicitMain (line 1027) | func TestPackageJsonDualPackageHazardImportAndRequireImplicitMain(t *tes... function TestPackageJsonDualPackageHazardImportAndRequireImplicitMainForceModuleBeforeMain (line 1061) | func TestPackageJsonDualPackageHazardImportAndRequireImplicitMainForceMo... function TestPackageJsonDualPackageHazardImportAndRequireBrowser (line 1096) | func TestPackageJsonDualPackageHazardImportAndRequireBrowser(t *testing.... function TestPackageJsonMainFieldsA (line 1141) | func TestPackageJsonMainFieldsA(t *testing.T) { function TestPackageJsonMainFieldsB (line 1170) | func TestPackageJsonMainFieldsB(t *testing.T) { function TestPackageJsonNeutralNoDefaultMainFields (line 1199) | func TestPackageJsonNeutralNoDefaultMainFields(t *testing.T) { function TestPackageJsonNeutralExplicitMainFields (line 1236) | func TestPackageJsonNeutralExplicitMainFields(t *testing.T) { function TestPackageJsonExportsErrorInvalidModuleSpecifier (line 1265) | func TestPackageJsonExportsErrorInvalidModuleSpecifier(t *testing.T) { function TestPackageJsonExportsErrorInvalidPackageConfiguration (line 1322) | func TestPackageJsonExportsErrorInvalidPackageConfiguration(t *testing.T) { function TestPackageJsonExportsErrorInvalidPackageTarget (line 1353) | func TestPackageJsonExportsErrorInvalidPackageTarget(t *testing.T) { function TestPackageJsonExportsErrorPackagePathNotExported (line 1389) | func TestPackageJsonExportsErrorPackagePathNotExported(t *testing.T) { function TestPackageJsonExportsErrorModuleNotFound (line 1411) | func TestPackageJsonExportsErrorModuleNotFound(t *testing.T) { function TestPackageJsonExportsErrorUnsupportedDirectoryImport (line 1433) | func TestPackageJsonExportsErrorUnsupportedDirectoryImport(t *testing.T) { function TestPackageJsonImportsErrorUnsupportedDirectoryImport (line 1466) | func TestPackageJsonImportsErrorUnsupportedDirectoryImport(t *testing.T) { function TestPackageJsonExportsRequireOverImport (line 1506) | func TestPackageJsonExportsRequireOverImport(t *testing.T) { function TestPackageJsonExportsImportOverRequire (line 1536) | func TestPackageJsonExportsImportOverRequire(t *testing.T) { function TestPackageJsonExportsDefaultOverImportAndRequire (line 1566) | func TestPackageJsonExportsDefaultOverImportAndRequire(t *testing.T) { function TestPackageJsonExportsEntryPointImportOverRequire (line 1599) | func TestPackageJsonExportsEntryPointImportOverRequire(t *testing.T) { function TestPackageJsonExportsEntryPointRequireOnly (line 1633) | func TestPackageJsonExportsEntryPointRequireOnly(t *testing.T) { function TestPackageJsonExportsEntryPointModuleOverMain (line 1667) | func TestPackageJsonExportsEntryPointModuleOverMain(t *testing.T) { function TestPackageJsonExportsEntryPointMainOnly (line 1691) | func TestPackageJsonExportsEntryPointMainOnly(t *testing.T) { function TestPackageJsonExportsBrowser (line 1711) | func TestPackageJsonExportsBrowser(t *testing.T) { function TestPackageJsonExportsNode (line 1742) | func TestPackageJsonExportsNode(t *testing.T) { function TestPackageJsonExportsNeutral (line 1773) | func TestPackageJsonExportsNeutral(t *testing.T) { function TestPackageJsonExportsOrderIndependent (line 1807) | func TestPackageJsonExportsOrderIndependent(t *testing.T) { function TestPackageJsonExportsWildcard (line 1851) | func TestPackageJsonExportsWildcard(t *testing.T) { function TestPackageJsonExportsErrorMissingTrailingSlash (line 1880) | func TestPackageJsonExportsErrorMissingTrailingSlash(t *testing.T) { function TestPackageJsonExportsCustomConditions (line 1902) | func TestPackageJsonExportsCustomConditions(t *testing.T) { function TestPackageJsonExportsNotExactMissingExtension (line 1930) | func TestPackageJsonExportsNotExactMissingExtension(t *testing.T) { function TestPackageJsonExportsNotExactMissingExtensionPattern (line 1955) | func TestPackageJsonExportsNotExactMissingExtensionPattern(t *testing.T) { function TestPackageJsonExportsExactMissingExtension (line 1985) | func TestPackageJsonExportsExactMissingExtension(t *testing.T) { function TestPackageJsonExportsNoConditionsMatch (line 2014) | func TestPackageJsonExportsNoConditionsMatch(t *testing.T) { function TestPackageJsonExportsMustUseRequire (line 2056) | func TestPackageJsonExportsMustUseRequire(t *testing.T) { function TestPackageJsonExportsMustUseImport (line 2098) | func TestPackageJsonExportsMustUseImport(t *testing.T) { function TestPackageJsonExportsReverseLookup (line 2140) | func TestPackageJsonExportsReverseLookup(t *testing.T) { function TestPackageJsonExportsPatternTrailers (line 2181) | func TestPackageJsonExportsPatternTrailers(t *testing.T) { function TestPackageJsonExportsAlternatives (line 2234) | func TestPackageJsonExportsAlternatives(t *testing.T) { function TestPackageJsonImports (line 2280) | func TestPackageJsonImports(t *testing.T) { function TestPackageJsonImportsRemapToOtherPackage (line 2312) | func TestPackageJsonImportsRemapToOtherPackage(t *testing.T) { function TestPackageJsonImportsErrorMissingRemappedPackage (line 2344) | func TestPackageJsonImportsErrorMissingRemappedPackage(t *testing.T) { function TestPackageJsonImportsInvalidPackageConfiguration (line 2370) | func TestPackageJsonImportsInvalidPackageConfiguration(t *testing.T) { function TestPackageJsonImportsErrorEqualsHash (line 2395) | func TestPackageJsonImportsErrorEqualsHash(t *testing.T) { function TestPackageJsonImportsHashSlashWithWildcard (line 2422) | func TestPackageJsonImportsHashSlashWithWildcard(t *testing.T) { function TestPackageJsonImportsHashSlashExactMatch (line 2447) | func TestPackageJsonImportsHashSlashExactMatch(t *testing.T) { function TestPackageJsonImportsHashSlashWithConditions (line 2473) | func TestPackageJsonImportsHashSlashWithConditions(t *testing.T) { function TestPackageJsonImportsHashSlashSymmetricWithExports (line 2500) | func TestPackageJsonImportsHashSlashSymmetricWithExports(t *testing.T) { function TestPackageJsonMainFieldsErrorMessageDefault (line 2525) | func TestPackageJsonMainFieldsErrorMessageDefault(t *testing.T) { function TestPackageJsonMainFieldsErrorMessageNotIncluded (line 2548) | func TestPackageJsonMainFieldsErrorMessageNotIncluded(t *testing.T) { function TestPackageJsonMainFieldsErrorMessageEmpty (line 2573) | func TestPackageJsonMainFieldsErrorMessageEmpty(t *testing.T) { function TestPackageJsonTypeShouldBeTypes (line 2598) | func TestPackageJsonTypeShouldBeTypes(t *testing.T) { function TestPackageJsonImportSelfUsingRequire (line 2621) | func TestPackageJsonImportSelfUsingRequire(t *testing.T) { function TestPackageJsonImportSelfUsingImport (line 2659) | func TestPackageJsonImportSelfUsingImport(t *testing.T) { function TestPackageJsonImportSelfUsingRequireScoped (line 2696) | func TestPackageJsonImportSelfUsingRequireScoped(t *testing.T) { function TestPackageJsonImportSelfUsingImportScoped (line 2734) | func TestPackageJsonImportSelfUsingImportScoped(t *testing.T) { function TestPackageJsonImportSelfUsingRequireFailure (line 2771) | func TestPackageJsonImportSelfUsingRequireFailure(t *testing.T) { function TestPackageJsonImportSelfUsingImportFailure (line 2805) | func TestPackageJsonImportSelfUsingImportFailure(t *testing.T) { function TestCommonJSVariableInESMTypeModule (line 2839) | func TestCommonJSVariableInESMTypeModule(t *testing.T) { function TestPackageJsonNodePathsIssue2752 (line 2857) | func TestPackageJsonNodePathsIssue2752(t *testing.T) { function TestPackageJsonReversePackageExportsIssue3377 (line 2890) | func TestPackageJsonReversePackageExportsIssue3377(t *testing.T) { function TestPackageJsonDisabledTypeModuleIssue3367 (line 2928) | func TestPackageJsonDisabledTypeModuleIssue3367(t *testing.T) { function TestPackageJsonSubpathImportNodeBuiltinIssue3485 (line 2960) | func TestPackageJsonSubpathImportNodeBuiltinIssue3485(t *testing.T) { function TestPackageJsonBadExportsImportAndRequireWarningIssue3867 (line 2995) | func TestPackageJsonBadExportsImportAndRequireWarningIssue3867(t *testin... function TestPackageJsonBadExportsDefaultWarningIssue3867 (line 3043) | func TestPackageJsonBadExportsDefaultWarningIssue3867(t *testing.T) { function TestPackageJsonExportsDefaultWarningIssue3887 (line 3089) | func TestPackageJsonExportsDefaultWarningIssue3887(t *testing.T) { function TestConfusingNameCollisionsIssue4144 (line 3122) | func TestConfusingNameCollisionsIssue4144(t *testing.T) { function TestPackageJsonBrowserMatchingTrailingSlashIssue4187 (line 3156) | func TestPackageJsonBrowserMatchingTrailingSlashIssue4187(t *testing.T) { FILE: internal/bundler_tests/bundler_splitting_test.go function TestSplittingSharedES6IntoES6 (line 13) | func TestSplittingSharedES6IntoES6(t *testing.T) { function TestSplittingSharedCommonJSIntoES6 (line 36) | func TestSplittingSharedCommonJSIntoES6(t *testing.T) { function TestSplittingDynamicES6IntoES6 (line 59) | func TestSplittingDynamicES6IntoES6(t *testing.T) { function TestSplittingDynamicCommonJSIntoES6 (line 79) | func TestSplittingDynamicCommonJSIntoES6(t *testing.T) { function TestSplittingDynamicAndNotDynamicES6IntoES6 (line 99) | func TestSplittingDynamicAndNotDynamicES6IntoES6(t *testing.T) { function TestSplittingDynamicAndNotDynamicCommonJSIntoES6 (line 120) | func TestSplittingDynamicAndNotDynamicCommonJSIntoES6(t *testing.T) { function TestSplittingAssignToLocal (line 141) | func TestSplittingAssignToLocal(t *testing.T) { function TestSplittingSideEffectsWithoutDependencies (line 170) | func TestSplittingSideEffectsWithoutDependencies(t *testing.T) { function TestSplittingNestedDirectories (line 197) | func TestSplittingNestedDirectories(t *testing.T) { function TestSplittingCircularReferenceIssue251 (line 225) | func TestSplittingCircularReferenceIssue251(t *testing.T) { function TestSplittingMissingLazyExport (line 247) | func TestSplittingMissingLazyExport(t *testing.T) { function TestSplittingReExportIssue273 (line 280) | func TestSplittingReExportIssue273(t *testing.T) { function TestSplittingDynamicImportIssue272 (line 300) | func TestSplittingDynamicImportIssue272(t *testing.T) { function TestSplittingDynamicImportOutsideSourceTreeIssue264 (line 320) | func TestSplittingDynamicImportOutsideSourceTreeIssue264(t *testing.T) { function TestSplittingCrossChunkAssignmentDependencies (line 343) | func TestSplittingCrossChunkAssignmentDependencies(t *testing.T) { function TestSplittingCrossChunkAssignmentDependenciesRecursive (line 379) | func TestSplittingCrossChunkAssignmentDependenciesRecursive(t *testing.T) { function TestSplittingDuplicateChunkCollision (line 426) | func TestSplittingDuplicateChunkCollision(t *testing.T) { function TestSplittingMinifyIdentifiersCrashIssue437 (line 459) | func TestSplittingMinifyIdentifiersCrashIssue437(t *testing.T) { function TestSplittingHybridESMAndCJSIssue617 (line 488) | func TestSplittingHybridESMAndCJSIssue617(t *testing.T) { function TestSplittingPublicPathEntryName (line 508) | func TestSplittingPublicPathEntryName(t *testing.T) { function TestSplittingChunkPathDirPlaceholderImplicitOutbase (line 529) | func TestSplittingChunkPathDirPlaceholderImplicitOutbase(t *testing.T) { function TestEdgeCaseIssue2793WithSplitting (line 554) | func TestEdgeCaseIssue2793WithSplitting(t *testing.T) { function TestEdgeCaseIssue2793WithoutSplitting (line 578) | func TestEdgeCaseIssue2793WithoutSplitting(t *testing.T) { FILE: internal/bundler_tests/bundler_test.go function es (line 29) | func es(version int) compat.JSFeature { function assertLog (line 35) | func assertLog(t *testing.T, msgs []logger.Msg, expected string) { function hasErrors (line 44) | func hasErrors(msgs []logger.Msg) bool { type bundled (line 53) | type bundled struct type suite (line 64) | type suite struct method expectBundled (line 72) | func (s *suite) expectBundled(t *testing.T, args bundled) { method expectBundledUnix (line 119) | func (s *suite) expectBundledUnix(t *testing.T, args bundled) { method expectBundledWindows (line 124) | func (s *suite) expectBundledWindows(t *testing.T, args bundled) { method __expectBundledImpl (line 130) | func (s *suite) __expectBundledImpl(t *testing.T, args bundled, fsKind... method compareSnapshot (line 232) | func (s *suite) compareSnapshot(t *testing.T, testName string, generat... method updateSnapshots (line 279) | func (s *suite) updateSnapshots() { method validateSnapshots (line 298) | func (s *suite) validateSnapshots() bool { constant snapshotsDir (line 225) | snapshotsDir = "snapshots" constant snapshotSplitter (line 226) | snapshotSplitter = "\n==================================================... function TestMain (line 312) | func TestMain(m *testing.M) { function win2unix (line 330) | func win2unix(p string) string { function unix2win (line 338) | func unix2win(p string) string { FILE: internal/bundler_tests/bundler_ts_test.go function TestTSDeclareConst (line 15) | func TestTSDeclareConst(t *testing.T) { function TestTSDeclareLet (line 35) | func TestTSDeclareLet(t *testing.T) { function TestTSDeclareVar (line 55) | func TestTSDeclareVar(t *testing.T) { function TestTSDeclareClass (line 75) | func TestTSDeclareClass(t *testing.T) { function TestTSDeclareClassFields (line 95) | func TestTSDeclareClassFields(t *testing.T) { function TestTSDeclareFunction (line 147) | func TestTSDeclareFunction(t *testing.T) { function TestTSDeclareNamespace (line 167) | func TestTSDeclareNamespace(t *testing.T) { function TestTSDeclareEnum (line 187) | func TestTSDeclareEnum(t *testing.T) { function TestTSDeclareConstEnum (line 207) | func TestTSDeclareConstEnum(t *testing.T) { function TestTSConstEnumComments (line 227) | func TestTSConstEnumComments(t *testing.T) { function TestTSImportEmptyNamespace (line 262) | func TestTSImportEmptyNamespace(t *testing.T) { function TestTSImportMissingES6 (line 282) | func TestTSImportMissingES6(t *testing.T) { function TestTSImportMissingUnusedES6 (line 304) | func TestTSImportMissingUnusedES6(t *testing.T) { function TestTSExportMissingES6 (line 322) | func TestTSExportMissingES6(t *testing.T) { function TestTSImportMissingFile (line 345) | func TestTSImportMissingFile(t *testing.T) { function TestTSImportTypeOnlyFile (line 364) | func TestTSImportTypeOnlyFile(t *testing.T) { function TestTSExportEquals (line 381) | func TestTSExportEquals(t *testing.T) { function TestTSExportNamespace (line 401) | func TestTSExportNamespace(t *testing.T) { function TestTSNamespaceKeepNames (line 426) | func TestTSNamespaceKeepNames(t *testing.T) { function TestTSNamespaceKeepNamesTargetES2015 (line 446) | func TestTSNamespaceKeepNamesTargetES2015(t *testing.T) { function TestTSMinifyEnum (line 467) | func TestTSMinifyEnum(t *testing.T) { function TestTSMinifyNestedEnum (line 487) | func TestTSMinifyNestedEnum(t *testing.T) { function TestTSMinifyNestedEnumNoLogicalAssignment (line 507) | func TestTSMinifyNestedEnumNoLogicalAssignment(t *testing.T) { function TestTSMinifyNestedEnumNoArrow (line 528) | func TestTSMinifyNestedEnumNoArrow(t *testing.T) { function TestTSMinifyNamespace (line 549) | func TestTSMinifyNamespace(t *testing.T) { function TestTSMinifyNamespaceNoLogicalAssignment (line 577) | func TestTSMinifyNamespaceNoLogicalAssignment(t *testing.T) { function TestTSMinifyNamespaceNoArrow (line 606) | func TestTSMinifyNamespaceNoArrow(t *testing.T) { function TestTSMinifyDerivedClass (line 635) | func TestTSMinifyDerivedClass(t *testing.T) { function TestTSMinifyEnumPropertyNames (line 664) | func TestTSMinifyEnumPropertyNames(t *testing.T) { function TestTSMinifyEnumCrossFileInlineStringsIntoTemplates (line 736) | func TestTSMinifyEnumCrossFileInlineStringsIntoTemplates(t *testing.T) { function TestTSImportVsLocalCollisionAllTypes (line 768) | func TestTSImportVsLocalCollisionAllTypes(t *testing.T) { function TestTSImportVsLocalCollisionMixed (line 791) | func TestTSImportVsLocalCollisionMixed(t *testing.T) { function TestTSImportEqualsEliminationTest (line 815) | func TestTSImportEqualsEliminationTest(t *testing.T) { function TestTSImportEqualsTreeShakingFalse (line 838) | func TestTSImportEqualsTreeShakingFalse(t *testing.T) { function TestTSImportEqualsTreeShakingTrue (line 857) | func TestTSImportEqualsTreeShakingTrue(t *testing.T) { function TestTSImportEqualsBundle (line 876) | func TestTSImportEqualsBundle(t *testing.T) { function TestTSImportEqualsUndefinedImport (line 901) | func TestTSImportEqualsUndefinedImport(t *testing.T) { function TestTSMinifiedBundleES6 (line 931) | func TestTSMinifiedBundleES6(t *testing.T) { function TestTSMinifiedBundleCommonJS (line 955) | func TestTSMinifiedBundleCommonJS(t *testing.T) { function TestTSExperimentalDecoratorsNoConfig (line 982) | func TestTSExperimentalDecoratorsNoConfig(t *testing.T) { function TestTSExperimentalDecorators (line 1029) | func TestTSExperimentalDecorators(t *testing.T) { function TestTSExperimentalDecoratorsKeepNames (line 1183) | func TestTSExperimentalDecoratorsKeepNames(t *testing.T) { function TestTSExperimentalDecoratorScopeIssue2147 (line 1206) | func TestTSExperimentalDecoratorScopeIssue2147(t *testing.T) { function TestTSExportDefaultTypeIssue316 (line 1248) | func TestTSExportDefaultTypeIssue316(t *testing.T) { function TestTSImplicitExtensions (line 1381) | func TestTSImplicitExtensions(t *testing.T) { function TestTSImplicitExtensionsMissing (line 1460) | func TestTSImplicitExtensionsMissing(t *testing.T) { function TestExportTypeIssue379 (line 1489) | func TestExportTypeIssue379(t *testing.T) { function TestThisInsideFunctionTS (line 1535) | func TestThisInsideFunctionTS(t *testing.T) { function TestThisInsideFunctionTSUseDefineForClassFields (line 1576) | func TestThisInsideFunctionTSUseDefineForClassFields(t *testing.T) { function TestThisInsideFunctionTSNoBundle (line 1617) | func TestThisInsideFunctionTSNoBundle(t *testing.T) { function TestThisInsideFunctionTSNoBundleUseDefineForClassFields (line 1660) | func TestThisInsideFunctionTSNoBundleUseDefineForClassFields(t *testing.... function TestTSComputedClassFieldUseDefineFalse (line 1701) | func TestTSComputedClassFieldUseDefineFalse(t *testing.T) { function TestTSComputedClassFieldUseDefineTrue (line 1730) | func TestTSComputedClassFieldUseDefineTrue(t *testing.T) { function TestTSComputedClassFieldUseDefineTrueLower (line 1759) | func TestTSComputedClassFieldUseDefineTrueLower(t *testing.T) { function TestTSAbstractClassFieldUseAssign (line 1789) | func TestTSAbstractClassFieldUseAssign(t *testing.T) { function TestTSAbstractClassFieldUseDefine (line 1816) | func TestTSAbstractClassFieldUseDefine(t *testing.T) { function TestTSImportMTS (line 1843) | func TestTSImportMTS(t *testing.T) { function TestTSImportCTS (line 1862) | func TestTSImportCTS(t *testing.T) { function TestTSSideEffectsFalseWarningTypeDeclarations (line 1881) | func TestTSSideEffectsFalseWarningTypeDeclarations(t *testing.T) { function TestTSSiblingNamespace (line 1920) | func TestTSSiblingNamespace(t *testing.T) { function TestTSSiblingEnum (line 1958) | func TestTSSiblingEnum(t *testing.T) { function TestTSEnumTreeShaking (line 2039) | func TestTSEnumTreeShaking(t *testing.T) { function TestTSEnumJSX (line 2097) | func TestTSEnumJSX(t *testing.T) { function TestTSEnumDefine (line 2130) | func TestTSEnumDefine(t *testing.T) { function TestTSEnumSameModuleInliningAccess (line 2154) | func TestTSEnumSameModuleInliningAccess(t *testing.T) { function TestTSEnumCrossModuleInliningAccess (line 2197) | func TestTSEnumCrossModuleInliningAccess(t *testing.T) { function TestTSEnumCrossModuleInliningDefinitions (line 2246) | func TestTSEnumCrossModuleInliningDefinitions(t *testing.T) { function TestTSEnumCrossModuleInliningReExport (line 2275) | func TestTSEnumCrossModuleInliningReExport(t *testing.T) { function TestTSEnumCrossModuleInliningMinifyIndexIntoDot (line 2308) | func TestTSEnumCrossModuleInliningMinifyIndexIntoDot(t *testing.T) { function TestTSEnumCrossModuleTreeShaking (line 2350) | func TestTSEnumCrossModuleTreeShaking(t *testing.T) { function TestTSEnumExportClause (line 2402) | func TestTSEnumExportClause(t *testing.T) { function TestTSThisIsUndefinedWarning (line 2442) | func TestTSThisIsUndefinedWarning(t *testing.T) { function TestTSCommonJSVariableInESMTypeModule (line 2475) | func TestTSCommonJSVariableInESMTypeModule(t *testing.T) { function TestEnumRulesFrom_TypeScript_5_0 (line 2493) | func TestEnumRulesFrom_TypeScript_5_0(t *testing.T) { function TestTSEnumUseBeforeDeclare (line 2667) | func TestTSEnumUseBeforeDeclare(t *testing.T) { function TestTSPreferJSOverTSInsideNodeModules (line 2688) | func TestTSPreferJSOverTSInsideNodeModules(t *testing.T) { function TestTSExperimentalDecoratorsManglePropsDefineSemantics (line 2722) | func TestTSExperimentalDecoratorsManglePropsDefineSemantics(t *testing.T) { function TestTSExperimentalDecoratorsManglePropsAssignSemantics (line 2751) | func TestTSExperimentalDecoratorsManglePropsAssignSemantics(t *testing.T) { function TestTSExperimentalDecoratorsManglePropsMethods (line 2780) | func TestTSExperimentalDecoratorsManglePropsMethods(t *testing.T) { function TestTSExperimentalDecoratorsManglePropsStaticDefineSemantics (line 2808) | func TestTSExperimentalDecoratorsManglePropsStaticDefineSemantics(t *tes... function TestTSExperimentalDecoratorsManglePropsStaticAssignSemantics (line 2837) | func TestTSExperimentalDecoratorsManglePropsStaticAssignSemantics(t *tes... function TestTSExperimentalDecoratorsManglePropsStaticMethods (line 2866) | func TestTSExperimentalDecoratorsManglePropsStaticMethods(t *testing.T) { function TestTSPrintNonFiniteNumberInsideWith (line 2894) | func TestTSPrintNonFiniteNumberInsideWith(t *testing.T) { function TestTSImportInNodeModulesNameCollisionWithCSS (line 2940) | func TestTSImportInNodeModulesNameCollisionWithCSS(t *testing.T) { FILE: internal/bundler_tests/bundler_tsconfig_test.go function TestTsconfigPaths (line 13) | func TestTsconfigPaths(t *testing.T) { function TestTsconfigPathsNoBaseURL (line 186) | func TestTsconfigPathsNoBaseURL(t *testing.T) { function TestTsconfigBadPathsNoBaseURL (line 326) | func TestTsconfigBadPathsNoBaseURL(t *testing.T) { function TestTsconfigPathsOverriddenBaseURL (line 384) | func TestTsconfigPathsOverriddenBaseURL(t *testing.T) { function TestTsconfigPathsOverriddenBaseURLDifferentDir (line 420) | func TestTsconfigPathsOverriddenBaseURLDifferentDir(t *testing.T) { function TestTsconfigPathsMissingBaseURL (line 456) | func TestTsconfigPathsMissingBaseURL(t *testing.T) { function TestTsconfigPathsTypeOnly (line 494) | func TestTsconfigPathsTypeOnly(t *testing.T) { function TestTsconfigJSX (line 532) | func TestTsconfigJSX(t *testing.T) { function TestTsconfigNestedJSX (line 555) | func TestTsconfigNestedJSX(t *testing.T) { function TestTsconfigPreserveJSX (line 604) | func TestTsconfigPreserveJSX(t *testing.T) { function TestTsconfigPreserveJSXAutomatic (line 626) | func TestTsconfigPreserveJSXAutomatic(t *testing.T) { function TestTsconfigReactJSX (line 656) | func TestTsconfigReactJSX(t *testing.T) { function TestTsconfigReactJSXDev (line 684) | func TestTsconfigReactJSXDev(t *testing.T) { function TestTsconfigReactJSXWithDevInMainConfig (line 711) | func TestTsconfigReactJSXWithDevInMainConfig(t *testing.T) { function TestTsconfigJsonBaseUrl (line 741) | func TestTsconfigJsonBaseUrl(t *testing.T) { function TestJsconfigJsonBaseUrl (line 769) | func TestJsconfigJsonBaseUrl(t *testing.T) { function TestTsconfigJsonAbsoluteBaseUrl (line 797) | func TestTsconfigJsonAbsoluteBaseUrl(t *testing.T) { function TestTsconfigJsonCommentAllowed (line 825) | func TestTsconfigJsonCommentAllowed(t *testing.T) { function TestTsconfigJsonTrailingCommaAllowed (line 854) | func TestTsconfigJsonTrailingCommaAllowed(t *testing.T) { function TestTsconfigJsonExtends (line 882) | func TestTsconfigJsonExtends(t *testing.T) { function TestTsconfigJsonExtendsAbsolute (line 913) | func TestTsconfigJsonExtendsAbsolute(t *testing.T) { function TestTsconfigJsonExtendsThreeLevels (line 973) | func TestTsconfigJsonExtendsThreeLevels(t *testing.T) { function TestTsconfigJsonExtendsLoop (line 1017) | func TestTsconfigJsonExtendsLoop(t *testing.T) { function TestTsconfigJsonExtendsPackage (line 1044) | func TestTsconfigJsonExtendsPackage(t *testing.T) { function TestTsconfigJsonOverrideMissing (line 1071) | func TestTsconfigJsonOverrideMissing(t *testing.T) { function TestTsconfigJsonOverrideNodeModules (line 1113) | func TestTsconfigJsonOverrideNodeModules(t *testing.T) { function TestTsconfigJsonOverrideInvalid (line 1158) | func TestTsconfigJsonOverrideInvalid(t *testing.T) { function TestTsconfigJsonNodeModulesImplicitFile (line 1174) | func TestTsconfigJsonNodeModulesImplicitFile(t *testing.T) { function TestTsconfigJsonNodeModulesTsconfigPathExact (line 1202) | func TestTsconfigJsonNodeModulesTsconfigPathExact(t *testing.T) { function TestTsconfigJsonNodeModulesTsconfigPathImplicitJson (line 1235) | func TestTsconfigJsonNodeModulesTsconfigPathImplicitJson(t *testing.T) { function TestTsconfigJsonNodeModulesTsconfigPathDirectory (line 1268) | func TestTsconfigJsonNodeModulesTsconfigPathDirectory(t *testing.T) { function TestTsconfigJsonNodeModulesTsconfigPathBad (line 1301) | func TestTsconfigJsonNodeModulesTsconfigPathBad(t *testing.T) { function TestTsconfigJsonInsideNodeModules (line 1336) | func TestTsconfigJsonInsideNodeModules(t *testing.T) { function TestTsconfigWarningsInsideNodeModules (line 1361) | func TestTsconfigWarningsInsideNodeModules(t *testing.T) { function TestTsconfigRemoveUnusedImports (line 1385) | func TestTsconfigRemoveUnusedImports(t *testing.T) { function TestTsconfigPreserveUnusedImports (line 1406) | func TestTsconfigPreserveUnusedImports(t *testing.T) { function TestTsconfigImportsNotUsedAsValuesPreserve (line 1432) | func TestTsconfigImportsNotUsedAsValuesPreserve(t *testing.T) { function TestTsconfigPreserveValueImports (line 1461) | func TestTsconfigPreserveValueImports(t *testing.T) { function TestTsconfigPreserveValueImportsAndImportsNotUsedAsValuesPreserve (line 1496) | func TestTsconfigPreserveValueImportsAndImportsNotUsedAsValuesPreserve(t... function TestTsconfigUseDefineForClassFieldsES2020 (line 1532) | func TestTsconfigUseDefineForClassFieldsES2020(t *testing.T) { function TestTsconfigUseDefineForClassFieldsESNext (line 1555) | func TestTsconfigUseDefineForClassFieldsESNext(t *testing.T) { function TestTsconfigUnrecognizedTargetWarning (line 1578) | func TestTsconfigUnrecognizedTargetWarning(t *testing.T) { function TestTsconfigIgnoredTargetSilent (line 1608) | func TestTsconfigIgnoredTargetSilent(t *testing.T) { function TestTsconfigNoBaseURLExtendsPaths (line 1638) | func TestTsconfigNoBaseURLExtendsPaths(t *testing.T) { function TestTsconfigBaseURLExtendsPaths (line 1671) | func TestTsconfigBaseURLExtendsPaths(t *testing.T) { function TestTsconfigPathsExtendsBaseURL (line 1703) | func TestTsconfigPathsExtendsBaseURL(t *testing.T) { function TestTsconfigPathsInNodeModulesIssue2386 (line 1735) | func TestTsconfigPathsInNodeModulesIssue2386(t *testing.T) { function TestTsconfigWithStatementAlwaysStrictFalse (line 1782) | func TestTsconfigWithStatementAlwaysStrictFalse(t *testing.T) { function TestTsconfigWithStatementAlwaysStrictTrue (line 1803) | func TestTsconfigWithStatementAlwaysStrictTrue(t *testing.T) { function TestTsconfigWithStatementStrictFalse (line 1826) | func TestTsconfigWithStatementStrictFalse(t *testing.T) { function TestTsconfigWithStatementStrictTrue (line 1847) | func TestTsconfigWithStatementStrictTrue(t *testing.T) { function TestTsconfigWithStatementStrictFalseAlwaysStrictTrue (line 1870) | func TestTsconfigWithStatementStrictFalseAlwaysStrictTrue(t *testing.T) { function TestTsconfigWithStatementStrictTrueAlwaysStrictFalse (line 1894) | func TestTsconfigWithStatementStrictTrueAlwaysStrictFalse(t *testing.T) { function TestTsconfigAlwaysStrictTrueEmitDirectivePassThrough (line 1916) | func TestTsconfigAlwaysStrictTrueEmitDirectivePassThrough(t *testing.T) { function TestTsconfigAlwaysStrictTrueEmitDirectiveFormat (line 1943) | func TestTsconfigAlwaysStrictTrueEmitDirectiveFormat(t *testing.T) { function TestTsconfigAlwaysStrictTrueEmitDirectiveBundleIIFE (line 1970) | func TestTsconfigAlwaysStrictTrueEmitDirectiveBundleIIFE(t *testing.T) { function TestTsconfigAlwaysStrictTrueEmitDirectiveBundleCJS (line 1998) | func TestTsconfigAlwaysStrictTrueEmitDirectiveBundleCJS(t *testing.T) { function TestTsconfigAlwaysStrictTrueEmitDirectiveBundleESM (line 2026) | func TestTsconfigAlwaysStrictTrueEmitDirectiveBundleESM(t *testing.T) { function TestTsconfigExtendsDotWithoutSlash (line 2054) | func TestTsconfigExtendsDotWithoutSlash(t *testing.T) { function TestTsconfigExtendsDotDotWithoutSlash (line 2079) | func TestTsconfigExtendsDotDotWithoutSlash(t *testing.T) { function TestTsconfigExtendsDotWithSlash (line 2103) | func TestTsconfigExtendsDotWithSlash(t *testing.T) { function TestTsconfigExtendsDotDotWithSlash (line 2130) | func TestTsconfigExtendsDotDotWithSlash(t *testing.T) { function TestTsconfigExtendsWithExports (line 2156) | func TestTsconfigExtendsWithExports(t *testing.T) { function TestTsconfigExtendsWithExportsStar (line 2185) | func TestTsconfigExtendsWithExportsStar(t *testing.T) { function TestTsconfigExtendsWithExportsStarTrailing (line 2214) | func TestTsconfigExtendsWithExportsStarTrailing(t *testing.T) { function TestTsconfigExtendsWithExportsRequire (line 2243) | func TestTsconfigExtendsWithExportsRequire(t *testing.T) { function TestTsconfigVerbatimModuleSyntaxTrue (line 2278) | func TestTsconfigVerbatimModuleSyntaxTrue(t *testing.T) { function TestTsconfigVerbatimModuleSyntaxFalse (line 2304) | func TestTsconfigVerbatimModuleSyntaxFalse(t *testing.T) { function TestTsconfigExtendsArray (line 2330) | func TestTsconfigExtendsArray(t *testing.T) { function TestTsconfigExtendsArrayNested (line 2363) | func TestTsconfigExtendsArrayNested(t *testing.T) { function TestTsconfigIgnoreInsideNodeModules (line 2417) | func TestTsconfigIgnoreInsideNodeModules(t *testing.T) { function TestTsconfigJsonPackagesExternal (line 2461) | func TestTsconfigJsonPackagesExternal(t *testing.T) { function TestTsconfigJsonTopLevelMistakeWarning (line 2492) | func TestTsconfigJsonTopLevelMistakeWarning(t *testing.T) { function TestTsconfigJsonBaseUrlIssue3307 (line 2516) | func TestTsconfigJsonBaseUrlIssue3307(t *testing.T) { function TestTsconfigJsonAsteriskNameCollisionIssue3354 (line 2543) | func TestTsconfigJsonAsteriskNameCollisionIssue3354(t *testing.T) { function TestTsconfigJsonConfigDirBaseURL (line 2585) | func TestTsconfigJsonConfigDirBaseURL(t *testing.T) { function TestTsconfigJsonConfigDirPaths (line 2615) | func TestTsconfigJsonConfigDirPaths(t *testing.T) { function TestTsconfigJsonConfigDirBaseURLInheritedPaths (line 2647) | func TestTsconfigJsonConfigDirBaseURLInheritedPaths(t *testing.T) { function TestTsconfigJsonExtendsArrayIssue3898 (line 2680) | func TestTsconfigJsonExtendsArrayIssue3898(t *testing.T) { function TestTsconfigDecoratorsUseDefineForClassFieldsFalse (line 2732) | func TestTsconfigDecoratorsUseDefineForClassFieldsFalse(t *testing.T) { FILE: internal/bundler_tests/bundler_yarnpnp_test.go function TestTsconfigPackageJsonExportsYarnPnP (line 14) | func TestTsconfigPackageJsonExportsYarnPnP(t *testing.T) { function TestTsconfigStackOverflowYarnPnP (line 87) | func TestTsconfigStackOverflowYarnPnP(t *testing.T) { function TestWindowsCrossVolumeReferenceYarnPnP (line 153) | func TestWindowsCrossVolumeReferenceYarnPnP(t *testing.T) { FILE: internal/cache/cache.go type CacheSet (line 33) | type CacheSet struct function MakeCacheSet (line 41) | func MakeCacheSet() *CacheSet { type SourceIndexCache (line 63) | type SourceIndexCache struct method LenHint (line 82) | func (c *SourceIndexCache) LenHint() uint32 { method Get (line 91) | func (c *SourceIndexCache) Get(path logger.Path, kind SourceIndexKind)... method GetGlob (line 104) | func (c *SourceIndexCache) GetGlob(parentSourceIndex uint32, globIndex... type SourceIndexKind (line 70) | type SourceIndexKind constant SourceIndexNormal (line 73) | SourceIndexNormal SourceIndexKind = iota constant SourceIndexJSStubForCSS (line 74) | SourceIndexJSStubForCSS type sourceIndexKey (line 77) | type sourceIndexKey struct FILE: internal/cache/cache_ast.go type CSSCache (line 29) | type CSSCache struct method Parse (line 41) | func (c *CSSCache) Parse(log logger.Log, source logger.Source, options... type cssCacheEntry (line 34) | type cssCacheEntry struct type JSONCache (line 83) | type JSONCache struct method Parse (line 96) | func (c *JSONCache) Parse(log logger.Log, source logger.Source, option... type jsonCacheEntry (line 88) | type jsonCacheEntry struct type JSCache (line 139) | type JSCache struct method Parse (line 152) | func (c *JSCache) Parse(log logger.Log, source logger.Source, options ... type jsCacheEntry (line 144) | type jsCacheEntry struct FILE: internal/cache/cache_fs.go type FSCache (line 14) | type FSCache struct method ReadFile (line 25) | func (c *FSCache) ReadFile(fs fs.FS, path string) (contents string, ca... type fsEntry (line 19) | type fsEntry struct FILE: internal/cli_helpers/cli_helpers.go type ErrorWithNote (line 12) | type ErrorWithNote struct function MakeErrorWithNote (line 17) | func MakeErrorWithNote(text string, note string) *ErrorWithNote { function ParseLoader (line 24) | func ParseLoader(text string) (api.Loader, *ErrorWithNote) { FILE: internal/compat/compat.go type v (line 10) | type v struct type Semver (line 16) | type Semver struct method String (line 22) | func (v Semver) String() string { function compareVersions (line 37) | func compareVersions(a v, b Semver) int { type versionRange (line 61) | type versionRange struct function isVersionSupported (line 66) | func isVersionSupported(ranges []versionRange, version Semver) bool { function SymbolFeature (line 75) | func SymbolFeature(kind ast.SymbolKind) JSFeature { FILE: internal/compat/compat_test.go function TestCompareVersions (line 10) | func TestCompareVersions(t *testing.T) { FILE: internal/compat/css_table.go type CSSFeature (line 9) | type CSSFeature method Has (line 43) | func (features CSSFeature) Has(feature CSSFeature) bool { method ApplyOverrides (line 47) | func (features CSSFeature) ApplyOverrides(overrides CSSFeature, mask C... constant ColorFunctions (line 12) | ColorFunctions CSSFeature = 1 << iota constant GradientDoublePosition (line 13) | GradientDoublePosition constant GradientInterpolation (line 14) | GradientInterpolation constant GradientMidpoints (line 15) | GradientMidpoints constant HWB (line 16) | HWB constant HexRGBA (line 17) | HexRGBA constant InlineStyle (line 18) | InlineStyle constant InsetProperty (line 19) | InsetProperty constant IsPseudoClass (line 20) | IsPseudoClass constant MediaRange (line 21) | MediaRange constant Modern_RGB_HSL (line 22) | Modern_RGB_HSL constant Nesting (line 23) | Nesting constant RebeccaPurple (line 24) | RebeccaPurple function UnsupportedCSSFeatures (line 153) | func UnsupportedCSSFeatures(constraints map[Engine]Semver) (unsupported ... type CSSPrefix (line 171) | type CSSPrefix constant KhtmlPrefix (line 174) | KhtmlPrefix CSSPrefix = 1 << iota constant MozPrefix (line 175) | MozPrefix constant MsPrefix (line 176) | MsPrefix constant OPrefix (line 177) | OPrefix constant WebkitPrefix (line 178) | WebkitPrefix constant NoPrefix (line 180) | NoPrefix CSSPrefix = 0 type prefixData (line 183) | type prefixData struct function CSSPrefixData (line 400) | func CSSPrefixData(constraints map[Engine]Semver) (entries map[css_ast.D... FILE: internal/compat/js_table.go type Engine (line 5) | type Engine method String (line 22) | func (e Engine) String() string { method IsBrowser (line 52) | func (e Engine) IsBrowser() bool { constant Chrome (line 8) | Chrome Engine = iota constant Deno (line 9) | Deno constant Edge (line 10) | Edge constant ES (line 11) | ES constant Firefox (line 12) | Firefox constant Hermes (line 13) | Hermes constant IE (line 14) | IE constant IOS (line 15) | IOS constant Node (line 16) | Node constant Opera (line 17) | Opera constant Rhino (line 18) | Rhino constant Safari (line 19) | Safari type JSFeature (line 60) | type JSFeature method Has (line 190) | func (features JSFeature) Has(feature JSFeature) bool { method ApplyOverrides (line 194) | func (features JSFeature) ApplyOverrides(overrides JSFeature, mask JSF... constant ArbitraryModuleNamespaceNames (line 63) | ArbitraryModuleNamespaceNames JSFeature = 1 << iota constant ArraySpread (line 64) | ArraySpread constant Arrow (line 65) | Arrow constant AsyncAwait (line 66) | AsyncAwait constant AsyncGenerator (line 67) | AsyncGenerator constant Bigint (line 68) | Bigint constant Class (line 69) | Class constant ClassField (line 70) | ClassField constant ClassPrivateAccessor (line 71) | ClassPrivateAccessor constant ClassPrivateBrandCheck (line 72) | ClassPrivateBrandCheck constant ClassPrivateField (line 73) | ClassPrivateField constant ClassPrivateMethod (line 74) | ClassPrivateMethod constant ClassPrivateStaticAccessor (line 75) | ClassPrivateStaticAccessor constant ClassPrivateStaticField (line 76) | ClassPrivateStaticField constant ClassPrivateStaticMethod (line 77) | ClassPrivateStaticMethod constant ClassStaticBlocks (line 78) | ClassStaticBlocks constant ClassStaticField (line 79) | ClassStaticField constant ConstAndLet (line 80) | ConstAndLet constant Decorators (line 81) | Decorators constant DefaultArgument (line 82) | DefaultArgument constant Destructuring (line 83) | Destructuring constant DynamicImport (line 84) | DynamicImport constant ExponentOperator (line 85) | ExponentOperator constant ExportStarAs (line 86) | ExportStarAs constant ForAwait (line 87) | ForAwait constant ForOf (line 88) | ForOf constant FromBase64 (line 89) | FromBase64 constant FunctionNameConfigurable (line 90) | FunctionNameConfigurable constant FunctionOrClassPropertyAccess (line 91) | FunctionOrClassPropertyAccess constant Generator (line 92) | Generator constant Hashbang (line 93) | Hashbang constant ImportAssertions (line 94) | ImportAssertions constant ImportAttributes (line 95) | ImportAttributes constant ImportDefer (line 96) | ImportDefer constant ImportMeta (line 97) | ImportMeta constant ImportSource (line 98) | ImportSource constant InlineScript (line 99) | InlineScript constant LogicalAssignment (line 100) | LogicalAssignment constant NestedRestBinding (line 101) | NestedRestBinding constant NewTarget (line 102) | NewTarget constant NodeColonPrefixImport (line 103) | NodeColonPrefixImport constant NodeColonPrefixRequire (line 104) | NodeColonPrefixRequire constant NullishCoalescing (line 105) | NullishCoalescing constant ObjectAccessors (line 106) | ObjectAccessors constant ObjectExtensions (line 107) | ObjectExtensions constant ObjectRestSpread (line 108) | ObjectRestSpread constant OptionalCatchBinding (line 109) | OptionalCatchBinding constant OptionalChain (line 110) | OptionalChain constant RegexpDotAllFlag (line 111) | RegexpDotAllFlag constant RegexpLookbehindAssertions (line 112) | RegexpLookbehindAssertions constant RegexpMatchIndices (line 113) | RegexpMatchIndices constant RegexpNamedCaptureGroups (line 114) | RegexpNamedCaptureGroups constant RegexpSetNotation (line 115) | RegexpSetNotation constant RegexpStickyAndUnicodeFlags (line 116) | RegexpStickyAndUnicodeFlags constant RegexpUnicodePropertyEscapes (line 117) | RegexpUnicodePropertyEscapes constant RestArgument (line 118) | RestArgument constant TemplateLiteral (line 119) | TemplateLiteral constant TopLevelAwait (line 120) | TopLevelAwait constant TypeofExoticObjectIsObject (line 121) | TypeofExoticObjectIsObject constant UnicodeEscapes (line 122) | UnicodeEscapes constant Using (line 123) | Using function UnsupportedJSFeatures (line 924) | func UnsupportedJSFeatures(constraints map[Engine]Semver) (unsupported J... FILE: internal/config/config.go type JSXOptions (line 17) | type JSXOptions struct type TSJSX (line 28) | type TSJSX constant TSJSXNone (line 31) | TSJSXNone TSJSX = iota constant TSJSXPreserve (line 32) | TSJSXPreserve constant TSJSXReactNative (line 33) | TSJSXReactNative constant TSJSXReact (line 34) | TSJSXReact constant TSJSXReactJSX (line 35) | TSJSXReactJSX constant TSJSXReactJSXDev (line 36) | TSJSXReactJSXDev type TSOptions (line 39) | type TSOptions struct type TSConfigJSX (line 45) | type TSConfigJSX struct method ApplyExtendedConfig (line 54) | func (derived *TSConfigJSX) ApplyExtendedConfig(base TSConfigJSX) { method ApplyTo (line 69) | func (tsConfig *TSConfigJSX) ApplyTo(jsxOptions *JSXOptions) { type TSConfig (line 108) | type TSConfig struct method ApplyExtendedConfig (line 118) | func (derived *TSConfig) ApplyExtendedConfig(base TSConfig) { method UnusedImportFlags (line 139) | func (cfg *TSConfig) UnusedImportFlags() (flags TSUnusedImportFlags) { type Platform (line 152) | type Platform constant PlatformBrowser (line 155) | PlatformBrowser Platform = iota constant PlatformNode (line 156) | PlatformNode constant PlatformNeutral (line 157) | PlatformNeutral type SourceMap (line 160) | type SourceMap constant SourceMapNone (line 163) | SourceMapNone SourceMap = iota constant SourceMapInline (line 164) | SourceMapInline constant SourceMapLinkedWithComment (line 165) | SourceMapLinkedWithComment constant SourceMapExternalWithoutComment (line 166) | SourceMapExternalWithoutComment constant SourceMapInlineAndExternal (line 167) | SourceMapInlineAndExternal type LegalComments (line 170) | type LegalComments method HasExternalFile (line 180) | func (lc LegalComments) HasExternalFile() bool { constant LegalCommentsInline (line 173) | LegalCommentsInline LegalComments = iota constant LegalCommentsNone (line 174) | LegalCommentsNone constant LegalCommentsEndOfFile (line 175) | LegalCommentsEndOfFile constant LegalCommentsLinkedWithComment (line 176) | LegalCommentsLinkedWithComment constant LegalCommentsExternalWithoutComment (line 177) | LegalCommentsExternalWithoutComment type Loader (line 184) | type Loader method IsTypeScript (line 230) | func (loader Loader) IsTypeScript() bool { method IsCSS (line 238) | func (loader Loader) IsCSS() bool { method CanHaveSourceMap (line 247) | func (loader Loader) CanHaveSourceMap() bool { constant LoaderNone (line 187) | LoaderNone Loader = iota constant LoaderBase64 (line 188) | LoaderBase64 constant LoaderBinary (line 189) | LoaderBinary constant LoaderCopy (line 190) | LoaderCopy constant LoaderCSS (line 191) | LoaderCSS constant LoaderDataURL (line 192) | LoaderDataURL constant LoaderDefault (line 193) | LoaderDefault constant LoaderEmpty (line 194) | LoaderEmpty constant LoaderFile (line 195) | LoaderFile constant LoaderGlobalCSS (line 196) | LoaderGlobalCSS constant LoaderJS (line 197) | LoaderJS constant LoaderJSON (line 198) | LoaderJSON constant LoaderWithTypeJSON (line 199) | LoaderWithTypeJSON constant LoaderJSX (line 200) | LoaderJSX constant LoaderLocalCSS (line 201) | LoaderLocalCSS constant LoaderText (line 202) | LoaderText constant LoaderTS (line 203) | LoaderTS constant LoaderTSNoAmbiguousLessThan (line 204) | LoaderTSNoAmbiguousLessThan constant LoaderTSX (line 205) | LoaderTSX function LoaderFromFileExtension (line 259) | func LoaderFromFileExtension(extensionToLoader map[string]Loader, base s... type Format (line 283) | type Format method KeepESMImportExportSyntax (line 322) | func (f Format) KeepESMImportExportSyntax() bool { method String (line 326) | func (f Format) String() string { constant FormatPreserve (line 289) | FormatPreserve Format = iota constant FormatIIFE (line 305) | FormatIIFE constant FormatCommonJS (line 312) | FormatCommonJS constant FormatESModule (line 319) | FormatESModule type StdinInfo (line 338) | type StdinInfo struct type WildcardPattern (line 345) | type WildcardPattern struct type ExternalMatchers (line 350) | type ExternalMatchers struct method HasMatchers (line 355) | func (matchers ExternalMatchers) HasMatchers() bool { type ExternalSettings (line 359) | type ExternalSettings struct type APICall (line 364) | type APICall constant BuildCall (line 367) | BuildCall APICall = iota constant TransformCall (line 368) | TransformCall type Mode (line 371) | type Mode constant ModePassThrough (line 374) | ModePassThrough Mode = iota constant ModeConvertFormat (line 375) | ModeConvertFormat constant ModeBundle (line 376) | ModeBundle type MaybeBool (line 379) | type MaybeBool constant Unspecified (line 382) | Unspecified MaybeBool = iota constant True (line 383) | True constant False (line 384) | False type CancelFlag (line 387) | type CancelFlag struct method Cancel (line 391) | func (flag *CancelFlag) Cancel() { method DidCancel (line 396) | func (flag *CancelFlag) DidCancel() bool { type Options (line 400) | type Options struct type TSImportsNotUsedAsValues (line 516) | type TSImportsNotUsedAsValues constant TSImportsNotUsedAsValues_None (line 519) | TSImportsNotUsedAsValues_None TSImportsNotUsedAsValues = iota constant TSImportsNotUsedAsValues_Remove (line 520) | TSImportsNotUsedAsValues_Remove constant TSImportsNotUsedAsValues_Preserve (line 521) | TSImportsNotUsedAsValues_Preserve constant TSImportsNotUsedAsValues_Error (line 522) | TSImportsNotUsedAsValues_Error type TSUnusedImportFlags (line 534) | type TSUnusedImportFlags constant TSUnusedImport_KeepStmt (line 564) | TSUnusedImport_KeepStmt TSUnusedImportFlags = 1 << iota constant TSUnusedImport_KeepValues (line 565) | TSUnusedImport_KeepValues type TSTarget (line 568) | type TSTarget constant TSTargetUnspecified (line 571) | TSTargetUnspecified TSTarget = iota constant TSTargetBelowES2022 (line 572) | TSTargetBelowES2022 constant TSTargetAtOrAboveES2022 (line 573) | TSTargetAtOrAboveES2022 type TSAlwaysStrict (line 576) | type TSAlwaysStrict struct type PathPlaceholder (line 586) | type PathPlaceholder constant NoPlaceholder (line 589) | NoPlaceholder PathPlaceholder = iota constant DirPlaceholder (line 593) | DirPlaceholder constant NamePlaceholder (line 597) | NamePlaceholder constant HashPlaceholder (line 601) | HashPlaceholder constant ExtPlaceholder (line 605) | ExtPlaceholder type PathTemplate (line 608) | type PathTemplate struct type PathPlaceholders (line 613) | type PathPlaceholders struct method Get (line 620) | func (placeholders PathPlaceholders) Get(placeholder PathPlaceholder) ... function TemplateToString (line 634) | func TemplateToString(template []PathTemplate) string { function HasPlaceholder (line 656) | func HasPlaceholder(template []PathTemplate, placeholder PathPlaceholder... function SubstituteTemplate (line 665) | func SubstituteTemplate(template []PathTemplate, placeholders PathPlaceh... function ShouldCallRuntimeRequire (line 696) | func ShouldCallRuntimeRequire(mode Mode, outputFormat Format) bool { type InjectedDefine (line 700) | type InjectedDefine struct type InjectedFile (line 706) | type InjectedFile struct type InjectableExport (line 713) | type InjectableExport struct function compileFilter (line 721) | func compileFilter(filter string) (result *regexp.Regexp) { function CompileFilterForPlugin (line 756) | func CompileFilterForPlugin(pluginName string, kind string, filter strin... function PluginAppliesToPath (line 769) | func PluginAppliesToPath(path logger.Path, filter *regexp.Regexp, namesp... type Plugin (line 776) | type Plugin struct type OnStart (line 783) | type OnStart struct type OnStartResult (line 788) | type OnStartResult struct type OnResolve (line 793) | type OnResolve struct type OnResolveArgs (line 800) | type OnResolveArgs struct type OnResolveResult (line 809) | type OnResolveResult struct type OnLoad (line 824) | type OnLoad struct type OnLoadArgs (line 831) | type OnLoadArgs struct type OnLoadResult (line 836) | type OnLoadResult struct function PrettyPrintTargetEnvironment (line 852) | func PrettyPrintTargetEnvironment(originalTargetEnv string, unsupportedJ... type MetafileFormat (line 876) | type MetafileFormat method MaybeRemoveWhitespace (line 883) | func (mf MetafileFormat) MaybeRemoveWhitespace(fmt string) string { constant UnminifiedMetafile (line 879) | UnminifiedMetafile MetafileFormat = iota constant MinifiedMetafile (line 880) | MinifiedMetafile FILE: internal/config/globals.go type DefineExpr (line 917) | type DefineExpr struct type DefineData (line 923) | type DefineData struct type DefineFlags (line 929) | type DefineFlags method Has (line 953) | func (flags DefineFlags) Has(flag DefineFlags) bool { constant CanBeRemovedIfUnused (line 935) | CanBeRemovedIfUnused DefineFlags = 1 << iota constant CallCanBeUnwrappedIfUnused (line 940) | CallCanBeUnwrappedIfUnused constant MethodCallsMustBeReplacedWithUndefined (line 946) | MethodCallsMustBeReplacedWithUndefined constant IsSymbolInstance (line 950) | IsSymbolInstance function mergeDefineData (line 957) | func mergeDefineData(old DefineData, new DefineData) DefineData { type ProcessedDefines (line 962) | type ProcessedDefines struct function ProcessDefines (line 972) | func ProcessDefines(userDefines []DefineData) ProcessedDefines { FILE: internal/css_ast/css_ast.go type AST (line 27) | type AST struct type Composes (line 47) | type Composes struct type ImportedComposesName (line 75) | type ImportedComposesName struct type Token (line 85) | type Token struct method Equal (line 163) | func (a Token) Equal(b Token, check *CrossFileEqualityCheck) bool { method EqualIgnoringWhitespace (line 246) | func (a Token) EqualIgnoringWhitespace(b Token) bool { method NumberOrFractionForPercentage (line 292) | func (t Token) NumberOrFractionForPercentage(percentReferenceRange flo... method ClampedFractionForPercentage (line 314) | func (t Token) ClampedFractionForPercentage() (float64, bool) { method TurnLengthIntoNumberIfZero (line 333) | func (t *Token) TurnLengthIntoNumberIfZero() bool { method TurnLengthOrPercentageIntoNumberIfZero (line 342) | func (t *Token) TurnLengthOrPercentageIntoNumberIfZero() bool { method PercentageValue (line 351) | func (t Token) PercentageValue() string { method DimensionValue (line 355) | func (t Token) DimensionValue() string { method DimensionUnit (line 359) | func (t Token) DimensionUnit() string { method DimensionUnitIsSafeLength (line 363) | func (t Token) DimensionUnitIsSafeLength() bool { method IsZero (line 373) | func (t Token) IsZero() bool { method IsOne (line 377) | func (t Token) IsOne() bool { method IsAngle (line 381) | func (t Token) IsAngle() bool { type WhitespaceFlags (line 130) | type WhitespaceFlags constant WhitespaceBefore (line 133) | WhitespaceBefore WhitespaceFlags = 1 << iota constant WhitespaceAfter (line 134) | WhitespaceAfter type CrossFileEqualityCheck (line 138) | type CrossFileEqualityCheck struct method RefsAreEquivalent (line 146) | func (check *CrossFileEqualityCheck) RefsAreEquivalent(a ast.Ref, b as... function TokensEqual (line 218) | func TokensEqual(a []Token, b []Token, check *CrossFileEqualityCheck) bo... function HashTokens (line 230) | func HashTokens(hash uint32, tokens []Token) uint32 { function TokensEqualIgnoringWhitespace (line 260) | func TokensEqualIgnoringWhitespace(a []Token, b []Token) bool { function TokensAreCommaSeparated (line 272) | func TokensAreCommaSeparated(tokens []Token) bool { type PercentageFlags (line 284) | type PercentageFlags constant AllowPercentageBelow0 (line 287) | AllowPercentageBelow0 PercentageFlags = 1 << iota constant AllowPercentageAbove100 (line 288) | AllowPercentageAbove100 constant AllowAnyPercentage (line 289) | AllowAnyPercentage = AllowPercentageBelow0 | AllowPercentageAbove100 function CloneTokensWithoutImportRecords (line 389) | func CloneTokensWithoutImportRecords(tokensIn []Token) (tokensOut []Toke... function CloneTokensWithImportRecords (line 400) | func CloneTokensWithImportRecords( function CloneMediaQueriesWithImportRecords (line 433) | func CloneMediaQueriesWithImportRecords( type Rule (line 451) | type Rule struct type R (line 456) | type R interface function RulesEqual (line 461) | func RulesEqual(a []Rule, b []Rule, check *CrossFileEqualityCheck) bool { function HashRules (line 473) | func HashRules(hash uint32, rules []Rule) uint32 { type RAtCharset (line 485) | type RAtCharset struct method Equal (line 489) | func (a *RAtCharset) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 494) | func (r *RAtCharset) Hash() (uint32, bool) { type ImportConditions (line 500) | type ImportConditions struct method CloneWithImportRecords (line 525) | func (c *ImportConditions) CloneWithImportRecords(importRecordsIn []as... type RAtImport (line 533) | type RAtImport struct method Equal (line 538) | func (*RAtImport) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 542) | func (r *RAtImport) Hash() (uint32, bool) { type RAtKeyframes (line 546) | type RAtKeyframes struct method Equal (line 560) | func (a *RAtKeyframes) Equal(rule R, check *CrossFileEqualityCheck) bo... method Hash (line 581) | func (r *RAtKeyframes) Hash() (uint32, bool) { type KeyframeBlock (line 553) | type KeyframeBlock struct type RKnownAt (line 595) | type RKnownAt struct method Equal (line 602) | func (a *RKnownAt) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 607) | func (r *RKnownAt) Hash() (uint32, bool) { type RUnknownAt (line 615) | type RUnknownAt struct method Equal (line 621) | func (a *RUnknownAt) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 626) | func (r *RUnknownAt) Hash() (uint32, bool) { type RSelector (line 634) | type RSelector struct method Equal (line 640) | func (a *RSelector) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 645) | func (r *RSelector) Hash() (uint32, bool) { type RQualified (line 653) | type RQualified struct method Equal (line 659) | func (a *RQualified) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 664) | func (r *RQualified) Hash() (uint32, bool) { type RDeclaration (line 671) | type RDeclaration struct method Equal (line 679) | func (a *RDeclaration) Equal(rule R, check *CrossFileEqualityCheck) bo... method Hash (line 684) | func (r *RDeclaration) Hash() (uint32, bool) { type RBadDeclaration (line 705) | type RBadDeclaration struct method Equal (line 709) | func (a *RBadDeclaration) Equal(rule R, check *CrossFileEqualityCheck)... method Hash (line 714) | func (r *RBadDeclaration) Hash() (uint32, bool) { type RComment (line 720) | type RComment struct method Equal (line 724) | func (a *RComment) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 729) | func (r *RComment) Hash() (uint32, bool) { type RAtLayer (line 735) | type RAtLayer struct method Equal (line 741) | func (a *RAtLayer) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 761) | func (r *RAtLayer) Hash() (uint32, bool) { type RAtMedia (line 774) | type RAtMedia struct method Equal (line 780) | func (a *RAtMedia) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 785) | func (r *RAtMedia) Hash() (uint32, bool) { type MediaQuery (line 792) | type MediaQuery struct type MQ (line 797) | type MQ interface function MediaQueriesEqual (line 804) | func MediaQueriesEqual(a []MediaQuery, b []MediaQuery, check *CrossFileE... function MediaQueriesEqualIgnoringWhitespace (line 816) | func MediaQueriesEqualIgnoringWhitespace(a []MediaQuery, b []MediaQuery)... function HashMediaQueries (line 828) | func HashMediaQueries(hash uint32, queries []MediaQuery) uint32 { type MQTypeOp (line 836) | type MQTypeOp constant MQTypeOpNone (line 839) | MQTypeOpNone MQTypeOp = iota constant MQTypeOpNot (line 840) | MQTypeOpNot constant MQTypeOpOnly (line 841) | MQTypeOpOnly type MQType (line 844) | type MQType struct method Equal (line 850) | func (q *MQType) Equal(query MQ, check *CrossFileEqualityCheck) bool { method EqualIgnoringWhitespace (line 858) | func (q *MQType) EqualIgnoringWhitespace(query MQ) bool { method Hash (line 866) | func (q *MQType) Hash() uint32 { method CloneWithImportRecords (line 876) | func (q *MQType) CloneWithImportRecords(importRecordsIn []ast.ImportRe... type MQNot (line 884) | type MQNot struct method Equal (line 888) | func (q *MQNot) Equal(query MQ, check *CrossFileEqualityCheck) bool { method EqualIgnoringWhitespace (line 893) | func (q *MQNot) EqualIgnoringWhitespace(query MQ) bool { method Hash (line 898) | func (q *MQNot) Hash() uint32 { method CloneWithImportRecords (line 904) | func (q *MQNot) CloneWithImportRecords(importRecordsIn []ast.ImportRec... type MQBinaryOp (line 909) | type MQBinaryOp constant MQBinaryOpAnd (line 912) | MQBinaryOpAnd MQBinaryOp = iota constant MQBinaryOpOr (line 913) | MQBinaryOpOr type MQBinary (line 916) | type MQBinary struct method Equal (line 921) | func (q *MQBinary) Equal(query MQ, check *CrossFileEqualityCheck) bool { method EqualIgnoringWhitespace (line 926) | func (q *MQBinary) EqualIgnoringWhitespace(query MQ) bool { method Hash (line 931) | func (q *MQBinary) Hash() uint32 { method CloneWithImportRecords (line 938) | func (q *MQBinary) CloneWithImportRecords(importRecordsIn []ast.Import... type MQArbitraryTokens (line 948) | type MQArbitraryTokens struct method Equal (line 952) | func (q *MQArbitraryTokens) Equal(query MQ, check *CrossFileEqualityCh... method EqualIgnoringWhitespace (line 957) | func (q *MQArbitraryTokens) EqualIgnoringWhitespace(query MQ) bool { method Hash (line 962) | func (q *MQArbitraryTokens) Hash() uint32 { method CloneWithImportRecords (line 968) | func (q *MQArbitraryTokens) CloneWithImportRecords(importRecordsIn []a... type MQPlainOrBoolean (line 973) | type MQPlainOrBoolean struct method Equal (line 978) | func (q *MQPlainOrBoolean) Equal(query MQ, check *CrossFileEqualityChe... method EqualIgnoringWhitespace (line 983) | func (q *MQPlainOrBoolean) EqualIgnoringWhitespace(query MQ) bool { method Hash (line 988) | func (q *MQPlainOrBoolean) Hash() uint32 { method CloneWithImportRecords (line 995) | func (q *MQPlainOrBoolean) CloneWithImportRecords(importRecordsIn []as... type MQRange (line 1003) | type MQRange struct method Equal (line 1012) | func (q *MQRange) Equal(query MQ, check *CrossFileEqualityCheck) bool { method EqualIgnoringWhitespace (line 1018) | func (q *MQRange) EqualIgnoringWhitespace(query MQ) bool { method Hash (line 1024) | func (q *MQRange) Hash() uint32 { method CloneWithImportRecords (line 1034) | func (q *MQRange) CloneWithImportRecords(importRecordsIn []ast.ImportR... type MQCmp (line 1046) | type MQCmp method String (line 1057) | func (cmp MQCmp) String() string { method Dir (line 1071) | func (cmp MQCmp) Dir() int { method Flip (line 1081) | func (cmp MQCmp) Flip() MQCmp { method Reverse (line 1095) | func (cmp MQCmp) Reverse() MQCmp { constant MQCmpNone (line 1049) | MQCmpNone MQCmp = iota constant MQCmpEq (line 1050) | MQCmpEq constant MQCmpLt (line 1051) | MQCmpLt constant MQCmpLe (line 1052) | MQCmpLe constant MQCmpGt (line 1053) | MQCmpGt constant MQCmpGe (line 1054) | MQCmpGe type RAtScope (line 1109) | type RAtScope struct method Equal (line 1116) | func (a *RAtScope) Equal(rule R, check *CrossFileEqualityCheck) bool { method Hash (line 1121) | func (r *RAtScope) Hash() (uint32, bool) { type ComplexSelector (line 1129) | type ComplexSelector struct method Clone (line 1164) | func (s ComplexSelector) Clone() ComplexSelector { method ContainsNestingCombinator (line 1172) | func (sel ComplexSelector) ContainsNestingCombinator() bool { method IsRelative (line 1190) | func (sel ComplexSelector) IsRelative() bool { method UsesPseudoElement (line 1213) | func (sel ComplexSelector) UsesPseudoElement() bool { method Equal (line 1236) | func (a ComplexSelector) Equal(b ComplexSelector, check *CrossFileEqua... function ComplexSelectorsEqual (line 1133) | func ComplexSelectorsEqual(a []ComplexSelector, b []ComplexSelector, che... function HashComplexSelectors (line 1145) | func HashComplexSelectors(hash uint32, selectors []ComplexSelector) uint... function tokensContainAmpersandRecursive (line 1201) | func tokensContainAmpersandRecursive(tokens []Token) bool { type Combinator (line 1266) | type Combinator struct type CompoundSelector (line 1271) | type CompoundSelector struct method IsSingleAmpersand (line 1281) | func (sel CompoundSelector) IsSingleAmpersand() bool { method IsInvalidBecauseEmpty (line 1285) | func (sel CompoundSelector) IsInvalidBecauseEmpty() bool { method Range (line 1289) | func (sel CompoundSelector) Range() (r logger.Range) { method Clone (line 1307) | func (sel CompoundSelector) Clone() CompoundSelector { type NameToken (line 1327) | type NameToken struct method Equal (line 1333) | func (a NameToken) Equal(b NameToken) bool { type NamespacedName (line 1337) | type NamespacedName struct method Range (line 1345) | func (n NamespacedName) Range() logger.Range { method Clone (line 1353) | func (n NamespacedName) Clone() NamespacedName { method Equal (line 1362) | func (a NamespacedName) Equal(b NamespacedName) bool { type SubclassSelector (line 1367) | type SubclassSelector struct type SS (line 1372) | type SS interface type SSHash (line 1378) | type SSHash struct method Equal (line 1382) | func (a *SSHash) Equal(ss SS, check *CrossFileEqualityCheck) bool { method Hash (line 1387) | func (ss *SSHash) Hash() uint32 { method Clone (line 1392) | func (ss *SSHash) Clone() SS { type SSClass (line 1397) | type SSClass struct method Equal (line 1401) | func (a *SSClass) Equal(ss SS, check *CrossFileEqualityCheck) bool { method Hash (line 1406) | func (ss *SSClass) Hash() uint32 { method Clone (line 1411) | func (ss *SSClass) Clone() SS { type SSAttribute (line 1416) | type SSAttribute struct method Equal (line 1423) | func (a *SSAttribute) Equal(ss SS, check *CrossFileEqualityCheck) bool { method Hash (line 1429) | func (ss *SSAttribute) Hash() uint32 { method Clone (line 1437) | func (ss *SSAttribute) Clone() SS { type SSPseudoClass (line 1443) | type SSPseudoClass struct method Equal (line 1449) | func (a *SSPseudoClass) Equal(ss SS, check *CrossFileEqualityCheck) bo... method Hash (line 1454) | func (ss *SSPseudoClass) Hash() uint32 { method Clone (line 1461) | func (ss *SSPseudoClass) Clone() SS { type PseudoClassKind (line 1469) | type PseudoClassKind method HasNthIndex (line 1484) | func (kind PseudoClassKind) HasNthIndex() bool { method String (line 1488) | func (kind PseudoClassKind) String() string { constant PseudoClassGlobal (line 1472) | PseudoClassGlobal PseudoClassKind = iota constant PseudoClassHas (line 1473) | PseudoClassHas constant PseudoClassIs (line 1474) | PseudoClassIs constant PseudoClassLocal (line 1475) | PseudoClassLocal constant PseudoClassNot (line 1476) | PseudoClassNot constant PseudoClassNthChild (line 1477) | PseudoClassNthChild constant PseudoClassNthLastChild (line 1478) | PseudoClassNthLastChild constant PseudoClassNthLastOfType (line 1479) | PseudoClassNthLastOfType constant PseudoClassNthOfType (line 1480) | PseudoClassNthOfType constant PseudoClassWhere (line 1481) | PseudoClassWhere type NthIndex (line 1516) | type NthIndex struct method Minify (line 1521) | func (index *NthIndex) Minify() { type SSPseudoClassWithSelectorList (line 1553) | type SSPseudoClassWithSelectorList struct method Equal (line 1559) | func (a *SSPseudoClassWithSelectorList) Equal(ss SS, check *CrossFileE... method Hash (line 1564) | func (ss *SSPseudoClassWithSelectorList) Hash() uint32 { method Clone (line 1573) | func (ss *SSPseudoClassWithSelectorList) Clone() SS { FILE: internal/css_ast/css_decl_table.go type D (line 10) | type D constant DUnknown (line 13) | DUnknown D = iota constant DAlignContent (line 14) | DAlignContent constant DAlignItems (line 15) | DAlignItems constant DAlignSelf (line 16) | DAlignSelf constant DAlignmentBaseline (line 17) | DAlignmentBaseline constant DAll (line 18) | DAll constant DAnimation (line 19) | DAnimation constant DAnimationDelay (line 20) | DAnimationDelay constant DAnimationDirection (line 21) | DAnimationDirection constant DAnimationDuration (line 22) | DAnimationDuration constant DAnimationFillMode (line 23) | DAnimationFillMode constant DAnimationIterationCount (line 24) | DAnimationIterationCount constant DAnimationName (line 25) | DAnimationName constant DAnimationPlayState (line 26) | DAnimationPlayState constant DAnimationTimingFunction (line 27) | DAnimationTimingFunction constant DAppearance (line 28) | DAppearance constant DBackdropFilter (line 29) | DBackdropFilter constant DBackfaceVisibility (line 30) | DBackfaceVisibility constant DBackground (line 31) | DBackground constant DBackgroundAttachment (line 32) | DBackgroundAttachment constant DBackgroundClip (line 33) | DBackgroundClip constant DBackgroundColor (line 34) | DBackgroundColor constant DBackgroundImage (line 35) | DBackgroundImage constant DBackgroundOrigin (line 36) | DBackgroundOrigin constant DBackgroundPosition (line 37) | DBackgroundPosition constant DBackgroundPositionX (line 38) | DBackgroundPositionX constant DBackgroundPositionY (line 39) | DBackgroundPositionY constant DBackgroundRepeat (line 40) | DBackgroundRepeat constant DBackgroundSize (line 41) | DBackgroundSize constant DBaselineShift (line 42) | DBaselineShift constant DBlockSize (line 43) | DBlockSize constant DBorder (line 44) | DBorder constant DBorderBlockEnd (line 45) | DBorderBlockEnd constant DBorderBlockEndColor (line 46) | DBorderBlockEndColor constant DBorderBlockEndStyle (line 47) | DBorderBlockEndStyle constant DBorderBlockEndWidth (line 48) | DBorderBlockEndWidth constant DBorderBlockStart (line 49) | DBorderBlockStart constant DBorderBlockStartColor (line 50) | DBorderBlockStartColor constant DBorderBlockStartStyle (line 51) | DBorderBlockStartStyle constant DBorderBlockStartWidth (line 52) | DBorderBlockStartWidth constant DBorderBottom (line 53) | DBorderBottom constant DBorderBottomColor (line 54) | DBorderBottomColor constant DBorderBottomLeftRadius (line 55) | DBorderBottomLeftRadius constant DBorderBottomRightRadius (line 56) | DBorderBottomRightRadius constant DBorderBottomStyle (line 57) | DBorderBottomStyle constant DBorderBottomWidth (line 58) | DBorderBottomWidth constant DBorderCollapse (line 59) | DBorderCollapse constant DBorderColor (line 60) | DBorderColor constant DBorderImage (line 61) | DBorderImage constant DBorderImageOutset (line 62) | DBorderImageOutset constant DBorderImageRepeat (line 63) | DBorderImageRepeat constant DBorderImageSlice (line 64) | DBorderImageSlice constant DBorderImageSource (line 65) | DBorderImageSource constant DBorderImageWidth (line 66) | DBorderImageWidth constant DBorderInlineEnd (line 67) | DBorderInlineEnd constant DBorderInlineEndColor (line 68) | DBorderInlineEndColor constant DBorderInlineEndStyle (line 69) | DBorderInlineEndStyle constant DBorderInlineEndWidth (line 70) | DBorderInlineEndWidth constant DBorderInlineStart (line 71) | DBorderInlineStart constant DBorderInlineStartColor (line 72) | DBorderInlineStartColor constant DBorderInlineStartStyle (line 73) | DBorderInlineStartStyle constant DBorderInlineStartWidth (line 74) | DBorderInlineStartWidth constant DBorderLeft (line 75) | DBorderLeft constant DBorderLeftColor (line 76) | DBorderLeftColor constant DBorderLeftStyle (line 77) | DBorderLeftStyle constant DBorderLeftWidth (line 78) | DBorderLeftWidth constant DBorderRadius (line 79) | DBorderRadius constant DBorderRight (line 80) | DBorderRight constant DBorderRightColor (line 81) | DBorderRightColor constant DBorderRightStyle (line 82) | DBorderRightStyle constant DBorderRightWidth (line 83) | DBorderRightWidth constant DBorderSpacing (line 84) | DBorderSpacing constant DBorderStyle (line 85) | DBorderStyle constant DBorderTop (line 86) | DBorderTop constant DBorderTopColor (line 87) | DBorderTopColor constant DBorderTopLeftRadius (line 88) | DBorderTopLeftRadius constant DBorderTopRightRadius (line 89) | DBorderTopRightRadius constant DBorderTopStyle (line 90) | DBorderTopStyle constant DBorderTopWidth (line 91) | DBorderTopWidth constant DBorderWidth (line 92) | DBorderWidth constant DBottom (line 93) | DBottom constant DBoxDecorationBreak (line 94) | DBoxDecorationBreak constant DBoxShadow (line 95) | DBoxShadow constant DBoxSizing (line 96) | DBoxSizing constant DBreakAfter (line 97) | DBreakAfter constant DBreakBefore (line 98) | DBreakBefore constant DBreakInside (line 99) | DBreakInside constant DCaptionSide (line 100) | DCaptionSide constant DCaretColor (line 101) | DCaretColor constant DClear (line 102) | DClear constant DClip (line 103) | DClip constant DClipPath (line 104) | DClipPath constant DClipRule (line 105) | DClipRule constant DColor (line 106) | DColor constant DColorInterpolation (line 107) | DColorInterpolation constant DColorInterpolationFilters (line 108) | DColorInterpolationFilters constant DColumnCount (line 109) | DColumnCount constant DColumnFill (line 110) | DColumnFill constant DColumnGap (line 111) | DColumnGap constant DColumnRule (line 112) | DColumnRule constant DColumnRuleColor (line 113) | DColumnRuleColor constant DColumnRuleStyle (line 114) | DColumnRuleStyle constant DColumnRuleWidth (line 115) | DColumnRuleWidth constant DColumnSpan (line 116) | DColumnSpan constant DColumnWidth (line 117) | DColumnWidth constant DColumns (line 118) | DColumns constant DComposes (line 119) | DComposes constant DContainer (line 120) | DContainer constant DContainerName (line 121) | DContainerName constant DContainerType (line 122) | DContainerType constant DContent (line 123) | DContent constant DCounterIncrement (line 124) | DCounterIncrement constant DCounterReset (line 125) | DCounterReset constant DCssFloat (line 126) | DCssFloat constant DCssText (line 127) | DCssText constant DCursor (line 128) | DCursor constant DDirection (line 129) | DDirection constant DDisplay (line 130) | DDisplay constant DDominantBaseline (line 131) | DDominantBaseline constant DEmptyCells (line 132) | DEmptyCells constant DFill (line 133) | DFill constant DFillOpacity (line 134) | DFillOpacity constant DFillRule (line 135) | DFillRule constant DFilter (line 136) | DFilter constant DFlex (line 137) | DFlex constant DFlexBasis (line 138) | DFlexBasis constant DFlexDirection (line 139) | DFlexDirection constant DFlexFlow (line 140) | DFlexFlow constant DFlexGrow (line 141) | DFlexGrow constant DFlexShrink (line 142) | DFlexShrink constant DFlexWrap (line 143) | DFlexWrap constant DFloat (line 144) | DFloat constant DFloodColor (line 145) | DFloodColor constant DFloodOpacity (line 146) | DFloodOpacity constant DFont (line 147) | DFont constant DFontFamily (line 148) | DFontFamily constant DFontFeatureSettings (line 149) | DFontFeatureSettings constant DFontKerning (line 150) | DFontKerning constant DFontSize (line 151) | DFontSize constant DFontSizeAdjust (line 152) | DFontSizeAdjust constant DFontStretch (line 153) | DFontStretch constant DFontStyle (line 154) | DFontStyle constant DFontSynthesis (line 155) | DFontSynthesis constant DFontVariant (line 156) | DFontVariant constant DFontVariantCaps (line 157) | DFontVariantCaps constant DFontVariantEastAsian (line 158) | DFontVariantEastAsian constant DFontVariantLigatures (line 159) | DFontVariantLigatures constant DFontVariantNumeric (line 160) | DFontVariantNumeric constant DFontVariantPosition (line 161) | DFontVariantPosition constant DFontWeight (line 162) | DFontWeight constant DGap (line 163) | DGap constant DGlyphOrientationVertical (line 164) | DGlyphOrientationVertical constant DGrid (line 165) | DGrid constant DGridArea (line 166) | DGridArea constant DGridAutoColumns (line 167) | DGridAutoColumns constant DGridAutoFlow (line 168) | DGridAutoFlow constant DGridAutoRows (line 169) | DGridAutoRows constant DGridColumn (line 170) | DGridColumn constant DGridColumnEnd (line 171) | DGridColumnEnd constant DGridColumnGap (line 172) | DGridColumnGap constant DGridColumnStart (line 173) | DGridColumnStart constant DGridGap (line 174) | DGridGap constant DGridRow (line 175) | DGridRow constant DGridRowEnd (line 176) | DGridRowEnd constant DGridRowGap (line 177) | DGridRowGap constant DGridRowStart (line 178) | DGridRowStart constant DGridTemplate (line 179) | DGridTemplate constant DGridTemplateAreas (line 180) | DGridTemplateAreas constant DGridTemplateColumns (line 181) | DGridTemplateColumns constant DGridTemplateRows (line 182) | DGridTemplateRows constant DHeight (line 183) | DHeight constant DHyphens (line 184) | DHyphens constant DImageOrientation (line 185) | DImageOrientation constant DImageRendering (line 186) | DImageRendering constant DInitialLetter (line 187) | DInitialLetter constant DInlineSize (line 188) | DInlineSize constant DInset (line 189) | DInset constant DJustifyContent (line 190) | DJustifyContent constant DJustifyItems (line 191) | DJustifyItems constant DJustifySelf (line 192) | DJustifySelf constant DLeft (line 193) | DLeft constant DLetterSpacing (line 194) | DLetterSpacing constant DLightingColor (line 195) | DLightingColor constant DLineBreak (line 196) | DLineBreak constant DLineHeight (line 197) | DLineHeight constant DListStyle (line 198) | DListStyle constant DListStyleImage (line 199) | DListStyleImage constant DListStylePosition (line 200) | DListStylePosition constant DListStyleType (line 201) | DListStyleType constant DMargin (line 202) | DMargin constant DMarginBlockEnd (line 203) | DMarginBlockEnd constant DMarginBlockStart (line 204) | DMarginBlockStart constant DMarginBottom (line 205) | DMarginBottom constant DMarginInlineEnd (line 206) | DMarginInlineEnd constant DMarginInlineStart (line 207) | DMarginInlineStart constant DMarginLeft (line 208) | DMarginLeft constant DMarginRight (line 209) | DMarginRight constant DMarginTop (line 210) | DMarginTop constant DMarker (line 211) | DMarker constant DMarkerEnd (line 212) | DMarkerEnd constant DMarkerMid (line 213) | DMarkerMid constant DMarkerStart (line 214) | DMarkerStart constant DMask (line 215) | DMask constant DMaskComposite (line 216) | DMaskComposite constant DMaskImage (line 217) | DMaskImage constant DMaskOrigin (line 218) | DMaskOrigin constant DMaskPosition (line 219) | DMaskPosition constant DMaskRepeat (line 220) | DMaskRepeat constant DMaskSize (line 221) | DMaskSize constant DMaskType (line 222) | DMaskType constant DMaxBlockSize (line 223) | DMaxBlockSize constant DMaxHeight (line 224) | DMaxHeight constant DMaxInlineSize (line 225) | DMaxInlineSize constant DMaxWidth (line 226) | DMaxWidth constant DMinBlockSize (line 227) | DMinBlockSize constant DMinHeight (line 228) | DMinHeight constant DMinInlineSize (line 229) | DMinInlineSize constant DMinWidth (line 230) | DMinWidth constant DObjectFit (line 231) | DObjectFit constant DObjectPosition (line 232) | DObjectPosition constant DOpacity (line 233) | DOpacity constant DOrder (line 234) | DOrder constant DOrphans (line 235) | DOrphans constant DOutline (line 236) | DOutline constant DOutlineColor (line 237) | DOutlineColor constant DOutlineOffset (line 238) | DOutlineOffset constant DOutlineStyle (line 239) | DOutlineStyle constant DOutlineWidth (line 240) | DOutlineWidth constant DOverflow (line 241) | DOverflow constant DOverflowAnchor (line 242) | DOverflowAnchor constant DOverflowWrap (line 243) | DOverflowWrap constant DOverflowX (line 244) | DOverflowX constant DOverflowY (line 245) | DOverflowY constant DOverscrollBehavior (line 246) | DOverscrollBehavior constant DOverscrollBehaviorBlock (line 247) | DOverscrollBehaviorBlock constant DOverscrollBehaviorInline (line 248) | DOverscrollBehaviorInline constant DOverscrollBehaviorX (line 249) | DOverscrollBehaviorX constant DOverscrollBehaviorY (line 250) | DOverscrollBehaviorY constant DPadding (line 251) | DPadding constant DPaddingBlockEnd (line 252) | DPaddingBlockEnd constant DPaddingBlockStart (line 253) | DPaddingBlockStart constant DPaddingBottom (line 254) | DPaddingBottom constant DPaddingInlineEnd (line 255) | DPaddingInlineEnd constant DPaddingInlineStart (line 256) | DPaddingInlineStart constant DPaddingLeft (line 257) | DPaddingLeft constant DPaddingRight (line 258) | DPaddingRight constant DPaddingTop (line 259) | DPaddingTop constant DPageBreakAfter (line 260) | DPageBreakAfter constant DPageBreakBefore (line 261) | DPageBreakBefore constant DPageBreakInside (line 262) | DPageBreakInside constant DPaintOrder (line 263) | DPaintOrder constant DPerspective (line 264) | DPerspective constant DPerspectiveOrigin (line 265) | DPerspectiveOrigin constant DPlaceContent (line 266) | DPlaceContent constant DPlaceItems (line 267) | DPlaceItems constant DPlaceSelf (line 268) | DPlaceSelf constant DPointerEvents (line 269) | DPointerEvents constant DPosition (line 270) | DPosition constant DPrintColorAdjust (line 271) | DPrintColorAdjust constant DQuotes (line 272) | DQuotes constant DResize (line 273) | DResize constant DRight (line 274) | DRight constant DRotate (line 275) | DRotate constant DRowGap (line 276) | DRowGap constant DRubyAlign (line 277) | DRubyAlign constant DRubyPosition (line 278) | DRubyPosition constant DScale (line 279) | DScale constant DScrollBehavior (line 280) | DScrollBehavior constant DShapeRendering (line 281) | DShapeRendering constant DStopColor (line 282) | DStopColor constant DStopOpacity (line 283) | DStopOpacity constant DStroke (line 284) | DStroke constant DStrokeDasharray (line 285) | DStrokeDasharray constant DStrokeDashoffset (line 286) | DStrokeDashoffset constant DStrokeLinecap (line 287) | DStrokeLinecap constant DStrokeLinejoin (line 288) | DStrokeLinejoin constant DStrokeMiterlimit (line 289) | DStrokeMiterlimit constant DStrokeOpacity (line 290) | DStrokeOpacity constant DStrokeWidth (line 291) | DStrokeWidth constant DTabSize (line 292) | DTabSize constant DTableLayout (line 293) | DTableLayout constant DTextAlign (line 294) | DTextAlign constant DTextAlignLast (line 295) | DTextAlignLast constant DTextAnchor (line 296) | DTextAnchor constant DTextCombineUpright (line 297) | DTextCombineUpright constant DTextDecoration (line 298) | DTextDecoration constant DTextDecorationColor (line 299) | DTextDecorationColor constant DTextDecorationLine (line 300) | DTextDecorationLine constant DTextDecorationSkip (line 301) | DTextDecorationSkip constant DTextDecorationStyle (line 302) | DTextDecorationStyle constant DTextEmphasis (line 303) | DTextEmphasis constant DTextEmphasisColor (line 304) | DTextEmphasisColor constant DTextEmphasisPosition (line 305) | DTextEmphasisPosition constant DTextEmphasisStyle (line 306) | DTextEmphasisStyle constant DTextIndent (line 307) | DTextIndent constant DTextJustify (line 308) | DTextJustify constant DTextOrientation (line 309) | DTextOrientation constant DTextOverflow (line 310) | DTextOverflow constant DTextRendering (line 311) | DTextRendering constant DTextShadow (line 312) | DTextShadow constant DTextSizeAdjust (line 313) | DTextSizeAdjust constant DTextTransform (line 314) | DTextTransform constant DTextUnderlinePosition (line 315) | DTextUnderlinePosition constant DTop (line 316) | DTop constant DTouchAction (line 317) | DTouchAction constant DTransform (line 318) | DTransform constant DTransformBox (line 319) | DTransformBox constant DTransformOrigin (line 320) | DTransformOrigin constant DTransformStyle (line 321) | DTransformStyle constant DTransition (line 322) | DTransition constant DTransitionDelay (line 323) | DTransitionDelay constant DTransitionDuration (line 324) | DTransitionDuration constant DTransitionProperty (line 325) | DTransitionProperty constant DTransitionTimingFunction (line 326) | DTransitionTimingFunction constant DTranslate (line 327) | DTranslate constant DUnicodeBidi (line 328) | DUnicodeBidi constant DUserSelect (line 329) | DUserSelect constant DVerticalAlign (line 330) | DVerticalAlign constant DVisibility (line 331) | DVisibility constant DWhiteSpace (line 332) | DWhiteSpace constant DWidows (line 333) | DWidows constant DWidth (line 334) | DWidth constant DWillChange (line 335) | DWillChange constant DWordBreak (line 336) | DWordBreak constant DWordSpacing (line 337) | DWordSpacing constant DWordWrap (line 338) | DWordWrap constant DWritingMode (line 339) | DWritingMode constant DZIndex (line 340) | DZIndex constant DZoom (line 341) | DZoom function MaybeCorrectDeclarationTypo (line 678) | func MaybeCorrectDeclarationTypo(text string) (string, bool) { FILE: internal/css_lexer/css_lexer.go type T (line 14) | type T method String (line 110) | func (t T) String() string { method IsNumeric (line 114) | func (t T) IsNumeric() bool { constant eof (line 16) | eof = -1 constant TEndOfFile (line 19) | TEndOfFile T = iota constant TAtKeyword (line 21) | TAtKeyword constant TUnterminatedString (line 22) | TUnterminatedString constant TBadURL (line 23) | TBadURL constant TCDC (line 24) | TCDC constant TCDO (line 25) | TCDO constant TCloseBrace (line 26) | TCloseBrace constant TCloseBracket (line 27) | TCloseBracket constant TCloseParen (line 28) | TCloseParen constant TColon (line 29) | TColon constant TComma (line 30) | TComma constant TDelim (line 31) | TDelim constant TDelimAmpersand (line 32) | TDelimAmpersand constant TDelimAsterisk (line 33) | TDelimAsterisk constant TDelimBar (line 34) | TDelimBar constant TDelimCaret (line 35) | TDelimCaret constant TDelimDollar (line 36) | TDelimDollar constant TDelimDot (line 37) | TDelimDot constant TDelimEquals (line 38) | TDelimEquals constant TDelimExclamation (line 39) | TDelimExclamation constant TDelimGreaterThan (line 40) | TDelimGreaterThan constant TDelimLessThan (line 41) | TDelimLessThan constant TDelimMinus (line 42) | TDelimMinus constant TDelimPlus (line 43) | TDelimPlus constant TDelimSlash (line 44) | TDelimSlash constant TDelimTilde (line 45) | TDelimTilde constant TDimension (line 46) | TDimension constant TFunction (line 47) | TFunction constant THash (line 48) | THash constant TIdent (line 49) | TIdent constant TNumber (line 50) | TNumber constant TOpenBrace (line 51) | TOpenBrace constant TOpenBracket (line 52) | TOpenBracket constant TOpenParen (line 53) | TOpenParen constant TPercentage (line 54) | TPercentage constant TSemicolon (line 55) | TSemicolon constant TString (line 56) | TString constant TURL (line 57) | TURL constant TWhitespace (line 58) | TWhitespace constant TSymbol (line 63) | TSymbol type TokenFlags (line 118) | type TokenFlags constant IsID (line 121) | IsID TokenFlags = 1 << iota constant DidWarnAboutSingleLineComment (line 122) | DidWarnAboutSingleLineComment type Token (line 128) | type Token struct method DecodedText (line 135) | func (token Token) DecodedText(contents string) string { type lexer (line 174) | type lexer struct method step (line 256) | func (lexer *lexer) step() { method next (line 279) | func (lexer *lexer) next() { method consumeToEndOfMultiLineComment (line 493) | func (lexer *lexer) consumeToEndOfMultiLineComment(startRange logger.R... method isValidEscape (line 563) | func (lexer *lexer) isValidEscape() bool { method wouldStartIdentifier (line 571) | func (lexer *lexer) wouldStartIdentifier() bool { method wouldStartNumber (line 663) | func (lexer *lexer) wouldStartNumber() bool { method consumeName (line 690) | func (lexer *lexer) consumeName() string { method consumeEscape (line 728) | func (lexer *lexer) consumeEscape() rune { method consumeIdentLike (line 759) | func (lexer *lexer) consumeIdentLike() T { method consumeURL (line 795) | func (lexer *lexer) consumeURL(matchingLoc logger.Loc) T { method consumeString (line 866) | func (lexer *lexer) consumeString() T { method consumeNumeric (line 900) | func (lexer *lexer) consumeNumeric() T { type Comment (line 189) | type Comment struct type TokenizeResult (line 195) | type TokenizeResult struct type Options (line 203) | type Options struct function Tokenize (line 207) | func Tokenize(log logger.Log, source logger.Source, options Options) Tok... function containsAtPreserveOrAtLicense (line 554) | func containsAtPreserveOrAtLicense(text string) bool { function WouldStartIdentifierWithoutEscapes (line 594) | func WouldStartIdentifierWithoutEscapes(text string) bool { function RangeOfIdentifier (line 615) | func RangeOfIdentifier(source logger.Source, loc logger.Loc) logger.Range { function IsNameStart (line 956) | func IsNameStart(c rune) bool { function IsNameContinue (line 960) | func IsNameContinue(c rune) bool { function isNewline (line 964) | func isNewline(c rune) bool { function isWhitespace (line 972) | func isWhitespace(c rune) bool { function isHex (line 980) | func isHex(c rune) (int, bool) { function isNonPrintable (line 993) | func isNonPrintable(c rune) bool { function decodeEscapesInToken (line 997) | func decodeEscapesInToken(inner string) string { FILE: internal/css_lexer/css_lexer_test.go function lexToken (line 11) | func lexToken(contents string) (T, string) { function lexerError (line 21) | func lexerError(contents string) string { function TestTokens (line 31) | func TestTokens(t *testing.T) { function TestStringParsing (line 85) | func TestStringParsing(t *testing.T) { function TestURLParsing (line 107) | func TestURLParsing(t *testing.T) { function TestComment (line 125) | func TestComment(t *testing.T) { function TestString (line 132) | func TestString(t *testing.T) { function TestBOM (line 141) | func TestBOM(t *testing.T) { FILE: internal/css_parser/css_color_spaces.go type colorSpace (line 14) | type colorSpace method isPolar (line 34) | func (colorSpace colorSpace) isPolar() bool { constant colorSpace_a98_rgb (line 17) | colorSpace_a98_rgb colorSpace = iota constant colorSpace_display_p3 (line 18) | colorSpace_display_p3 constant colorSpace_hsl (line 19) | colorSpace_hsl constant colorSpace_hwb (line 20) | colorSpace_hwb constant colorSpace_lab (line 21) | colorSpace_lab constant colorSpace_lch (line 22) | colorSpace_lch constant colorSpace_oklab (line 23) | colorSpace_oklab constant colorSpace_oklch (line 24) | colorSpace_oklch constant colorSpace_prophoto_rgb (line 25) | colorSpace_prophoto_rgb constant colorSpace_rec2020 (line 26) | colorSpace_rec2020 constant colorSpace_srgb (line 27) | colorSpace_srgb constant colorSpace_srgb_linear (line 28) | colorSpace_srgb_linear constant colorSpace_xyz (line 29) | colorSpace_xyz constant colorSpace_xyz_d50 (line 30) | colorSpace_xyz_d50 constant colorSpace_xyz_d65 (line 31) | colorSpace_xyz_d65 type hueMethod (line 42) | type hueMethod constant shorterHue (line 45) | shorterHue hueMethod = iota constant longerHue (line 46) | longerHue constant increasingHue (line 47) | increasingHue constant decreasingHue (line 48) | decreasingHue function lin_srgb (line 51) | func lin_srgb(r F64, g F64, b F64) (F64, F64, F64) { function gam_srgb (line 62) | func gam_srgb(r F64, g F64, b F64) (F64, F64, F64) { function lin_srgb_to_xyz (line 73) | func lin_srgb_to_xyz(r F64, g F64, b F64) (F64, F64, F64) { function xyz_to_lin_srgb (line 82) | func xyz_to_lin_srgb(x F64, y F64, z F64) (F64, F64, F64) { function lin_p3 (line 91) | func lin_p3(r F64, g F64, b F64) (F64, F64, F64) { function gam_p3 (line 95) | func gam_p3(r F64, g F64, b F64) (F64, F64, F64) { function lin_p3_to_xyz (line 99) | func lin_p3_to_xyz(r F64, g F64, b F64) (F64, F64, F64) { function xyz_to_lin_p3 (line 108) | func xyz_to_lin_p3(x F64, y F64, z F64) (F64, F64, F64) { function lin_prophoto (line 117) | func lin_prophoto(r F64, g F64, b F64) (F64, F64, F64) { function gam_prophoto (line 129) | func gam_prophoto(r F64, g F64, b F64) (F64, F64, F64) { function lin_prophoto_to_xyz (line 141) | func lin_prophoto_to_xyz(r F64, g F64, b F64) (F64, F64, F64) { function xyz_to_lin_prophoto (line 150) | func xyz_to_lin_prophoto(x F64, y F64, z F64) (F64, F64, F64) { function lin_a98rgb (line 159) | func lin_a98rgb(r F64, g F64, b F64) (F64, F64, F64) { function gam_a98rgb (line 166) | func gam_a98rgb(r F64, g F64, b F64) (F64, F64, F64) { function lin_a98rgb_to_xyz (line 173) | func lin_a98rgb_to_xyz(r F64, g F64, b F64) (F64, F64, F64) { function xyz_to_lin_a98rgb (line 182) | func xyz_to_lin_a98rgb(x F64, y F64, z F64) (F64, F64, F64) { function lin_2020 (line 191) | func lin_2020(r F64, g F64, b F64) (F64, F64, F64) { function gam_2020 (line 204) | func gam_2020(r F64, g F64, b F64) (F64, F64, F64) { function lin_2020_to_xyz (line 217) | func lin_2020_to_xyz(r F64, g F64, b F64) (F64, F64, F64) { function xyz_to_lin_2020 (line 226) | func xyz_to_lin_2020(x F64, y F64, z F64) (F64, F64, F64) { function d65_to_d50 (line 235) | func d65_to_d50(x F64, y F64, z F64) (F64, F64, F64) { function d50_to_d65 (line 244) | func d50_to_d65(x F64, y F64, z F64) (F64, F64, F64) { constant d50_x (line 253) | d50_x = 0.3457 / 0.3585 constant d50_z (line 254) | d50_z = (1.0 - 0.3457 - 0.3585) / 0.3585 function xyz_to_lab (line 256) | func xyz_to_lab(x F64, y F64, z F64) (F64, F64, F64) { function lab_to_xyz (line 285) | func lab_to_xyz(l F64, a F64, b F64) (x F64, y F64, z F64) { function lab_to_lch (line 316) | func lab_to_lch(l F64, a F64, b F64) (F64, F64, F64) { function lch_to_lab (line 326) | func lch_to_lab(l F64, c F64, h F64) (F64, F64, F64) { function xyz_to_oklab (line 332) | func xyz_to_oklab(x F64, y F64, z F64) (F64, F64, F64) { function oklab_to_xyz (line 347) | func oklab_to_xyz(l F64, a F64, b F64) (F64, F64, F64) { function oklab_to_oklch (line 362) | func oklab_to_oklch(l F64, a F64, b F64) (F64, F64, F64) { function oklch_to_oklab (line 366) | func oklch_to_oklab(l F64, c F64, h F64) (F64, F64, F64) { function multiplyMatrices (line 370) | func multiplyMatrices(A [9]float64, b0 F64, b1 F64, b2 F64) (F64, F64, F... function delta_eok (line 376) | func delta_eok(L1 F64, a1 F64, b1 F64, L2 F64, a2 F64, b2 F64) F64 { function gamut_mapping_xyz_to_srgb (line 383) | func gamut_mapping_xyz_to_srgb(x F64, y F64, z F64) (F64, F64, F64) { function hsl_to_rgb (line 453) | func hsl_to_rgb(hue F64, sat F64, light F64) (F64, F64, F64) { function rgb_to_hsl (line 473) | func rgb_to_hsl(red F64, green F64, blue F64) (F64, F64, F64) { function hwb_to_rgb (line 502) | func hwb_to_rgb(hue F64, white F64, black F64) (F64, F64, F64) { function rgb_to_hwb (line 517) | func rgb_to_hwb(red F64, green F64, blue F64) (F64, F64, F64) { function xyz_to_colorSpace (line 524) | func xyz_to_colorSpace(x F64, y F64, z F64, colorSpace colorSpace) (F64,... function colorSpace_to_xyz (line 573) | func colorSpace_to_xyz(v0 F64, v1 F64, v2 F64, colorSpace colorSpace) (F... FILE: internal/css_parser/css_decls.go method commaToken (line 12) | func (p *parser) commaToken(loc logger.Loc) css_ast.Token { function expandTokenQuad (line 24) | func expandTokenQuad(tokens []css_ast.Token, allowedIdent string) (resul... function compactTokenQuad (line 58) | func compactTokenQuad(a css_ast.Token, b css_ast.Token, c css_ast.Token,... method processDeclarations (line 84) | func (p *parser) processDeclarations(rules []css_ast.Rule, composesConte... method insertPrefixedDeclaration (line 424) | func (p *parser) insertPrefixedDeclaration(rules []css_ast.Rule, prefix ... method lowerInset (line 526) | func (p *parser) lowerInset(loc logger.Loc, decl *css_ast.RDeclaration) ... FILE: internal/css_parser/css_decls_animation.go method processAnimationShorthand (line 11) | func (p *parser) processAnimationShorthand(tokens []css_ast.Token) { method processAnimationName (line 89) | func (p *parser) processAnimationName(tokens []css_ast.Token) { method handleSingleAnimationName (line 97) | func (p *parser) handleSingleAnimationName(token *css_ast.Token) { function isInvalidAnimationName (line 116) | func isInvalidAnimationName(text string) bool { FILE: internal/css_parser/css_decls_border_radius.go constant borderRadiusTopLeft (line 10) | borderRadiusTopLeft = iota constant borderRadiusTopRight (line 11) | borderRadiusTopRight constant borderRadiusBottomRight (line 12) | borderRadiusBottomRight constant borderRadiusBottomLeft (line 13) | borderRadiusBottomLeft type borderRadiusCorner (line 16) | type borderRadiusCorner struct type borderRadiusTracker (line 24) | type borderRadiusTracker struct method updateCorner (line 29) | func (borderRadius *borderRadiusTracker) updateCorner(rules []css_ast.... method mangleCorners (line 38) | func (borderRadius *borderRadiusTracker) mangleCorners(rules []css_ast... method mangleCorner (line 108) | func (borderRadius *borderRadiusTracker) mangleCorner(rules []css_ast.... method compactRules (line 157) | func (borderRadius *borderRadiusTracker) compactRules(rules []css_ast.... FILE: internal/css_parser/css_decls_box.go constant boxTop (line 12) | boxTop = iota constant boxRight (line 13) | boxRight constant boxBottom (line 14) | boxBottom constant boxLeft (line 15) | boxLeft type boxSide (line 18) | type boxSide struct type boxTracker (line 25) | type boxTracker struct method updateSide (line 87) | func (box *boxTracker) updateSide(rules []css_ast.Rule, side int, new ... method mangleSides (line 96) | func (box *boxTracker) mangleSides(rules []css_ast.Rule, decl *css_ast... method mangleSide (line 131) | func (box *boxTracker) mangleSide(rules []css_ast.Rule, decl *css_ast.... method compactRules (line 161) | func (box *boxTracker) compactRules(rules []css_ast.Rule, keyRange log... type unitSafetyStatus (line 33) | type unitSafetyStatus constant unitSafe (line 36) | unitSafe unitSafetyStatus = iota constant unitUnsafeSingle (line 37) | unitUnsafeSingle constant unitUnsafeMixed (line 38) | unitUnsafeMixed type unitSafetyTracker (line 53) | type unitSafetyTracker struct method isSafeWith (line 58) | func (a unitSafetyTracker) isSafeWith(b unitSafetyTracker) bool { method includeUnitOf (line 62) | func (t *unitSafetyTracker) includeUnitOf(token css_ast.Token) { FILE: internal/css_parser/css_decls_box_shadow.go method lowerAndMangleBoxShadow (line 10) | func (p *parser) lowerAndMangleBoxShadow(tokens []css_ast.Token, wouldCl... method lowerAndMangleBoxShadows (line 81) | func (p *parser) lowerAndMangleBoxShadows(tokens []css_ast.Token, wouldC... FILE: internal/css_parser/css_decls_color.go function parseHex (line 201) | func parseHex(text string) (uint32, bool) { function compactHex (line 220) | func compactHex(v uint32) uint32 { function expandHex (line 225) | func expandHex(v uint32) uint32 { function hexR (line 229) | func hexR(v uint32) int { return int(v >> 24) } function hexG (line 230) | func hexG(v uint32) int { return int((v >> 16) & 255) } function hexB (line 231) | func hexB(v uint32) int { return int((v >> 8) & 255) } function hexA (line 232) | func hexA(v uint32) int { return int(v & 255) } function floatToStringForColor (line 234) | func floatToStringForColor(a float64) string { function degreesForAngle (line 245) | func degreesForAngle(token css_ast.Token) (float64, bool) { function lowerAlphaPercentageToNumber (line 269) | func lowerAlphaPercentageToNumber(token css_ast.Token) css_ast.Token { method lowerAndMinifyColor (line 280) | func (p *parser) lowerAndMinifyColor(token css_ast.Token, wouldClipColor... type parsedColor (line 423) | type parsedColor struct function looksLikeColor (line 429) | func looksLikeColor(token css_ast.Token) bool { function parseColor (line 465) | func parseColor(token css_ast.Token) (parsedColor, bool) { function hwbToRgb (line 752) | func hwbToRgb(hue F64, white F64, black F64) (r F64, g F64, b F64) { function hslToRgb (line 766) | func hslToRgb(hue F64, sat F64, light F64) (r F64, g F64, b F64) { function hueToRgb (line 781) | func hueToRgb(t1 F64, t2 F64, hue F64) F64 { function packRGBA (line 797) | func packRGBA(rf F64, gf F64, bf F64, a uint32) uint32 { function floatToByte (line 804) | func floatToByte(f float64) uint32 { function parseAlphaByte (line 814) | func parseAlphaByte(token css_ast.Token) (uint32, bool) { function parseColorByte (line 821) | func parseColorByte(token css_ast.Token, scale float64) (uint32, bool) { function tryToConvertToHexWithoutClipping (line 847) | func tryToConvertToHexWithoutClipping(x F64, y F64, z F64, a uint32) (ui... method tryToGenerateColor (line 857) | func (p *parser) tryToGenerateColor(token css_ast.Token, color parsedCol... constant alphaFractionTable (line 922) | alphaFractionTable string = "" + FILE: internal/css_parser/css_decls_composes.go type composesContext (line 13) | type composesContext struct method handleComposesPragma (line 19) | func (p *parser) handleComposesPragma(context composesContext, tokens []... FILE: internal/css_parser/css_decls_container.go method processContainerShorthand (line 11) | func (p *parser) processContainerShorthand(tokens []css_ast.Token) { method processContainerName (line 32) | func (p *parser) processContainerName(tokens []css_ast.Token) { method handleSingleContainerName (line 46) | func (p *parser) handleSingleContainerName(token *css_ast.Token) { FILE: internal/css_parser/css_decls_font.go method mangleFont (line 13) | func (p *parser) mangleFont(tokens []css_ast.Token) []css_ast.Token { function isFontSize (line 125) | func isFontSize(token css_ast.Token) bool { FILE: internal/css_parser/css_decls_font_family.go method mangleFontFamily (line 57) | func (p *parser) mangleFontFamily(tokens []css_ast.Token) ([]css_ast.Tok... method mangleFamilyNameOrGenericName (line 77) | func (p *parser) mangleFamilyNameOrGenericName(result []css_ast.Token, t... function isValidCustomIdent (line 138) | func isValidCustomIdent(text string, predefinedKeywords map[string]bool)... FILE: internal/css_parser/css_decls_font_weight.go method mangleFontWeight (line 10) | func (p *parser) mangleFontWeight(token css_ast.Token) css_ast.Token { FILE: internal/css_parser/css_decls_gradient.go type gradientKind (line 16) | type gradientKind constant linearGradient (line 19) | linearGradient gradientKind = iota constant radialGradient (line 20) | radialGradient constant conicGradient (line 21) | conicGradient type parsedGradient (line 24) | type parsedGradient struct type colorStop (line 31) | type colorStop struct function parseGradient (line 37) | func parseGradient(token css_ast.Token) (gradient parsedGradient, succes... method generateGradient (line 147) | func (p *parser) generateGradient(token css_ast.Token, gradient parsedGr... method lowerAndMinifyGradient (line 170) | func (p *parser) lowerAndMinifyGradient(token css_ast.Token, wouldClipCo... function removeImpliedPositions (line 259) | func removeImpliedPositions(kind gradientKind, colorStops []colorStop) [... function switchToSinglePositions (line 325) | func switchToSinglePositions(double []colorStop) (single []colorStop) { function switchToDoublePositions (line 342) | func switchToDoublePositions(single []colorStop) (double []colorStop) { function removeColorInterpolation (line 362) | func removeColorInterpolation(tokens []css_ast.Token) ([]css_ast.Token, ... type valueWithUnit (line 442) | type valueWithUnit struct type parsedColorStop (line 447) | type parsedColorStop struct function tryToParseColorStops (line 467) | func tryToParseColorStops(gradient parsedGradient) ([]parsedColorStop, b... function tryToParseValue (line 636) | func tryToParseValue(token css_ast.Token, kind gradientKind) (result val... function tryToExpandGradient (line 695) | func tryToExpandGradient( function formatFloat (line 805) | func formatFloat(value F64, decimals int) string { function makeDimensionOrPercentToken (line 809) | func makeDimensionOrPercentToken(loc logger.Loc, value F64, unit string)... function makePositionToken (line 822) | func makePositionToken(loc logger.Loc, positionTerms []valueWithUnit) cs... function makeColorToken (line 848) | func makeColorToken(loc logger.Loc, x F64, y F64, z F64, a F64) (color c... function interpolateHues (line 908) | func interpolateHues(a, b, t F64, hueMethod hueMethod) F64 { function interpolateColors (line 947) | func interpolateColors( function interpolatePositions (line 970) | func interpolatePositions(a []valueWithUnit, b []valueWithUnit, t F64) (... function premultiply (line 1008) | func premultiply(v0, v1, v2, alpha F64, colorSpace colorSpace) (F64, F64... function unpremultiply (line 1024) | func unpremultiply(v0, v1, v2, alpha F64, colorSpace colorSpace) (F64, F... FILE: internal/css_parser/css_decls_list_style.go method processListStyleShorthand (line 20) | func (p *parser) processListStyleShorthand(tokens []css_ast.Token) { method processListStyleType (line 99) | func (p *parser) processListStyleType(t *css_ast.Token) { FILE: internal/css_parser/css_decls_transform.go function turnPercentIntoNumberIfShorter (line 10) | func turnPercentIntoNumberIfShorter(t *css_ast.Token) { method mangleTransforms (line 21) | func (p *parser) mangleTransforms(tokens []css_ast.Token) []css_ast.Token { FILE: internal/css_parser/css_nesting.go method lowerNestingInRule (line 11) | func (p *parser) lowerNestingInRule(rule css_ast.Rule, results []css_ast... method lowerNestingInRulesAndReturnRemaining (line 107) | func (p *parser) lowerNestingInRulesAndReturnRemaining(rules []css_ast.R... function compoundSelectorTermCount (line 119) | func compoundSelectorTermCount(sel css_ast.CompoundSelector) int { function complexSelectorTermCount (line 130) | func complexSelectorTermCount(selectors []css_ast.ComplexSelector) int { method addExpansionError (line 140) | func (p *parser) addExpansionError(loc logger.Loc, n int) { type lowerNestingContext (line 147) | type lowerNestingContext struct method lowerNestingInRuleWithContext (line 153) | func (p *parser) lowerNestingInRuleWithContext(rule css_ast.Rule, contex... type leadingCombinatorStrip (line 363) | type leadingCombinatorStrip constant keepLeadingCombinator (line 366) | keepLeadingCombinator leadingCombinatorStrip = iota constant stripLeadingCombinator (line 367) | stripLeadingCombinator method substituteAmpersandsInCompoundSelector (line 370) | func (p *parser) substituteAmpersandsInCompoundSelector( method multipleComplexSelectorsToSingleComplexSelector (line 460) | func (p *parser) multipleComplexSelectorsToSingleComplexSelector(selecto... method reportNestingWithGeneratedPseudoClassIs (line 492) | func (p *parser) reportNestingWithGeneratedPseudoClassIs(nestingSelector... FILE: internal/css_parser/css_parser.go type parser (line 18) | type parser struct method computeCharacterFrequency (line 165) | func (p *parser) computeCharacterFrequency() *ast.CharFreq { method advance (line 196) | func (p *parser) advance() { method at (line 202) | func (p *parser) at(index int) css_lexer.Token { method current (line 212) | func (p *parser) current() css_lexer.Token { method next (line 216) | func (p *parser) next() css_lexer.Token { method raw (line 220) | func (p *parser) raw() string { method decoded (line 225) | func (p *parser) decoded() string { method peek (line 229) | func (p *parser) peek(kind css_lexer.T) bool { method eat (line 233) | func (p *parser) eat(kind css_lexer.T) bool { method expect (line 241) | func (p *parser) expect(kind css_lexer.T) bool { method expectWithMatchingLoc (line 245) | func (p *parser) expectWithMatchingLoc(kind css_lexer.T, matchingLoc l... method unexpected (line 294) | func (p *parser) unexpected() { method symbolForName (line 311) | func (p *parser) symbolForName(loc logger.Loc, name string) ast.LocRef { method recordAtLayerRule (line 347) | func (p *parser) recordAtLayerRule(layers [][]string) { method parseListOfRules (line 366) | func (p *parser) parseListOfRules(context ruleContext) []css_ast.Rule { method parseListOfDeclarations (line 508) | func (p *parser) parseListOfDeclarations(opts listOfDeclarationsOpts) ... method mangleRules (line 588) | func (p *parser) mangleRules(rules []css_ast.Rule, isTopLevel bool) []... method parseURLOrString (line 986) | func (p *parser) parseURLOrString() (string, logger.Range, bool) { method expectURLOrString (line 1034) | func (p *parser) expectURLOrString() (url string, r logger.Range, ok b... method parseAtRule (line 1196) | func (p *parser) parseAtRule(context atRuleContext) css_ast.Rule { method expectValidLayerNameIdent (line 1788) | func (p *parser) expectValidLayerNameIdent() (string, bool) { method convertTokens (line 1803) | func (p *parser) convertTokens(tokens []css_lexer.Token) []css_ast.Tok... method convertTokensHelper (line 1814) | func (p *parser) convertTokensHelper(tokens []css_lexer.Token, close c... method parseSelectorRule (line 2151) | func (p *parser) parseSelectorRule(isTopLevel bool, opts parseSelector... method parseQualifiedRule (line 2254) | func (p *parser) parseQualifiedRule(opts parseQualifiedRuleOpts) css_a... method scanForEndOfRule (line 2308) | func (p *parser) scanForEndOfRule() (endOfRuleScan, int) { method parseDeclaration (line 2348) | func (p *parser) parseDeclaration() css_ast.Rule { method parseComponentValue (line 2451) | func (p *parser) parseComponentValue() { method parseBlock (line 2473) | func (p *parser) parseBlock(open css_lexer.T, close css_lexer.T) { type Options (line 48) | type Options struct method Equal (line 97) | func (a *Options) Equal(b *Options) bool { type symbolMode (line 57) | type symbolMode constant symbolModeDisabled (line 60) | symbolModeDisabled symbolMode = iota constant symbolModeGlobal (line 61) | symbolModeGlobal constant symbolModeLocal (line 62) | symbolModeLocal type optionsThatSupportStructuralEquality (line 65) | type optionsThatSupportStructuralEquality struct function OptionsFromConfig (line 74) | func OptionsFromConfig(loader config.Loader, options *config.Options) Op... function Parse (line 122) | func Parse(log logger.Log, source logger.Source, options Options) css_as... type ruleContext (line 361) | type ruleContext struct type listOfDeclarationsOpts (line 503) | type listOfDeclarationsOpts struct type ruleEntry (line 715) | type ruleEntry struct type hashEntry (line 720) | type hashEntry struct type callEntry (line 724) | type callEntry struct type DeadRuleRemover (line 729) | type DeadRuleRemover struct method RemoveDeadRulesInPlace (line 742) | func (remover *DeadRuleRemover) RemoveDeadRulesInPlace(sourceIndex uin... function MakeDeadRuleMangler (line 735) | func MakeDeadRuleMangler(symbols ast.SymbolMap) DeadRuleRemover { function containsDeadSelectors (line 803) | func containsDeadSelectors(selectors []css_ast.CompoundSelector) bool { function allSelectorsAreDead (line 816) | func allSelectorsAreDead(selectors []css_ast.ComplexSelector) bool { function isSafeSelectors (line 928) | func isSafeSelectors(complexSelectors []css_ast.ComplexSelector) bool { type atRuleKind (line 1042) | type atRuleKind constant atRuleUnknown (line 1045) | atRuleUnknown atRuleKind = iota constant atRuleDeclarations (line 1046) | atRuleDeclarations constant atRuleInheritContext (line 1047) | atRuleInheritContext constant atRuleQualifiedOrEmpty (line 1048) | atRuleQualifiedOrEmpty constant atRuleEmpty (line 1049) | atRuleEmpty type atRuleValidity (line 1179) | type atRuleValidity constant atRuleInvalid (line 1182) | atRuleInvalid atRuleValidity = iota constant atRuleValid (line 1183) | atRuleValid constant atRuleInvalidAfter (line 1184) | atRuleInvalidAfter type atRuleContext (line 1187) | type atRuleContext struct type convertTokensOpts (line 1808) | type convertTokensOpts struct function shiftDot (line 2051) | func shiftDot(text string, dotOffset int) (string, bool) { function mangleDimension (line 2102) | func mangleDimension(value string, unit string) (string, string, bool) { function mangleNumber (line 2123) | func mangleNumber(t string) (string, bool) { type parseQualifiedRuleOpts (line 2248) | type parseQualifiedRuleOpts struct type endOfRuleScan (line 2298) | type endOfRuleScan constant endOfRuleUnknown (line 2301) | endOfRuleUnknown endOfRuleScan = iota constant endOfRuleSemicolon (line 2302) | endOfRuleSemicolon constant endOfRuleOpenBrace (line 2303) | endOfRuleOpenBrace FILE: internal/css_parser/css_parser_media.go method parseMediaQueryListUntil (line 13) | func (p *parser) parseMediaQueryListUntil(stop func(css_lexer.T) bool) [... method parseMediaQuery (line 39) | func (p *parser) parseMediaQuery() (css_ast.MediaQuery, bool) { method looksLikeMediaCondition (line 96) | func (p *parser) looksLikeMediaCondition() bool { type mediaOr (line 104) | type mediaOr constant mediaWithOr (line 107) | mediaWithOr mediaOr = iota constant mediaWithoutOr (line 108) | mediaWithoutOr method parseMediaCondition (line 111) | func (p *parser) parseMediaCondition(or mediaOr) (css_ast.MediaQuery, bo... method appendMediaTerm (line 160) | func (p *parser) appendMediaTerm(inner []css_ast.MediaQuery, term css_as... method parseMediaInParens (line 170) | func (p *parser) parseMediaInParens() (css_ast.MediaQuery, bool) { function lowerMediaRange (line 233) | func lowerMediaRange(loc logger.Loc, name string, cmp css_ast.MQCmp, val... function parsePlainOrBooleanMediaFeature (line 261) | func parsePlainOrBooleanMediaFeature(tokens []css_ast.Token) (*css_ast.M... function parseRangeMediaFeature (line 273) | func parseRangeMediaFeature(tokens []css_ast.Token) (*css_ast.MQRange, b... method maybeSimplifyMediaNot (line 315) | func (p *parser) maybeSimplifyMediaNot(loc logger.Loc, inner css_ast.Med... function isSingleIdent (line 352) | func isSingleIdent(tokens []css_ast.Token) (string, logger.Loc, bool) { function scanMediaComparison (line 360) | func scanMediaComparison(tokens []css_ast.Token) (css_ast.MQCmp, []css_a... function scanMediaValue (line 387) | func scanMediaValue(tokens []css_ast.Token) ([]css_ast.Token, []css_ast.... FILE: internal/css_parser/css_parser_selector.go type parseSelectorOpts (line 12) | type parseSelectorOpts struct method parseSelectorList (line 22) | func (p *parser) parseSelectorList(opts parseSelectorOpts) (list []css_a... function mergeCompoundSelectors (line 115) | func mergeCompoundSelectors(target *css_ast.CompoundSelector, source css... function containsLocalOrGlobalSelector (line 148) | func containsLocalOrGlobalSelector(sel css_ast.ComplexSelector) bool { method flattenLocalAndGlobalSelectors (line 168) | func (p *parser) flattenLocalAndGlobalSelectors(list []css_ast.ComplexSe... type leadingAmpersand (line 244) | type leadingAmpersand constant cannotRemoveLeadingAmpersand (line 247) | cannotRemoveLeadingAmpersand leadingAmpersand = iota constant canAlwaysRemoveLeadingAmpersand (line 248) | canAlwaysRemoveLeadingAmpersand constant canRemoveLeadingAmpersandIfNotFirst (line 249) | canRemoveLeadingAmpersandIfNotFirst function analyzeLeadingAmpersand (line 252) | func analyzeLeadingAmpersand(sel css_ast.ComplexSelector, isDeclarationC... type parseComplexSelectorOpts (line 276) | type parseComplexSelectorOpts struct method parseComplexSelector (line 281) | func (p *parser) parseComplexSelector(opts parseComplexSelectorOpts) (re... method nameToken (line 334) | func (p *parser) nameToken() css_ast.NameToken { method parseCompoundSelector (line 343) | func (p *parser) parseCompoundSelector(opts parseComplexSelectorOpts) (s... method parseAttributeSelector (line 523) | func (p *parser) parseAttributeSelector() (attr css_ast.SSAttribute, r l... method parsePseudoClassSelector (line 620) | func (p *parser) parsePseudoClassSelector(loc logger.Loc, isElement bool... method parseAnyValue (line 761) | func (p *parser) parseAnyValue() []css_lexer.Token { method parseCombinator (line 805) | func (p *parser) parseCombinator() css_ast.Combinator { function parseInteger (line 826) | func parseInteger(text string) (string, bool) { method parseNthIndex (line 850) | func (p *parser) parseNthIndex() (css_ast.NthIndex, bool) { FILE: internal/css_parser/css_parser_test.go function expectPrintedCommon (line 16) | func expectPrintedCommon(t *testing.T, name string, contents string, exp... function expectPrinted (line 37) | func expectPrinted(t *testing.T, contents string, expected string, expec... function expectPrintedLocal (line 42) | func expectPrintedLocal(t *testing.T, contents string, expected string, ... function expectPrintedLower (line 47) | func expectPrintedLower(t *testing.T, contents string, expected string, ... function expectPrintedLowerUnsupported (line 54) | func expectPrintedLowerUnsupported(t *testing.T, unsupportedCSSFeatures ... function expectPrintedWithAllPrefixes (line 61) | func expectPrintedWithAllPrefixes(t *testing.T, contents string, expecte... function expectPrintedMinify (line 76) | func expectPrintedMinify(t *testing.T, contents string, expected string,... function expectPrintedMangle (line 83) | func expectPrintedMangle(t *testing.T, contents string, expected string,... function expectPrintedLowerMangle (line 90) | func expectPrintedLowerMangle(t *testing.T, contents string, expected st... function expectPrintedMangleMinify (line 98) | func expectPrintedMangleMinify(t *testing.T, contents string, expected s... function expectPrintedLowerMinify (line 106) | func expectPrintedLowerMinify(t *testing.T, contents string, expected st... function TestSingleLineComment (line 114) | func TestSingleLineComment(t *testing.T) { function TestEscapes (line 122) | func TestEscapes(t *testing.T) { function TestString (line 297) | func TestString(t *testing.T) { function TestNumber (line 333) | func TestNumber(t *testing.T) { function TestURL (line 379) | func TestURL(t *testing.T) { function TestHexColor (line 400) | func TestHexColor(t *testing.T) { function TestColorFunctions (line 526) | func TestColorFunctions(t *testing.T) { function TestColorNames (line 617) | func TestColorNames(t *testing.T) { function TestColorRGBA (line 640) | func TestColorRGBA(t *testing.T) { function TestColorHSLA (line 656) | func TestColorHSLA(t *testing.T) { function TestLowerColor (line 675) | func TestLowerColor(t *testing.T) { function TestBackground (line 731) | func TestBackground(t *testing.T) { function TestGradient (line 741) | func TestGradient(t *testing.T) { function TestDeclaration (line 879) | func TestDeclaration(t *testing.T) { function TestSelector (line 897) | func TestSelector(t *testing.T) { function TestNestedSelector (line 1032) | func TestNestedSelector(t *testing.T) { function TestBadQualifiedRules (line 1360) | func TestBadQualifiedRules(t *testing.T) { function TestAtRule (line 1375) | func TestAtRule(t *testing.T) { function TestAtCharset (line 1604) | func TestAtCharset(t *testing.T) { function TestAtImport (line 1620) | func TestAtImport(t *testing.T) { function TestLowerAtImportMediaRange (line 1652) | func TestLowerAtImportMediaRange(t *testing.T) { function TestLegalComment (line 1657) | func TestLegalComment(t *testing.T) { function TestAtKeyframes (line 1675) | func TestAtKeyframes(t *testing.T) { function TestAnimationName (line 1743) | func TestAnimationName(t *testing.T) { function TestAtRuleValidation (line 1759) | func TestAtRuleValidation(t *testing.T) { function TestAtLayer (line 1769) | func TestAtLayer(t *testing.T) { function TestEmptyRule (line 1836) | func TestEmptyRule(t *testing.T) { function TestMarginAndPaddingAndInset (line 1866) | func TestMarginAndPaddingAndInset(t *testing.T) { function TestBorderRadius (line 2011) | func TestBorderRadius(t *testing.T) { function TestBoxShadow (line 2085) | func TestBoxShadow(t *testing.T) { function TestMangleTime (line 2104) | func TestMangleTime(t *testing.T) { function TestCalc (line 2142) | func TestCalc(t *testing.T) { function TestMinifyCalc (line 2169) | func TestMinifyCalc(t *testing.T) { function TestMangleCalc (line 2176) | func TestMangleCalc(t *testing.T) { function TestTransform (line 2261) | func TestTransform(t *testing.T) { function TestMangleAlpha (line 2429) | func TestMangleAlpha(t *testing.T) { function TestMangleDeadSelectors (line 2457) | func TestMangleDeadSelectors(t *testing.T) { function TestMangleDuplicateSelectors (line 2478) | func TestMangleDuplicateSelectors(t *testing.T) { function TestMangleDuplicateSelectorRules (line 2489) | func TestMangleDuplicateSelectorRules(t *testing.T) { function TestAtMedia (line 2525) | func TestAtMedia(t *testing.T) { function TestMangleAtMedia (line 2617) | func TestMangleAtMedia(t *testing.T) { function TestLowerAtMediaRange (line 2720) | func TestLowerAtMediaRange(t *testing.T) { function TestAtScope (line 2754) | func TestAtScope(t *testing.T) { function TestFontWeight (line 2771) | func TestFontWeight(t *testing.T) { function TestFontFamily (line 2781) | func TestFontFamily(t *testing.T) { function TestFont (line 2809) | func TestFont(t *testing.T) { function TestWarningUnexpectedCloseBrace (line 2837) | func TestWarningUnexpectedCloseBrace(t *testing.T) { function TestPropertyTypoWarning (line 2853) | func TestPropertyTypoWarning(t *testing.T) { function TestParseErrorRecovery (line 2864) | func TestParseErrorRecovery(t *testing.T) { function TestPrefixInsertion (line 2886) | func TestPrefixInsertion(t *testing.T) { function TestNthChild (line 2978) | func TestNthChild(t *testing.T) { function TestComposes (line 3077) | func TestComposes(t *testing.T) { FILE: internal/css_parser/css_reduce_calc.go method tryToReduceCalcExpression (line 14) | func (p *parser) tryToReduceCalcExpression(token css_ast.Token) css_ast.... type calcTermWithOp (line 34) | type calcTermWithOp struct type calcTerm (line 40) | type calcTerm interface type calcSum (line 45) | type calcSum struct method convertToToken (line 100) | func (c *calcSum) convertToToken(whitespace css_ast.WhitespaceFlags) (... method partiallySimplify (line 297) | func (c *calcSum) partiallySimplify() calcTerm { type calcProduct (line 49) | type calcProduct struct method convertToToken (line 184) | func (c *calcProduct) convertToToken(whitespace css_ast.WhitespaceFlag... method partiallySimplify (line 342) | func (c *calcProduct) partiallySimplify() calcTerm { type calcNegate (line 53) | type calcNegate struct method convertToToken (line 230) | func (c *calcNegate) convertToToken(whitespace css_ast.WhitespaceFlags... method partiallySimplify (line 423) | func (c *calcNegate) partiallySimplify() calcTerm { type calcInvert (line 57) | type calcInvert struct method convertToToken (line 247) | func (c *calcInvert) convertToToken(whitespace css_ast.WhitespaceFlags... method partiallySimplify (line 442) | func (c *calcInvert) partiallySimplify() calcTerm { type calcNumeric (line 61) | type calcNumeric struct method convertToToken (line 264) | func (c *calcNumeric) convertToToken(whitespace css_ast.WhitespaceFlag... method partiallySimplify (line 461) | func (c *calcNumeric) partiallySimplify() calcTerm { type calcValue (line 67) | type calcValue struct method convertToToken (line 291) | func (c *calcValue) convertToToken(whitespace css_ast.WhitespaceFlags)... method partiallySimplify (line 465) | func (c *calcValue) partiallySimplify() calcTerm { function floatToStringForCalc (line 72) | func floatToStringForCalc(a float64) (string, bool) { function tryToParseCalcTerm (line 469) | func tryToParseCalcTerm(tokens []css_ast.Token) calcTerm { FILE: internal/css_printer/css_printer.go constant quoteForURL (line 18) | quoteForURL byte = 0 type printer (line 20) | type printer struct method recordImportPathForMetafile (line 92) | func (p *printer) recordImportPathForMetafile(importRecordIndex uint32) { method printRule (line 107) | func (p *printer) printRule(rule css_ast.Rule, indent int32, omitTrail... method printMediaQuery (line 423) | func (p *printer) printMediaQuery(query css_ast.MediaQuery, flags mqFl... method printIndentedComment (line 538) | func (p *printer) printIndentedComment(indent int32, text string) { method printRuleBlock (line 559) | func (p *printer) printRuleBlock(rules []css_ast.Rule, indent int32, c... method printComplexSelectors (line 587) | func (p *printer) printComplexSelectors(selectors []css_ast.ComplexSel... method printCompoundSelector (line 609) | func (p *printer) printCompoundSelector(sel css_ast.CompoundSelector, ... method printNthIndex (line 732) | func (p *printer) printNthIndex(index css_ast.NthIndex) { method printNamespacedName (line 751) | func (p *printer) printNamespacedName(nsName css_ast.NamespacedName, w... method printPseudoClassSelector (line 785) | func (p *printer) printPseudoClassSelector(pseudo css_ast.SSPseudoClas... method print (line 803) | func (p *printer) print(text string) { method printQuoted (line 851) | func (p *printer) printQuoted(text string, flags printQuotedFlags) { method printWithEscape (line 863) | func (p *printer) printWithEscape(c rune, escape escapeKind, remaining... method printQuotedWithQuote (line 903) | func (p *printer) printQuotedWithQuote(text string, quote byte, flags ... method currentLineLength (line 982) | func (p *printer) currentLineLength() int { method printNewlinePastLineLimit (line 999) | func (p *printer) printNewlinePastLineLimit(indent int32) bool { method printIdent (line 1027) | func (p *printer) printIdent(text string, mode identMode, whitespace t... method printSymbol (line 1100) | func (p *printer) printSymbol(loc logger.Loc, ref ast.Ref, mode identM... method printIndent (line 1116) | func (p *printer) printIndent(indent int32) { method printTokens (line 1162) | func (p *printer) printTokens(tokens []css_ast.Token, opts printTokens... type Options (line 33) | type Options struct type PrintResult (line 57) | type PrintResult struct function Print (line 68) | func Print(tree css_ast.AST, symbols ast.SymbolMap, options Options) Pri... type mqFlags (line 416) | type mqFlags constant mqNeedsParens (line 419) | mqNeedsParens mqFlags = 1 << iota constant mqAfterIdentifier (line 420) | mqAfterIdentifier type selectorLayout (line 580) | type selectorLayout constant layoutMultiLine (line 583) | layoutMultiLine selectorLayout = iota constant layoutSingleLine (line 584) | layoutSingleLine function bestQuoteCharForString (line 807) | func bestQuoteCharForString(text string, forURL bool) byte { type printQuotedFlags (line 845) | type printQuotedFlags constant printQuotedNoWrap (line 848) | printQuotedNoWrap printQuotedFlags = 1 << iota type escapeKind (line 855) | type escapeKind constant escapeNone (line 858) | escapeNone escapeKind = iota constant escapeBackslash (line 859) | escapeBackslash constant escapeHex (line 860) | escapeHex type identMode (line 1010) | type identMode constant identNormal (line 1013) | identNormal identMode = iota constant identHash (line 1014) | identHash constant identDimensionUnit (line 1015) | identDimensionUnit constant identDimensionUnitAfterExponent (line 1016) | identDimensionUnitAfterExponent type trailingWhitespace (line 1019) | type trailingWhitespace constant mayNeedWhitespaceAfter (line 1022) | mayNeedWhitespaceAfter trailingWhitespace = iota constant canDiscardWhitespaceAfter (line 1023) | canDiscardWhitespaceAfter type printTokensOpts (line 1126) | type printTokensOpts struct function functionMultiLineCommaPeriod (line 1132) | func functionMultiLineCommaPeriod(token css_ast.Token) uint8 { FILE: internal/css_printer/css_printer_test.go function expectPrintedCommon (line 14) | func expectPrintedCommon(t *testing.T, name string, contents string, exp... function expectPrinted (line 37) | func expectPrinted(t *testing.T, contents string, expected string) { function expectPrintedMinify (line 42) | func expectPrintedMinify(t *testing.T, contents string, expected string) { function expectPrintedASCII (line 49) | func expectPrintedASCII(t *testing.T, contents string, expected string) { function expectPrintedString (line 56) | func expectPrintedString(t *testing.T, stringValue string, expected stri... function TestStringQuote (line 66) | func TestStringQuote(t *testing.T) { function TestURLQuote (line 98) | func TestURLQuote(t *testing.T) { function TestImportant (line 108) | func TestImportant(t *testing.T) { function TestSelector (line 120) | func TestSelector(t *testing.T) { function TestNestedSelector (line 148) | func TestNestedSelector(t *testing.T) { function TestBadQualifiedRules (line 155) | func TestBadQualifiedRules(t *testing.T) { function TestDeclaration (line 174) | func TestDeclaration(t *testing.T) { function TestVerbatimWhitespace (line 201) | func TestVerbatimWhitespace(t *testing.T) { function TestAtRule (line 303) | func TestAtRule(t *testing.T) { function TestAtCharset (line 322) | func TestAtCharset(t *testing.T) { function TestAtImport (line 327) | func TestAtImport(t *testing.T) { function TestAtKeyframes (line 351) | func TestAtKeyframes(t *testing.T) { function TestAtMedia (line 358) | func TestAtMedia(t *testing.T) { function TestAtScope (line 379) | func TestAtScope(t *testing.T) { function TestAtFontFace (line 387) | func TestAtFontFace(t *testing.T) { function TestAtPage (line 394) | func TestAtPage(t *testing.T) { function TestMsGridColumnsWhitespace (line 401) | func TestMsGridColumnsWhitespace(t *testing.T) { function TestASCII (line 409) | func TestASCII(t *testing.T) { FILE: internal/fs/error_other.go function is_ERROR_INVALID_NAME (line 7) | func is_ERROR_INVALID_NAME(err error) bool { FILE: internal/fs/error_wasm+windows.go function is_ERROR_INVALID_NAME (line 12) | func is_ERROR_INVALID_NAME(err error) bool { FILE: internal/fs/filepath.go type goFilepath (line 44) | type goFilepath struct method isAbs (line 78) | func (fp goFilepath) isAbs(path string) bool { method abs (line 101) | func (fp goFilepath) abs(path string) (string, error) { method isPathSeparator (line 109) | func (fp goFilepath) isPathSeparator(c uint8) bool { method volumeNameLen (line 115) | func (fp goFilepath) volumeNameLen(path string) int { method evalSymlinks (line 159) | func (fp goFilepath) evalSymlinks(path string) (string, error) { method fromSlash (line 335) | func (fp goFilepath) fromSlash(path string) string { method clean (line 365) | func (fp goFilepath) clean(path string) string { method volumeName (line 443) | func (fp goFilepath) volumeName(path string) string { method base (line 451) | func (fp goFilepath) base(path string) string { method dir (line 482) | func (fp goFilepath) dir(path string) string { method ext (line 500) | func (fp goFilepath) ext(path string) string { method join (line 516) | func (fp goFilepath) join(elem []string) string { method joinNonEmpty (line 529) | func (fp goFilepath) joinNonEmpty(elem []string) string { method isUNC (line 564) | func (fp goFilepath) isUNC(path string) bool { method rel (line 576) | func (fp goFilepath) rel(basepath, targpath string) (string, error) { method sameWord (line 644) | func (fp goFilepath) sameWord(a, b string) bool { function isSlash (line 50) | func isSlash(c uint8) bool { function isReservedName (line 65) | func isReservedName(path string) bool { type lazybuf (line 297) | type lazybuf struct method index (line 305) | func (b *lazybuf) index(i int) byte { method append (line 312) | func (b *lazybuf) append(c byte) { method string (line 325) | func (b *lazybuf) string() string { FILE: internal/fs/fs.go type EntryKind (line 16) | type EntryKind constant DirEntry (line 19) | DirEntry EntryKind = 1 constant FileEntry (line 20) | FileEntry EntryKind = 2 type Entry (line 23) | type Entry struct method Kind (line 32) | func (e *Entry) Kind(fs FS) EntryKind { method Symlink (line 42) | func (e *Entry) Symlink(fs FS) string { type accessedEntries (line 52) | type accessedEntries struct type DirEntries (line 76) | type DirEntries struct method Get (line 92) | func (entries DirEntries) Get(query string) (*Entry, *DifferentCase) { method PeekEntryCount (line 123) | func (entries DirEntries) PeekEntryCount() int { method SortedKeys (line 130) | func (entries DirEntries) SortedKeys() (keys []string) { function MakeEmptyDirEntries (line 82) | func MakeEmptyDirEntries(dir string) DirEntries { type DifferentCase (line 86) | type DifferentCase struct type OpenedFile (line 151) | type OpenedFile interface type InMemoryOpenedFile (line 157) | type InMemoryOpenedFile struct method Len (line 161) | func (f *InMemoryOpenedFile) Len() int { method Read (line 165) | func (f *InMemoryOpenedFile) Read(start int, end int) ([]byte, error) { method Close (line 169) | func (f *InMemoryOpenedFile) Close() error { type FS (line 173) | type FS interface type WatchData (line 214) | type WatchData struct type ModKey (line 222) | type ModKey struct constant modKeySafetyGap (line 237) | modKeySafetyGap = 3 function BeforeFileOpen (line 243) | func BeforeFileOpen() { function AfterFileClose (line 248) | func AfterFileClose() { function MkdirAll (line 254) | func MkdirAll(fs FS, path string, perm os.FileMode) error { function mkdirAll (line 259) | func mkdirAll(fs FS, path string, perm os.FileMode) error { FILE: internal/fs/fs_mock.go type MockKind (line 14) | type MockKind constant MockUnix (line 17) | MockUnix MockKind = iota constant MockWindows (line 18) | MockWindows type mockFS (line 21) | type mockFS struct method ReadDirectory (line 74) | func (fs *mockFS) ReadDirectory(path string) (DirEntries, error, error) { method ReadFile (line 100) | func (fs *mockFS) ReadFile(path string) (string, error, error) { method OpenFile (line 110) | func (fs *mockFS) OpenFile(path string) (OpenedFile, error, error) { method ModKey (line 120) | func (fs *mockFS) ModKey(path string) (ModKey, error) { method IsAbs (line 146) | func (fs *mockFS) IsAbs(p string) bool { method Abs (line 153) | func (fs *mockFS) Abs(p string) (string, bool) { method Dir (line 168) | func (fs *mockFS) Dir(p string) string { method Base (line 183) | func (fs *mockFS) Base(p string) string { method Ext (line 198) | func (fs *mockFS) Ext(p string) string { method Join (line 206) | func (fs *mockFS) Join(parts ...string) string { method Cwd (line 229) | func (fs *mockFS) Cwd() string { method Rel (line 240) | func (fs *mockFS) Rel(base string, target string) (string, bool) { method EvalSymlinks (line 315) | func (fs *mockFS) EvalSymlinks(path string) (string, bool) { method kind (line 319) | func (fs *mockFS) kind(dir string, base string) (symlink string, kind ... method WatchData (line 323) | func (fs *mockFS) WatchData() WatchData { function MockFS (line 29) | func MockFS(input map[string]string, kind MockKind, absWorkingDir string... function win2unix (line 124) | func win2unix(p string) (result string, volume string) { function unix2win (line 135) | func unix2win(p string, volume string, defaultVolume string) string { function splitOnSlash (line 233) | func splitOnSlash(path string) (string, string) { FILE: internal/fs/fs_mock_test.go function TestMockFSBasicUnix (line 8) | func TestMockFSBasicUnix(t *testing.T) { function TestMockFSBasicWindows (line 75) | func TestMockFSBasicWindows(t *testing.T) { function TestMockFSRelUnix (line 169) | func TestMockFSRelUnix(t *testing.T) { function TestMockFSRelWindows (line 204) | func TestMockFSRelWindows(t *testing.T) { FILE: internal/fs/fs_real.go type realFS (line 14) | type realFS struct method ReadDirectory (line 130) | func (fs *realFS) ReadDirectory(dir string) (entries DirEntries, canon... method ReadFile (line 199) | func (fs *realFS) ReadFile(path string) (contents string, canonicalErr... method OpenFile (line 261) | func (fs *realFS) OpenFile(path string) (OpenedFile, error, error) { method ModKey (line 279) | func (fs *realFS) ModKey(path string) (ModKey, error) { method IsAbs (line 307) | func (fs *realFS) IsAbs(p string) bool { method Abs (line 311) | func (fs *realFS) Abs(p string) (string, bool) { method Dir (line 316) | func (fs *realFS) Dir(p string) string { method Base (line 320) | func (fs *realFS) Base(p string) string { method Ext (line 324) | func (fs *realFS) Ext(p string) string { method Join (line 328) | func (fs *realFS) Join(parts ...string) string { method Cwd (line 332) | func (fs *realFS) Cwd() string { method Rel (line 336) | func (fs *realFS) Rel(base string, target string) (string, bool) { method EvalSymlinks (line 343) | func (fs *realFS) EvalSymlinks(path string) (string, bool) { method readdir (line 350) | func (fs *realFS) readdir(dirname string) (entries []string, canonical... method canonicalizeError (line 384) | func (fs *realFS) canonicalizeError(err error) error { method kind (line 409) | func (fs *realFS) kind(dir string, base string) (symlink string, kind ... method WatchData (line 449) | func (fs *realFS) WatchData() WatchData { type entriesOrErr (line 34) | type entriesOrErr struct type watchState (line 40) | type watchState constant stateNone (line 43) | stateNone watchState = iota constant stateDirHasAccessedEntries (line 44) | stateDirHasAccessedEntries constant stateDirUnreadable (line 45) | stateDirUnreadable constant stateFileHasModKey (line 46) | stateFileHasModKey constant stateFileNeedModKey (line 47) | stateFileNeedModKey constant stateFileMissing (line 48) | stateFileMissing constant stateFileUnusableModKey (line 49) | stateFileUnusableModKey type privateWatchData (line 52) | type privateWatchData struct type RealFSOptions (line 59) | type RealFSOptions struct function RealFS (line 65) | func RealFS(options RealFSOptions) (FS, error) { type realOpenedFile (line 228) | type realOpenedFile struct method Len (line 233) | func (f *realOpenedFile) Len() int { method Read (line 237) | func (f *realOpenedFile) Read(start int, end int) ([]byte, error) { method Close (line 257) | func (f *realOpenedFile) Close() error { FILE: internal/fs/fs_zip.go type zipFS (line 29) | type zipFS struct method checkForZip (line 64) | func (fs *zipFS) checkForZip(path string, kind EntryKind) (*zipFile, s... method ReadDirectory (line 185) | func (fs *zipFS) ReadDirectory(path string) (entries DirEntries, canon... method ReadFile (line 229) | func (fs *zipFS) ReadFile(path string) (contents string, canonicalErro... method OpenFile (line 276) | func (fs *zipFS) OpenFile(path string) (result OpenedFile, canonicalEr... method ModKey (line 283) | func (fs *zipFS) ModKey(path string) (modKey ModKey, err error) { method IsAbs (line 290) | func (fs *zipFS) IsAbs(path string) bool { method Abs (line 294) | func (fs *zipFS) Abs(path string) (string, bool) { method Dir (line 298) | func (fs *zipFS) Dir(path string) string { method Base (line 305) | func (fs *zipFS) Base(path string) string { method Ext (line 309) | func (fs *zipFS) Ext(path string) string { method Join (line 313) | func (fs *zipFS) Join(parts ...string) string { method Cwd (line 317) | func (fs *zipFS) Cwd() string { method Rel (line 321) | func (fs *zipFS) Rel(base string, target string) (string, bool) { method EvalSymlinks (line 325) | func (fs *zipFS) EvalSymlinks(path string) (string, bool) { method kind (line 329) | func (fs *zipFS) kind(dir string, base string) (symlink string, kind E... method WatchData (line 333) | func (fs *zipFS) WatchData() WatchData { type zipFile (line 36) | type zipFile struct type compressedDir (line 45) | type compressedDir struct type compressedFile (line 54) | type compressedFile struct function tryToReadZipArchive (line 102) | func tryToReadZipArchive(zipPath string, archive *zipFile) { function ParseYarnPnPVirtualPath (line 337) | func ParseYarnPnPVirtualPath(path string) (string, string, bool) { function mangleYarnPnPVirtualPath (line 400) | func mangleYarnPnPVirtualPath(path string) string { FILE: internal/fs/iswin_other.go function CheckIfWindows (line 7) | func CheckIfWindows() bool { FILE: internal/fs/iswin_wasm.go function CheckIfWindows (line 13) | func CheckIfWindows() bool { FILE: internal/fs/iswin_windows.go function CheckIfWindows (line 6) | func CheckIfWindows() bool { FILE: internal/fs/modkey_other.go function modKey (line 13) | func modKey(path string) (ModKey, error) { FILE: internal/fs/modkey_unix.go function modKey (line 12) | func modKey(path string) (ModKey, error) { FILE: internal/graph/graph.go type entryPointKind (line 27) | type entryPointKind constant entryPointNone (line 30) | entryPointNone entryPointKind = iota constant entryPointUserSpecified (line 31) | entryPointUserSpecified constant entryPointDynamicImport (line 32) | entryPointDynamicImport type LinkerFile (line 35) | type LinkerFile struct method IsEntryPoint (line 65) | func (f *LinkerFile) IsEntryPoint() bool { method IsUserSpecifiedEntryPoint (line 69) | func (f *LinkerFile) IsUserSpecifiedEntryPoint() bool { method LineColumnTracker (line 75) | func (f *LinkerFile) LineColumnTracker() *logger.LineColumnTracker { type EntryPoint (line 83) | type EntryPoint struct type LinkerGraph (line 100) | type LinkerGraph struct method EntryPoints (line 317) | func (g *LinkerGraph) EntryPoints() []EntryPoint { method AddPartToFile (line 321) | func (g *LinkerGraph) AddPartToFile(sourceIndex uint32, part js_ast.Pa... method GenerateNewSymbol (line 354) | func (g *LinkerGraph) GenerateNewSymbol(sourceIndex uint32, kind ast.S... method GenerateSymbolImportAndUse (line 373) | func (g *LinkerGraph) GenerateSymbolImportAndUse( method GenerateRuntimeSymbolImportAndUse (line 418) | func (g *LinkerGraph) GenerateRuntimeSymbolImportAndUse( function CloneLinkerGraph (line 126) | func CloneLinkerGraph( FILE: internal/graph/input.go type InputFile (line 20) | type InputFile struct type OutputFile (line 37) | type OutputFile struct type SideEffects (line 48) | type SideEffects struct type SideEffectsKind (line 55) | type SideEffectsKind constant HasSideEffects (line 59) | HasSideEffects SideEffectsKind = iota constant NoSideEffects_PackageJSON (line 63) | NoSideEffects_PackageJSON constant NoSideEffects_EmptyAST (line 67) | NoSideEffects_EmptyAST constant NoSideEffects_PureData (line 71) | NoSideEffects_PureData constant NoSideEffects_PureData_FromPlugin (line 76) | NoSideEffects_PureData_FromPlugin type InputFileRepr (line 79) | type InputFileRepr interface type JSRepr (line 83) | type JSRepr struct method ImportRecords (line 93) | func (repr *JSRepr) ImportRecords() *[]ast.ImportRecord { method TopLevelSymbolToParts (line 97) | func (repr *JSRepr) TopLevelSymbolToParts(ref ast.Ref) []uint32 { type CSSRepr (line 107) | type CSSRepr struct method ImportRecords (line 116) | func (repr *CSSRepr) ImportRecords() *[]ast.ImportRecord { type CopyRepr (line 120) | type CopyRepr struct method ImportRecords (line 125) | func (repr *CopyRepr) ImportRecords() *[]ast.ImportRecord { FILE: internal/graph/meta.go type WrapKind (line 13) | type WrapKind constant WrapNone (line 16) | WrapNone WrapKind = iota constant WrapCJS (line 28) | WrapCJS constant WrapESM (line 44) | WrapESM type JSReprMeta (line 52) | type JSReprMeta struct type ImportData (line 161) | type ImportData struct type ExportData (line 175) | type ExportData struct FILE: internal/helpers/bitset.go type BitSet (line 5) | type BitSet struct method HasBit (line 13) | func (bs BitSet) HasBit(bit uint) bool { method SetBit (line 17) | func (bs BitSet) SetBit(bit uint) { method Equals (line 21) | func (bs BitSet) Equals(other BitSet) bool { method String (line 25) | func (bs BitSet) String() string { function NewBitSet (line 9) | func NewBitSet(bitCount uint) BitSet { FILE: internal/helpers/comment.go function EscapeClosingTag (line 7) | func EscapeClosingTag(text string, slashTag string) string { FILE: internal/helpers/dataurl.go function EncodeStringAsShortestDataURL (line 11) | func EncodeStringAsShortestDataURL(mimeType string, text string) string { function EncodeStringAsPercentEscapedDataURL (line 21) | func EncodeStringAsPercentEscapedDataURL(mimeType string, text string) (... function isHex (line 70) | func isHex(c byte) bool { FILE: internal/helpers/dataurl_test.go function TestEncodeDataURL (line 10) | func TestEncodeDataURL(t *testing.T) { FILE: internal/helpers/float.go type F64 (line 28) | type F64 struct method Value (line 36) | func (a F64) Value() float64 { method IsNaN (line 40) | func (a F64) IsNaN() bool { method Neg (line 44) | func (a F64) Neg() F64 { method Abs (line 48) | func (a F64) Abs() F64 { method Sin (line 52) | func (a F64) Sin() F64 { method Cos (line 56) | func (a F64) Cos() F64 { method Log2 (line 60) | func (a F64) Log2() F64 { method Round (line 64) | func (a F64) Round() F64 { method Floor (line 68) | func (a F64) Floor() F64 { method Ceil (line 72) | func (a F64) Ceil() F64 { method Squared (line 76) | func (a F64) Squared() F64 { method Cubed (line 80) | func (a F64) Cubed() F64 { method Sqrt (line 84) | func (a F64) Sqrt() F64 { method Cbrt (line 88) | func (a F64) Cbrt() F64 { method Add (line 92) | func (a F64) Add(b F64) F64 { method AddConst (line 96) | func (a F64) AddConst(b float64) F64 { method Sub (line 100) | func (a F64) Sub(b F64) F64 { method SubConst (line 104) | func (a F64) SubConst(b float64) F64 { method Mul (line 108) | func (a F64) Mul(b F64) F64 { method MulConst (line 112) | func (a F64) MulConst(b float64) F64 { method Div (line 116) | func (a F64) Div(b F64) F64 { method DivConst (line 120) | func (a F64) DivConst(b float64) F64 { method Pow (line 124) | func (a F64) Pow(b F64) F64 { method PowConst (line 128) | func (a F64) PowConst(b float64) F64 { method Atan2 (line 132) | func (a F64) Atan2(b F64) F64 { method WithSignFrom (line 136) | func (a F64) WithSignFrom(b F64) F64 { function NewF64 (line 32) | func NewF64(a float64) F64 { function Min2 (line 140) | func Min2(a F64, b F64) F64 { function Max2 (line 144) | func Max2(a F64, b F64) F64 { function Min3 (line 148) | func Min3(a F64, b F64, c F64) F64 { function Max3 (line 152) | func Max3(a F64, b F64, c F64) F64 { function Lerp (line 156) | func Lerp(a F64, b F64, t F64) F64 { FILE: internal/helpers/glob.go type GlobWildcard (line 5) | type GlobWildcard constant GlobNone (line 8) | GlobNone GlobWildcard = iota constant GlobAllExceptSlash (line 9) | GlobAllExceptSlash constant GlobAllIncludingSlash (line 10) | GlobAllIncludingSlash type GlobPart (line 13) | type GlobPart struct function ParseGlobPattern (line 21) | func ParseGlobPattern(text string) (pattern []GlobPart) { function GlobPatternToString (line 46) | func GlobPatternToString(pattern []GlobPart) string { FILE: internal/helpers/hash.go function HashCombine (line 4) | func HashCombine(seed uint32, hash uint32) uint32 { function HashCombineString (line 8) | func HashCombineString(seed uint32, text string) uint32 { FILE: internal/helpers/joiner.go type Joiner (line 12) | type Joiner struct method AddString (line 29) | func (j *Joiner) AddString(data string) { method AddBytes (line 37) | func (j *Joiner) AddBytes(data []byte) { method LastByte (line 45) | func (j *Joiner) LastByte() byte { method Length (line 49) | func (j *Joiner) Length() uint32 { method EnsureNewlineAtEnd (line 53) | func (j *Joiner) EnsureNewlineAtEnd() { method Done (line 59) | func (j *Joiner) Done() []byte { method Contains (line 74) | func (j *Joiner) Contains(s string, b []byte) bool { type joinerString (line 19) | type joinerString struct type joinerBytes (line 24) | type joinerBytes struct FILE: internal/helpers/mime.go function MimeTypeByExtension (line 43) | func MimeTypeByExtension(ext string) string { FILE: internal/helpers/path.go function IsInsideNodeModules (line 10) | func IsInsideNodeModules(path string) bool { function IsFileURL (line 29) | func IsFileURL(fileURL *url.URL) bool { function FileURLFromFilePath (line 33) | func FileURLFromFilePath(filePath string) *url.URL { function FilePathFromFileURL (line 48) | func FilePathFromFileURL(fs fs.FS, fileURL *url.URL) string { FILE: internal/helpers/quote.go constant hexChars (line 5) | hexChars = "0123456789ABCDEF" constant firstASCII (line 6) | firstASCII = 0x20 constant lastASCII (line 7) | lastASCII = 0x7E constant firstHighSurrogate (line 8) | firstHighSurrogate = 0xD800 constant firstLowSurrogate (line 9) | firstLowSurrogate = 0xDC00 constant lastLowSurrogate (line 10) | lastLowSurrogate = 0xDFFF function canPrintWithoutEscape (line 12) | func canPrintWithoutEscape(c rune, asciiOnly bool) bool { function QuoteSingle (line 20) | func QuoteSingle(text string, asciiOnly bool) []byte { function QuoteForJSON (line 24) | func QuoteForJSON(text string, asciiOnly bool) []byte { function internalQuote (line 28) | func internalQuote(text string, asciiOnly bool, quoteChar byte) []byte { FILE: internal/helpers/serializer.go type Serializer (line 6) | type Serializer struct method Enter (line 18) | func (s *Serializer) Enter(i int) { method Leave (line 24) | func (s *Serializer) Leave(i int) { function MakeSerializer (line 10) | func MakeSerializer(count int) Serializer { FILE: internal/helpers/stack.go function PrettyPrintedStack (line 8) | func PrettyPrintedStack() string { FILE: internal/helpers/strings.go function StringArraysEqual (line 8) | func StringArraysEqual(a []string, b []string) bool { function StringArrayArraysEqual (line 20) | func StringArrayArraysEqual(a [][]string, b [][]string) bool { function StringArrayToQuotedCommaSeparatedString (line 32) | func StringArrayToQuotedCommaSeparatedString(a []string) string { FILE: internal/helpers/timer.go type Timer (line 12) | type Timer struct method Begin (line 23) | func (t *Timer) Begin(name string) { method End (line 32) | func (t *Timer) End(name string) { method Fork (line 42) | func (t *Timer) Fork() *Timer { method Join (line 49) | func (t *Timer) Join(other *Timer) { method Log (line 57) | func (t *Timer) Log(log logger.Log) { type timerData (line 17) | type timerData struct FILE: internal/helpers/typos.go type TypoDetector (line 5) | type TypoDetector struct method MaybeCorrectTypo (line 24) | func (detector TypoDetector) MaybeCorrectTypo(typo string) (string, bo... function MakeTypoDetector (line 9) | func MakeTypoDetector(valid []string) TypoDetector { FILE: internal/helpers/utf.go function ContainsNonBMPCodePoint (line 8) | func ContainsNonBMPCodePoint(text string) bool { function ContainsNonBMPCodePointUTF16 (line 18) | func ContainsNonBMPCodePointUTF16(text []uint16) bool { function StringToUTF16 (line 33) | func StringToUTF16(text string) []uint16 { function UTF16ToString (line 46) | func UTF16ToString(text []uint16) string { function UTF16ToStringWithValidation (line 64) | func UTF16ToStringWithValidation(text []uint16) (string, uint16, bool) { function UTF16EqualsString (line 91) | func UTF16EqualsString(text []uint16, str string) bool { function UTF16EqualsUTF16 (line 121) | func UTF16EqualsUTF16(a []uint16, b []uint16) bool { function encodeWTF8Rune (line 135) | func encodeWTF8Rune(p []byte, r rune) int { function DecodeWTF8Rune (line 168) | func DecodeWTF8Rune(s string) (rune, int) { FILE: internal/helpers/waitgroup.go type ThreadSafeWaitGroup (line 12) | type ThreadSafeWaitGroup struct method Add (line 23) | func (wg *ThreadSafeWaitGroup) Add(delta int32) { method Done (line 31) | func (wg *ThreadSafeWaitGroup) Done() { method Wait (line 35) | func (wg *ThreadSafeWaitGroup) Wait() { function MakeThreadSafeWaitGroup (line 17) | func MakeThreadSafeWaitGroup() *ThreadSafeWaitGroup { FILE: internal/js_ast/js_ast.go type L (line 25) | type L constant LLowest (line 29) | LLowest L = iota constant LComma (line 30) | LComma constant LSpread (line 31) | LSpread constant LYield (line 32) | LYield constant LAssign (line 33) | LAssign constant LConditional (line 34) | LConditional constant LNullishCoalescing (line 35) | LNullishCoalescing constant LLogicalOr (line 36) | LLogicalOr constant LLogicalAnd (line 37) | LLogicalAnd constant LBitwiseOr (line 38) | LBitwiseOr constant LBitwiseXor (line 39) | LBitwiseXor constant LBitwiseAnd (line 40) | LBitwiseAnd constant LEquals (line 41) | LEquals constant LCompare (line 42) | LCompare constant LShift (line 43) | LShift constant LAdd (line 44) | LAdd constant LMultiply (line 45) | LMultiply constant LExponentiation (line 46) | LExponentiation constant LPrefix (line 47) | LPrefix constant LPostfix (line 48) | LPostfix constant LNew (line 49) | LNew constant LCall (line 50) | LCall constant LMember (line 51) | LMember type OpCode (line 54) | type OpCode method IsPrefix (line 56) | func (op OpCode) IsPrefix() bool { method UnaryAssignTarget (line 60) | func (op OpCode) UnaryAssignTarget() AssignTarget { method IsLeftAssociative (line 67) | func (op OpCode) IsLeftAssociative() bool { method IsRightAssociative (line 71) | func (op OpCode) IsRightAssociative() bool { method BinaryAssignTarget (line 75) | func (op OpCode) BinaryAssignTarget() AssignTarget { method IsShortCircuit (line 85) | func (op OpCode) IsShortCircuit() bool { type AssignTarget (line 95) | type AssignTarget constant AssignTargetNone (line 98) | AssignTargetNone AssignTarget = iota constant AssignTargetReplace (line 99) | AssignTargetReplace constant AssignTargetUpdate (line 100) | AssignTargetUpdate constant UnOpPos (line 106) | UnOpPos OpCode = iota constant UnOpNeg (line 107) | UnOpNeg constant UnOpCpl (line 108) | UnOpCpl constant UnOpNot (line 109) | UnOpNot constant UnOpVoid (line 110) | UnOpVoid constant UnOpTypeof (line 111) | UnOpTypeof constant UnOpDelete (line 112) | UnOpDelete constant UnOpPreDec (line 115) | UnOpPreDec constant UnOpPreInc (line 116) | UnOpPreInc constant UnOpPostDec (line 119) | UnOpPostDec constant UnOpPostInc (line 120) | UnOpPostInc constant BinOpAdd (line 123) | BinOpAdd constant BinOpSub (line 124) | BinOpSub constant BinOpMul (line 125) | BinOpMul constant BinOpDiv (line 126) | BinOpDiv constant BinOpRem (line 127) | BinOpRem constant BinOpPow (line 128) | BinOpPow constant BinOpLt (line 129) | BinOpLt constant BinOpLe (line 130) | BinOpLe constant BinOpGt (line 131) | BinOpGt constant BinOpGe (line 132) | BinOpGe constant BinOpIn (line 133) | BinOpIn constant BinOpInstanceof (line 134) | BinOpInstanceof constant BinOpShl (line 135) | BinOpShl constant BinOpShr (line 136) | BinOpShr constant BinOpUShr (line 137) | BinOpUShr constant BinOpLooseEq (line 138) | BinOpLooseEq constant BinOpLooseNe (line 139) | BinOpLooseNe constant BinOpStrictEq (line 140) | BinOpStrictEq constant BinOpStrictNe (line 141) | BinOpStrictNe constant BinOpNullishCoalescing (line 142) | BinOpNullishCoalescing constant BinOpLogicalOr (line 143) | BinOpLogicalOr constant BinOpLogicalAnd (line 144) | BinOpLogicalAnd constant BinOpBitwiseOr (line 145) | BinOpBitwiseOr constant BinOpBitwiseAnd (line 146) | BinOpBitwiseAnd constant BinOpBitwiseXor (line 147) | BinOpBitwiseXor constant BinOpComma (line 150) | BinOpComma constant BinOpAssign (line 153) | BinOpAssign constant BinOpAddAssign (line 154) | BinOpAddAssign constant BinOpSubAssign (line 155) | BinOpSubAssign constant BinOpMulAssign (line 156) | BinOpMulAssign constant BinOpDivAssign (line 157) | BinOpDivAssign constant BinOpRemAssign (line 158) | BinOpRemAssign constant BinOpPowAssign (line 159) | BinOpPowAssign constant BinOpShlAssign (line 160) | BinOpShlAssign constant BinOpShrAssign (line 161) | BinOpShrAssign constant BinOpUShrAssign (line 162) | BinOpUShrAssign constant BinOpBitwiseOrAssign (line 163) | BinOpBitwiseOrAssign constant BinOpBitwiseAndAssign (line 164) | BinOpBitwiseAndAssign constant BinOpBitwiseXorAssign (line 165) | BinOpBitwiseXorAssign constant BinOpNullishCoalescingAssign (line 166) | BinOpNullishCoalescingAssign constant BinOpLogicalOrAssign (line 167) | BinOpLogicalOrAssign constant BinOpLogicalAndAssign (line 168) | BinOpLogicalAndAssign type OpTableEntry (line 171) | type OpTableEntry struct type Decorator (line 244) | type Decorator struct type PropertyKind (line 250) | type PropertyKind method IsMethodDefinition (line 275) | func (kind PropertyKind) IsMethodDefinition() bool { constant PropertyField (line 253) | PropertyField PropertyKind = iota constant PropertyMethod (line 254) | PropertyMethod constant PropertyGetter (line 255) | PropertyGetter constant PropertySetter (line 256) | PropertySetter constant PropertyAutoAccessor (line 257) | PropertyAutoAccessor constant PropertySpread (line 258) | PropertySpread constant PropertyDeclareOrAbstract (line 259) | PropertyDeclareOrAbstract constant PropertyClassStaticBlock (line 260) | PropertyClassStaticBlock type ClassStaticBlock (line 279) | type ClassStaticBlock struct type PropertyFlags (line 284) | type PropertyFlags method Has (line 293) | func (flags PropertyFlags) Has(flag PropertyFlags) bool { constant PropertyIsComputed (line 287) | PropertyIsComputed PropertyFlags = 1 << iota constant PropertyIsStatic (line 288) | PropertyIsStatic constant PropertyWasShorthand (line 289) | PropertyWasShorthand constant PropertyPreferQuotedKey (line 290) | PropertyPreferQuotedKey type Property (line 297) | type Property struct type PropertyBinding (line 324) | type PropertyBinding struct type Arg (line 335) | type Arg struct type Fn (line 344) | type Fn struct type FnBody (line 363) | type FnBody struct type Class (line 368) | type Class struct type ArrayBinding (line 409) | type ArrayBinding struct type Binding (line 415) | type Binding struct type B (line 422) | type B interface type BMissing (line 429) | type BMissing struct method isBinding (line 424) | func (*BMissing) isBinding() {} type BIdentifier (line 431) | type BIdentifier struct method isBinding (line 425) | func (*BIdentifier) isBinding() {} type BArray (line 433) | type BArray struct method isBinding (line 426) | func (*BArray) isBinding() {} type BObject (line 440) | type BObject struct method isBinding (line 427) | func (*BObject) isBinding() {} type Expr (line 446) | type Expr struct type E (line 453) | type E interface type EArray (line 496) | type EArray struct method isExpr (line 455) | func (*EArray) isExpr() {} type EUnary (line 504) | type EUnary struct method isExpr (line 456) | func (*EUnary) isExpr() {} type EBinary (line 542) | type EBinary struct method isExpr (line 457) | func (*EBinary) isExpr() {} type EBoolean (line 548) | type EBoolean struct method isExpr (line 458) | func (*EBoolean) isExpr() {} type EMissing (line 550) | type EMissing struct method isExpr (line 478) | func (*EMissing) isExpr() {} type ESuper (line 552) | type ESuper struct method isExpr (line 459) | func (*ESuper) isExpr() {} type ENull (line 554) | type ENull struct method isExpr (line 460) | func (*ENull) isExpr() {} type EUndefined (line 556) | type EUndefined struct method isExpr (line 461) | func (*EUndefined) isExpr() {} type EThis (line 558) | type EThis struct method isExpr (line 462) | func (*EThis) isExpr() {} type ENewTarget (line 560) | type ENewTarget struct method isExpr (line 464) | func (*ENewTarget) isExpr() {} type EImportMeta (line 564) | type EImportMeta struct method isExpr (line 465) | func (*EImportMeta) isExpr() {} type ENew (line 580) | type ENew struct method isExpr (line 463) | func (*ENew) isExpr() {} type CallKind (line 592) | type CallKind constant NormalCall (line 595) | NormalCall CallKind = iota constant DirectEval (line 596) | DirectEval constant TargetWasOriginallyPropertyAccess (line 597) | TargetWasOriginallyPropertyAccess type OptionalChain (line 600) | type OptionalChain constant OptionalChainNone (line 604) | OptionalChainNone OptionalChain = iota constant OptionalChainStart (line 607) | OptionalChainStart constant OptionalChainContinue (line 611) | OptionalChainContinue type ECall (line 614) | type ECall struct method isExpr (line 466) | func (*ECall) isExpr() {} method HasSameFlagsAs (line 633) | func (a *ECall) HasSameFlagsAs(b *ECall) bool { type EDot (line 639) | type EDot struct method isExpr (line 467) | func (*EDot) isExpr() {} method HasSameFlagsAs (line 659) | func (a *EDot) HasSameFlagsAs(b *EDot) bool { type EIndex (line 666) | type EIndex struct method isExpr (line 468) | func (*EIndex) isExpr() {} method HasSameFlagsAs (line 686) | func (a *EIndex) HasSameFlagsAs(b *EIndex) bool { type EArrow (line 693) | type EArrow struct method isExpr (line 469) | func (*EArrow) isExpr() {} type EFunction (line 708) | type EFunction struct method isExpr (line 470) | func (*EFunction) isExpr() {} type EClass (line 715) | type EClass struct method isExpr (line 471) | func (*EClass) isExpr() {} type EIdentifier (line 717) | type EIdentifier struct method isExpr (line 472) | func (*EIdentifier) isExpr() {} type EImportIdentifier (line 756) | type EImportIdentifier struct method isExpr (line 473) | func (*EImportIdentifier) isExpr() {} type EPrivateIdentifier (line 769) | type EPrivateIdentifier struct method isExpr (line 474) | func (*EPrivateIdentifier) isExpr() {} type ENameOfSymbol (line 775) | type ENameOfSymbol struct method isExpr (line 475) | func (*ENameOfSymbol) isExpr() {} type EJSXElement (line 780) | type EJSXElement struct method isExpr (line 476) | func (*EJSXElement) isExpr() {} type EJSXText (line 813) | type EJSXText struct method isExpr (line 477) | func (*EJSXText) isExpr() {} type ENumber (line 817) | type ENumber struct method isExpr (line 479) | func (*ENumber) isExpr() {} type EBigInt (line 819) | type EBigInt struct method isExpr (line 480) | func (*EBigInt) isExpr() {} type EObject (line 821) | type EObject struct method isExpr (line 481) | func (*EObject) isExpr() {} type ESpread (line 829) | type ESpread struct method isExpr (line 482) | func (*ESpread) isExpr() {} type EString (line 833) | type EString struct method isExpr (line 483) | func (*EString) isExpr() {} type TemplatePart (line 841) | type TemplatePart struct type ETemplate (line 848) | type ETemplate struct method isExpr (line 484) | func (*ETemplate) isExpr() {} type ERegExp (line 872) | type ERegExp struct method isExpr (line 485) | func (*ERegExp) isExpr() {} type EInlinedEnum (line 874) | type EInlinedEnum struct method isExpr (line 486) | func (*EInlinedEnum) isExpr() {} type AnnotationFlags (line 879) | type AnnotationFlags method Has (line 888) | func (flags AnnotationFlags) Has(flag AnnotationFlags) bool { constant CanBeRemovedIfUnusedFlag (line 885) | CanBeRemovedIfUnusedFlag AnnotationFlags = 1 << iota type EAnnotation (line 892) | type EAnnotation struct method isExpr (line 487) | func (*EAnnotation) isExpr() {} type EAwait (line 897) | type EAwait struct method isExpr (line 488) | func (*EAwait) isExpr() {} type EYield (line 901) | type EYield struct method isExpr (line 489) | func (*EYield) isExpr() {} type EIf (line 906) | type EIf struct method isExpr (line 490) | func (*EIf) isExpr() {} type ERequireString (line 912) | type ERequireString struct method isExpr (line 491) | func (*ERequireString) isExpr() {} type ERequireResolveString (line 917) | type ERequireResolveString struct method isExpr (line 492) | func (*ERequireResolveString) isExpr() {} type EImportString (line 922) | type EImportString struct method isExpr (line 493) | func (*EImportString) isExpr() {} type EImportCall (line 927) | type EImportCall struct method isExpr (line 494) | func (*EImportCall) isExpr() {} type Stmt (line 934) | type Stmt struct type S (line 941) | type S interface type SBlock (line 977) | type SBlock struct method isStmt (line 943) | func (*SBlock) isStmt() {} type SEmpty (line 982) | type SEmpty struct method isStmt (line 947) | func (*SEmpty) isStmt() {} type STypeScript (line 985) | type STypeScript struct method isStmt (line 948) | func (*STypeScript) isStmt() {} type SComment (line 989) | type SComment struct method isStmt (line 944) | func (*SComment) isStmt() {} type SDebugger (line 994) | type SDebugger struct method isStmt (line 945) | func (*SDebugger) isStmt() {} type SDirective (line 996) | type SDirective struct method isStmt (line 946) | func (*SDirective) isStmt() {} type SExportClause (line 1001) | type SExportClause struct method isStmt (line 949) | func (*SExportClause) isStmt() {} type SExportFrom (line 1006) | type SExportFrom struct method isStmt (line 950) | func (*SExportFrom) isStmt() {} type SExportDefault (line 1013) | type SExportDefault struct method isStmt (line 951) | func (*SExportDefault) isStmt() {} type ExportStarAlias (line 1018) | type ExportStarAlias struct type SExportStar (line 1027) | type SExportStar struct method isStmt (line 952) | func (*SExportStar) isStmt() {} type SExportEquals (line 1034) | type SExportEquals struct method isStmt (line 953) | func (*SExportEquals) isStmt() {} type SLazyExport (line 1040) | type SLazyExport struct method isStmt (line 954) | func (*SLazyExport) isStmt() {} type SExpr (line 1044) | type SExpr struct method isStmt (line 955) | func (*SExpr) isStmt() {} type EnumValue (line 1056) | type EnumValue struct type SEnum (line 1063) | type SEnum struct method isStmt (line 956) | func (*SEnum) isStmt() {} type SNamespace (line 1070) | type SNamespace struct method isStmt (line 957) | func (*SNamespace) isStmt() {} type SFunction (line 1077) | type SFunction struct method isStmt (line 958) | func (*SFunction) isStmt() {} type SClass (line 1082) | type SClass struct method isStmt (line 959) | func (*SClass) isStmt() {} type SLabel (line 1087) | type SLabel struct method isStmt (line 960) | func (*SLabel) isStmt() {} type SIf (line 1093) | type SIf struct method isStmt (line 961) | func (*SIf) isStmt() {} type SFor (line 1101) | type SFor struct method isStmt (line 962) | func (*SFor) isStmt() {} type SForIn (line 1110) | type SForIn struct method isStmt (line 963) | func (*SForIn) isStmt() {} type SForOf (line 1117) | type SForOf struct method isStmt (line 964) | func (*SForOf) isStmt() {} type SDoWhile (line 1125) | type SDoWhile struct method isStmt (line 965) | func (*SDoWhile) isStmt() {} type SWhile (line 1130) | type SWhile struct method isStmt (line 966) | func (*SWhile) isStmt() {} type SWith (line 1136) | type SWith struct method isStmt (line 967) | func (*SWith) isStmt() {} type Catch (line 1143) | type Catch struct type Finally (line 1150) | type Finally struct type STry (line 1155) | type STry struct method isStmt (line 968) | func (*STry) isStmt() {} type Case (line 1162) | type Case struct type SSwitch (line 1168) | type SSwitch struct method isStmt (line 969) | func (*SSwitch) isStmt() {} type SImport (line 1185) | type SImport struct method isStmt (line 970) | func (*SImport) isStmt() {} type SReturn (line 1202) | type SReturn struct method isStmt (line 971) | func (*SReturn) isStmt() {} type SThrow (line 1206) | type SThrow struct method isStmt (line 972) | func (*SThrow) isStmt() {} type LocalKind (line 1210) | type LocalKind method IsUsing (line 1220) | func (kind LocalKind) IsUsing() bool { constant LocalVar (line 1213) | LocalVar LocalKind = iota constant LocalLet (line 1214) | LocalLet constant LocalConst (line 1215) | LocalConst constant LocalUsing (line 1216) | LocalUsing constant LocalAwaitUsing (line 1217) | LocalAwaitUsing type SLocal (line 1224) | type SLocal struct method isStmt (line 973) | func (*SLocal) isStmt() {} type SBreak (line 1234) | type SBreak struct method isStmt (line 974) | func (*SBreak) isStmt() {} type SContinue (line 1238) | type SContinue struct method isStmt (line 975) | func (*SContinue) isStmt() {} type ClauseItem (line 1242) | type ClauseItem struct type Decl (line 1259) | type Decl struct type ScopeKind (line 1264) | type ScopeKind method StopsHoisting (line 1281) | func (kind ScopeKind) StopsHoisting() bool { constant ScopeBlock (line 1267) | ScopeBlock ScopeKind = iota constant ScopeWith (line 1268) | ScopeWith constant ScopeLabel (line 1269) | ScopeLabel constant ScopeClassName (line 1270) | ScopeClassName constant ScopeClassBody (line 1271) | ScopeClassBody constant ScopeCatchBinding (line 1272) | ScopeCatchBinding constant ScopeEntry (line 1275) | ScopeEntry constant ScopeFunctionArgs (line 1276) | ScopeFunctionArgs constant ScopeFunctionBody (line 1277) | ScopeFunctionBody constant ScopeClassStaticInit (line 1278) | ScopeClassStaticInit type ScopeMember (line 1285) | type ScopeMember struct type Scope (line 1290) | type Scope struct method RecursiveSetStrictMode (line 1335) | func (s *Scope) RecursiveSetStrictMode(kind StrictModeKind) { type StrictModeKind (line 1324) | type StrictModeKind constant SloppyMode (line 1327) | SloppyMode StrictModeKind = iota constant ExplicitStrictMode (line 1328) | ExplicitStrictMode constant ImplicitStrictModeClass (line 1329) | ImplicitStrictModeClass constant ImplicitStrictModeESM (line 1330) | ImplicitStrictModeESM constant ImplicitStrictModeTSAlwaysStrict (line 1331) | ImplicitStrictModeTSAlwaysStrict constant ImplicitStrictModeJSXAutomaticRuntime (line 1332) | ImplicitStrictModeJSXAutomaticRuntime type TSNamespaceScope (line 1375) | type TSNamespaceScope struct type TSNamespaceMembers (line 1446) | type TSNamespaceMembers type TSNamespaceMember (line 1448) | type TSNamespaceMember struct type TSNamespaceMemberData (line 1454) | type TSNamespaceMemberData interface type TSNamespaceMemberProperty (line 1464) | type TSNamespaceMemberProperty struct method isTSNamespaceMember (line 1458) | func (TSNamespaceMemberProperty) isTSNamespaceMember() {} type TSNamespaceMemberNamespace (line 1467) | type TSNamespaceMemberNamespace struct method isTSNamespaceMember (line 1459) | func (TSNamespaceMemberNamespace) isTSNamespaceMember() {} type TSNamespaceMemberEnumNumber (line 1472) | type TSNamespaceMemberEnumNumber struct method isTSNamespaceMember (line 1460) | func (TSNamespaceMemberEnumNumber) isTSNamespaceMember() {} type TSNamespaceMemberEnumString (line 1477) | type TSNamespaceMemberEnumString struct method isTSNamespaceMember (line 1461) | func (TSNamespaceMemberEnumString) isTSNamespaceMember() {} type ExportsKind (line 1481) | type ExportsKind method IsDynamic (line 1511) | func (kind ExportsKind) IsDynamic() bool { constant ExportsNone (line 1486) | ExportsNone ExportsKind = iota constant ExportsCommonJS (line 1491) | ExportsCommonJS constant ExportsESM (line 1497) | ExportsESM constant ExportsESMWithDynamicFallback (line 1508) | ExportsESMWithDynamicFallback type ModuleType (line 1515) | type ModuleType method IsCommonJS (line 1531) | func (mt ModuleType) IsCommonJS() bool { method IsESM (line 1535) | func (mt ModuleType) IsESM() bool { constant ModuleUnknown (line 1518) | ModuleUnknown ModuleType = iota constant ModuleCommonJS_CJS (line 1521) | ModuleCommonJS_CJS constant ModuleCommonJS_CTS (line 1522) | ModuleCommonJS_CTS constant ModuleCommonJS_PackageJSON (line 1523) | ModuleCommonJS_PackageJSON constant ModuleESM_MJS (line 1526) | ModuleESM_MJS constant ModuleESM_MTS (line 1527) | ModuleESM_MTS constant ModuleESM_PackageJSON (line 1528) | ModuleESM_PackageJSON type ModuleTypeData (line 1539) | type ModuleTypeData struct constant NSExportPartIndex (line 1550) | NSExportPartIndex = uint32(0) type AST (line 1552) | type AST struct type TSEnumValue (line 1626) | type TSEnumValue struct type ConstValueKind (line 1631) | type ConstValueKind constant ConstValueNone (line 1634) | ConstValueNone ConstValueKind = iota constant ConstValueNull (line 1635) | ConstValueNull constant ConstValueUndefined (line 1636) | ConstValueUndefined constant ConstValueTrue (line 1637) | ConstValueTrue constant ConstValueFalse (line 1638) | ConstValueFalse constant ConstValueNumber (line 1639) | ConstValueNumber constant ConstValueString (line 1640) | ConstValueString type ConstValue (line 1643) | type ConstValue struct function ExprToConstValue (line 1649) | func ExprToConstValue(expr Expr) ConstValue { function ConstValueToExpr (line 1687) | func ConstValueToExpr(loc logger.Loc, value ConstValue) Expr { type NamedImport (line 1711) | type NamedImport struct type NamedExport (line 1732) | type NamedExport struct type Part (line 1742) | type Part struct type Dependency (line 1788) | type Dependency struct type DeclaredSymbol (line 1793) | type DeclaredSymbol struct type SymbolUse (line 1798) | type SymbolUse struct type SymbolCallUse (line 1802) | type SymbolCallUse struct function GenerateNonUniqueNameFromPath (line 1818) | func GenerateNonUniqueNameFromPath(path string) string { function EnsureValidIdentifier (line 1836) | func EnsureValidIdentifier(base string) string { FILE: internal/js_ast/js_ast_helpers.go type HelperContext (line 14) | type HelperContext struct method SimplifyUnusedExpr (line 534) | func (ctx HelperContext) SimplifyUnusedExpr(expr Expr, unsupportedFeat... method SimplifyBooleanExpr (line 2096) | func (ctx HelperContext) SimplifyBooleanExpr(expr Expr) Expr { method StmtsCanBeRemovedIfUnused (line 2200) | func (ctx HelperContext) StmtsCanBeRemovedIfUnused(stmts []Stmt, flags... method ClassCanBeRemovedIfUnused (line 2335) | func (ctx HelperContext) ClassCanBeRemovedIfUnused(class Class) bool { method ExprCanBeRemovedIfUnused (line 2432) | func (ctx HelperContext) ExprCanBeRemovedIfUnused(expr Expr) bool { method isSideEffectFreeUnboundIdentifierRef (line 2637) | func (ctx HelperContext) isSideEffectFreeUnboundIdentifierRef(value Ex... method MangleIfExpr (line 2788) | func (ctx HelperContext) MangleIfExpr(loc logger.Loc, e *EIf, unsuppor... function MakeHelperContext (line 18) | func MakeHelperContext(isUnbound func(ast.Ref) bool) HelperContext { function IsPropertyAccess (line 26) | func IsPropertyAccess(expr Expr) bool { function IsOptionalChain (line 34) | func IsOptionalChain(value Expr) bool { function Assign (line 46) | func Assign(a Expr, b Expr) Expr { function AssignStmt (line 50) | func AssignStmt(a Expr, b Expr) Stmt { function Not (line 58) | func Not(expr Expr) Expr { function MaybeSimplifyNot (line 73) | func MaybeSimplifyNot(expr Expr) (Expr, bool) { function MaybeSimplifyEqualityComparison (line 141) | func MaybeSimplifyEqualityComparison(loc logger.Loc, e *EBinary, unsuppo... function IsSymbolInstance (line 187) | func IsSymbolInstance(data E) bool { function IsPrimitiveLiteral (line 198) | func IsPrimitiveLiteral(data E) bool { type PrimitiveType (line 212) | type PrimitiveType constant PrimitiveUnknown (line 215) | PrimitiveUnknown PrimitiveType = iota constant PrimitiveMixed (line 216) | PrimitiveMixed constant PrimitiveNull (line 217) | PrimitiveNull constant PrimitiveUndefined (line 218) | PrimitiveUndefined constant PrimitiveBoolean (line 219) | PrimitiveBoolean constant PrimitiveNumber (line 220) | PrimitiveNumber constant PrimitiveString (line 221) | PrimitiveString constant PrimitiveBigInt (line 222) | PrimitiveBigInt function MergedKnownPrimitiveTypes (line 226) | func MergedKnownPrimitiveTypes(a Expr, b Expr) PrimitiveType { function KnownPrimitiveType (line 245) | func KnownPrimitiveType(expr E) PrimitiveType { function CanChangeStrictToLoose (line 376) | func CanChangeStrictToLoose(a Expr, b Expr) bool { function TypeofWithoutSideEffects (line 385) | func TypeofWithoutSideEffects(data E) (string, bool) { function JoinWithLeftAssociativeOp (line 429) | func JoinWithLeftAssociativeOp(op OpCode, a Expr, b Expr) Expr { function JoinWithComma (line 454) | func JoinWithComma(a Expr, b Expr) Expr { function JoinAllWithComma (line 464) | func JoinAllWithComma(all []Expr) (result Expr) { function ConvertBindingToExpr (line 471) | func ConvertBindingToExpr(binding Binding, wrapIdentifier func(logger.Lo... function simplifyUnusedStringAdditionChain (line 893) | func simplifyUnusedStringAdditionChain(expr Expr) (Expr, bool) { function ToInt32 (line 931) | func ToInt32(f float64) int32 { function ToUint32 (line 951) | func ToUint32(f float64) uint32 { function isInt32OrUint32 (line 956) | func isInt32OrUint32(data E) bool { function ToNumberWithoutSideEffects (line 973) | func ToNumberWithoutSideEffects(data E) (float64, bool) { function ToStringWithoutSideEffects (line 1024) | func ToStringWithoutSideEffects(data E) (string, bool) { function extractNumericValue (line 1069) | func extractNumericValue(data E) (float64, bool) { function extractNumericValues (line 1084) | func extractNumericValues(left Expr, right Expr) (float64, float64, bool) { function extractStringValue (line 1093) | func extractStringValue(data E) ([]uint16, bool) { function extractStringValues (line 1108) | func extractStringValues(left Expr, right Expr) ([]uint16, []uint16, boo... function stringCompareUCS2 (line 1117) | func stringCompareUCS2(a []uint16, b []uint16) int { function approximatePrintedIntCharCount (line 1132) | func approximatePrintedIntCharCount(intValue float64) int { function ShouldFoldBinaryOperatorWhenMinifying (line 1140) | func ShouldFoldBinaryOperatorWhenMinifying(binary *EBinary) bool { function FoldBinaryOperator (line 1235) | func FoldBinaryOperator(loc logger.Loc, e *EBinary) Expr { function IsBinaryNullAndUndefined (line 1379) | func IsBinaryNullAndUndefined(left Expr, right Expr, op OpCode) (Expr, E... function CheckEqualityBigInt (line 1416) | func CheckEqualityBigInt(a string, b string) (equal bool, ok bool) { type EqualityKind (line 1432) | type EqualityKind constant LooseEquality (line 1435) | LooseEquality EqualityKind = iota constant StrictEquality (line 1436) | StrictEquality function CheckEqualityIfNoSideEffects (line 1442) | func CheckEqualityIfNoSideEffects(left E, right E, kind EqualityKind) (e... function ValuesLookTheSame (line 1593) | func ValuesLookTheSame(left E, right E) bool { function TryToInsertOptionalChain (line 1661) | func TryToInsertOptionalChain(test Expr, expr Expr) bool { function joinStrings (line 1703) | func joinStrings(a []uint16, b []uint16) []uint16 { function TryToStringOnNumberSafely (line 1715) | func TryToStringOnNumberSafely(n float64, radix int) (string, bool) { function foldAdditionPreProcess (line 1732) | func foldAdditionPreProcess(expr Expr) Expr { type StringAdditionKind (line 1770) | type StringAdditionKind constant StringAdditionNormal (line 1773) | StringAdditionNormal StringAdditionKind = iota constant StringAdditionWithNestedLeft (line 1774) | StringAdditionWithNestedLeft function FoldStringAddition (line 1779) | func FoldStringAddition(left Expr, right Expr, kind StringAdditionKind) ... function InlinePrimitivesIntoTemplate (line 1889) | func InlinePrimitivesIntoTemplate(loc logger.Loc, e *ETemplate) Expr { type SideEffects (line 1932) | type SideEffects constant CouldHaveSideEffects (line 1935) | CouldHaveSideEffects SideEffects = iota constant NoSideEffects (line 1936) | NoSideEffects function ToNullOrUndefinedWithSideEffects (line 1939) | func ToNullOrUndefinedWithSideEffects(data E) (isNullOrUndefined bool, s... function ToBooleanWithSideEffects (line 2014) | func ToBooleanWithSideEffects(data E) (boolean bool, sideEffects SideEff... type StmtsCanBeRemovedIfUnusedFlags (line 2193) | type StmtsCanBeRemovedIfUnusedFlags constant KeepExportClauses (line 2196) | KeepExportClauses StmtsCanBeRemovedIfUnusedFlags = 1 << iota constant ReturnCanBeRemovedIfUnused (line 2197) | ReturnCanBeRemovedIfUnused function StringToEquivalentNumberValue (line 2684) | func StringToEquivalentNumberValue(value []uint16) (float64, bool) { function InlineSpreadsOfArrayLiterals (line 2716) | func InlineSpreadsOfArrayLiterals(values []Expr) (results []Expr) { function MangleObjectSpread (line 2737) | func MangleObjectSpread(properties []Property) []Property { function ForEachIdentifierBindingInDecls (line 2990) | func ForEachIdentifierBindingInDecls(decls []Decl, callback func(loc log... function ForEachIdentifierBinding (line 2996) | func ForEachIdentifierBinding(binding Binding, callback func(loc logger.... FILE: internal/js_ast/js_ast_test.go function assertEqual (line 5) | func assertEqual(t *testing.T, a interface{}, b interface{}) { function TestGenerateNonUniqueNameFromPath (line 11) | func TestGenerateNonUniqueNameFromPath(t *testing.T) { FILE: internal/js_ast/js_ident.go function IsIdentifier (line 9) | func IsIdentifier(text string) bool { function IsIdentifierES5AndESNext (line 27) | func IsIdentifierES5AndESNext(text string) bool { function ForceValidIdentifier (line 45) | func ForceValidIdentifier(prefix string, text string) string { function IsIdentifierUTF16 (line 77) | func IsIdentifierUTF16(text []uint16) bool { function IsIdentifierES5AndESNextUTF16 (line 105) | func IsIdentifierES5AndESNextUTF16(text []uint16) bool { function IsIdentifierStart (line 132) | func IsIdentifierStart(codePoint rune) bool { function IsIdentifierContinue (line 150) | func IsIdentifierContinue(codePoint rune) bool { function IsIdentifierStartES5AndESNext (line 173) | func IsIdentifierStartES5AndESNext(codePoint rune) bool { function IsIdentifierContinueES5AndESNext (line 191) | func IsIdentifierContinueES5AndESNext(codePoint rune) bool { function IsWhitespace (line 215) | func IsWhitespace(codePoint rune) bool { FILE: internal/js_lexer/js_lexer.go type T (line 29) | type T method IsAssign (line 158) | func (t T) IsAssign() bool { constant TEndOfFile (line 33) | TEndOfFile T = iota constant TSyntaxError (line 34) | TSyntaxError constant THashbang (line 37) | THashbang constant TNoSubstitutionTemplateLiteral (line 40) | TNoSubstitutionTemplateLiteral constant TNumericLiteral (line 41) | TNumericLiteral constant TStringLiteral (line 42) | TStringLiteral constant TBigIntegerLiteral (line 43) | TBigIntegerLiteral constant TTemplateHead (line 46) | TTemplateHead constant TTemplateMiddle (line 47) | TTemplateMiddle constant TTemplateTail (line 48) | TTemplateTail constant TAmpersand (line 51) | TAmpersand constant TAmpersandAmpersand (line 52) | TAmpersandAmpersand constant TAsterisk (line 53) | TAsterisk constant TAsteriskAsterisk (line 54) | TAsteriskAsterisk constant TAt (line 55) | TAt constant TBar (line 56) | TBar constant TBarBar (line 57) | TBarBar constant TCaret (line 58) | TCaret constant TCloseBrace (line 59) | TCloseBrace constant TCloseBracket (line 60) | TCloseBracket constant TCloseParen (line 61) | TCloseParen constant TColon (line 62) | TColon constant TComma (line 63) | TComma constant TDot (line 64) | TDot constant TDotDotDot (line 65) | TDotDotDot constant TEqualsEquals (line 66) | TEqualsEquals constant TEqualsEqualsEquals (line 67) | TEqualsEqualsEquals constant TEqualsGreaterThan (line 68) | TEqualsGreaterThan constant TExclamation (line 69) | TExclamation constant TExclamationEquals (line 70) | TExclamationEquals constant TExclamationEqualsEquals (line 71) | TExclamationEqualsEquals constant TGreaterThan (line 72) | TGreaterThan constant TGreaterThanEquals (line 73) | TGreaterThanEquals constant TGreaterThanGreaterThan (line 74) | TGreaterThanGreaterThan constant TGreaterThanGreaterThanGreaterThan (line 75) | TGreaterThanGreaterThanGreaterThan constant TLessThan (line 76) | TLessThan constant TLessThanEquals (line 77) | TLessThanEquals constant TLessThanLessThan (line 78) | TLessThanLessThan constant TMinus (line 79) | TMinus constant TMinusMinus (line 80) | TMinusMinus constant TOpenBrace (line 81) | TOpenBrace constant TOpenBracket (line 82) | TOpenBracket constant TOpenParen (line 83) | TOpenParen constant TPercent (line 84) | TPercent constant TPlus (line 85) | TPlus constant TPlusPlus (line 86) | TPlusPlus constant TQuestion (line 87) | TQuestion constant TQuestionDot (line 88) | TQuestionDot constant TQuestionQuestion (line 89) | TQuestionQuestion constant TSemicolon (line 90) | TSemicolon constant TSlash (line 91) | TSlash constant TTilde (line 92) | TTilde constant TAmpersandAmpersandEquals (line 95) | TAmpersandAmpersandEquals constant TAmpersandEquals (line 96) | TAmpersandEquals constant TAsteriskAsteriskEquals (line 97) | TAsteriskAsteriskEquals constant TAsteriskEquals (line 98) | TAsteriskEquals constant TBarBarEquals (line 99) | TBarBarEquals constant TBarEquals (line 100) | TBarEquals constant TCaretEquals (line 101) | TCaretEquals constant TEquals (line 102) | TEquals constant TGreaterThanGreaterThanEquals (line 103) | TGreaterThanGreaterThanEquals constant TGreaterThanGreaterThanGreaterThanEquals (line 104) | TGreaterThanGreaterThanGreaterThanEquals constant TLessThanLessThanEquals (line 105) | TLessThanLessThanEquals constant TMinusEquals (line 106) | TMinusEquals constant TPercentEquals (line 107) | TPercentEquals constant TPlusEquals (line 108) | TPlusEquals constant TQuestionQuestionEquals (line 109) | TQuestionQuestionEquals constant TSlashEquals (line 110) | TSlashEquals constant TPrivateIdentifier (line 113) | TPrivateIdentifier constant TIdentifier (line 116) | TIdentifier constant TEscapedKeyword (line 117) | TEscapedKeyword constant TBreak (line 120) | TBreak constant TCase (line 121) | TCase constant TCatch (line 122) | TCatch constant TClass (line 123) | TClass constant TConst (line 124) | TConst constant TContinue (line 125) | TContinue constant TDebugger (line 126) | TDebugger constant TDefault (line 127) | TDefault constant TDelete (line 128) | TDelete constant TDo (line 129) | TDo constant TElse (line 130) | TElse constant TEnum (line 131) | TEnum constant TExport (line 132) | TExport constant TExtends (line 133) | TExtends constant TFalse (line 134) | TFalse constant TFinally (line 135) | TFinally constant TFor (line 136) | TFor constant TFunction (line 137) | TFunction constant TIf (line 138) | TIf constant TImport (line 139) | TImport constant TIn (line 140) | TIn constant TInstanceof (line 141) | TInstanceof constant TNew (line 142) | TNew constant TNull (line 143) | TNull constant TReturn (line 144) | TReturn constant TSuper (line 145) | TSuper constant TSwitch (line 146) | TSwitch constant TThis (line 147) | TThis constant TThrow (line 148) | TThrow constant TTrue (line 149) | TTrue constant TTry (line 150) | TTry constant TTypeof (line 151) | TTypeof constant TVar (line 152) | TVar constant TVoid (line 153) | TVoid constant TWhile (line 154) | TWhile constant TWith (line 155) | TWith type MaybeSubstring (line 236) | type MaybeSubstring struct type Lexer (line 241) | type Lexer struct method Loc (line 366) | func (lexer *Lexer) Loc() logger.Loc { method Range (line 370) | func (lexer *Lexer) Range() logger.Range { method Raw (line 374) | func (lexer *Lexer) Raw() string { method rawIdentifier (line 378) | func (lexer *Lexer) rawIdentifier() MaybeSubstring { method StringLiteral (line 382) | func (lexer *Lexer) StringLiteral() []uint16 { method CookedAndRawTemplateContents (line 395) | func (lexer *Lexer) CookedAndRawTemplateContents() ([]uint16, string) { method IsIdentifierOrKeyword (line 448) | func (lexer *Lexer) IsIdentifierOrKeyword() bool { method IsContextualKeyword (line 452) | func (lexer *Lexer) IsContextualKeyword(text string) bool { method ExpectContextualKeyword (line 456) | func (lexer *Lexer) ExpectContextualKeyword(text string) { method SyntaxError (line 463) | func (lexer *Lexer) SyntaxError() { method ExpectedString (line 482) | func (lexer *Lexer) ExpectedString(text string) { method Expected (line 512) | func (lexer *Lexer) Expected(token T) { method Unexpected (line 520) | func (lexer *Lexer) Unexpected() { method Expect (line 529) | func (lexer *Lexer) Expect(token T) { method ExpectOrInsertSemicolon (line 536) | func (lexer *Lexer) ExpectOrInsertSemicolon() { method ExpectLessThan (line 546) | func (lexer *Lexer) ExpectLessThan(isInsideJSXElement bool) { method ExpectGreaterThan (line 576) | func (lexer *Lexer) ExpectGreaterThan(isInsideJSXElement bool) { method maybeExpandEquals (line 611) | func (lexer *Lexer) maybeExpandEquals() { method ExpectJSXElementChild (line 695) | func (lexer *Lexer) ExpectJSXElementChild(token T) { method NextJSXElementChild (line 702) | func (lexer *Lexer) NextJSXElementChild() { method ExpectInsideJSXElement (line 812) | func (lexer *Lexer) ExpectInsideJSXElement(token T) { method NextInsideJSXElement (line 819) | func (lexer *Lexer) NextInsideJSXElement() { method Next (line 999) | func (lexer *Lexer) Next() { method scanIdentifierWithEscapes (line 1641) | func (lexer *Lexer) scanIdentifierWithEscapes(kind identifierKind) (Ma... method parseNumericLiteralOrDot (line 1726) | func (lexer *Lexer) parseNumericLiteralOrDot() { method ScanRegExp (line 2034) | func (lexer *Lexer) ScanRegExp() { method tryToDecodeEscapeSequences (line 2192) | func (lexer *Lexer) tryToDecodeEscapeSequences(start int, text string,... method RescanCloseBraceAsTemplateToken (line 2434) | func (lexer *Lexer) RescanCloseBraceAsTemplateToken() { method step (line 2447) | func (lexer *Lexer) step() { method addRangeError (line 2470) | func (lexer *Lexer) addRangeError(r logger.Range, text string) { method addRangeErrorWithSuggestion (line 2482) | func (lexer *Lexer) addRangeErrorWithSuggestion(r logger.Range, text s... method AddRangeErrorWithNotes (line 2496) | func (lexer *Lexer) AddRangeErrorWithNotes(r logger.Range, text string... method scanCommentText (line 2584) | func (lexer *Lexer) scanCommentText() { type CommentBefore (line 295) | type CommentBefore constant PureCommentBefore (line 298) | PureCommentBefore CommentBefore = 1 << iota constant KeyCommentBefore (line 299) | KeyCommentBefore constant NoSideEffectsCommentBefore (line 300) | NoSideEffectsCommentBefore type LexerPanic (line 303) | type LexerPanic struct function NewLexer (line 305) | func NewLexer(log logger.Log, source logger.Source, ts config.TSOptions)... function NewLexerGlobalName (line 320) | func NewLexerGlobalName(log logger.Log, source logger.Source) Lexer { type JSONFlavor (line 335) | type JSONFlavor constant JSON (line 339) | JSON JSONFlavor = iota constant TSConfigJSON (line 345) | TSConfigJSON constant NotJSON (line 348) | NotJSON function NewLexerJSON (line 351) | func NewLexerJSON(log logger.Log, source logger.Source, json JSONFlavor,... function RangeOfIdentifier (line 631) | func RangeOfIdentifier(source logger.Source, loc logger.Loc) logger.Range { type KeyOrValue (line 676) | type KeyOrValue constant KeyRange (line 679) | KeyRange KeyOrValue = iota constant ValueRange (line 680) | ValueRange constant KeyAndValueRange (line 681) | KeyAndValueRange function RangeOfImportAssertOrWith (line 684) | func RangeOfImportAssertOrWith(source logger.Source, assertOrWith ast.As... type identifierKind (line 1632) | type identifierKind constant normalIdentifier (line 1635) | normalIdentifier identifierKind = iota constant privateIdentifier (line 1636) | privateIdentifier function decodeJSXEntities (line 2095) | func decodeJSXEntities(decoded []uint16, text string) []uint16 { function fixWhitespaceAndDecodeJSXEntities (line 2135) | func fixWhitespaceAndDecodeJSXEntities(text string) []uint16 { function hasPrefixWithWordBoundary (line 2508) | func hasPrefixWithWordBoundary(text string, prefix string) bool { type pragmaArg (line 2523) | type pragmaArg constant pragmaNoSpaceFirst (line 2526) | pragmaNoSpaceFirst pragmaArg = iota constant pragmaSkipSpaceFirst (line 2527) | pragmaSkipSpaceFirst function scanForPragmaArg (line 2530) | func scanForPragmaArg(kind pragmaArg, start int, pragma string, text str... function isUpperASCII (line 2576) | func isUpperASCII(c byte) bool { function isLetterASCII (line 2580) | func isLetterASCII(c byte) bool { FILE: internal/js_lexer/js_lexer_test.go function assertEqualStrings (line 16) | func assertEqualStrings(t *testing.T, a string, b string) { function lexToken (line 35) | func lexToken(contents string) T { function expectLexerError (line 41) | func expectLexerError(t *testing.T, contents string, expected string) { function TestComment (line 64) | func TestComment(t *testing.T) { function expectHashbang (line 71) | func expectHashbang(t *testing.T, contents string, expected string) { function TestHashbang (line 92) | func TestHashbang(t *testing.T) { function expectIdentifier (line 99) | func expectIdentifier(t *testing.T, contents string, expected string) { function TestIdentifier (line 120) | func TestIdentifier(t *testing.T) { function expectNumber (line 140) | func expectNumber(t *testing.T, contents string, expected float64) { function TestNumericLiteral (line 161) | func TestNumericLiteral(t *testing.T) { function expectBigInteger (line 347) | func expectBigInteger(t *testing.T, contents string, expected string) { function TestBigIntegerLiteral (line 368) | func TestBigIntegerLiteral(t *testing.T) { function expectString (line 402) | func expectString(t *testing.T, contents string, expected string) { function expectLexerErrorString (line 424) | func expectLexerErrorString(t *testing.T, contents string, expected stri... function TestStringLiteral (line 448) | func TestStringLiteral(t *testing.T) { function TestTokens (line 546) | func TestTokens(t *testing.T) { FILE: internal/js_parser/global_name_parser.go function ParseGlobalName (line 9) | func ParseGlobalName(log logger.Log, source logger.Source) (result []str... FILE: internal/js_parser/js_parser.go type parser (line 36) | type parser struct method warnAboutDuplicateProperties (line 1048) | func (p *parser) warnAboutDuplicateProperties(properties []js_ast.Prop... method selectLocalKind (line 1150) | func (p *parser) selectLocalKind(kind js_ast.LocalKind) js_ast.LocalKi... method pushScopeForParsePass (line 1169) | func (p *parser) pushScopeForParsePass(kind js_ast.ScopeKind, loc logg... method popScope (line 1216) | func (p *parser) popScope() { method popAndDiscardScope (line 1272) | func (p *parser) popAndDiscardScope(scopeIndex int) { method popAndFlattenScope (line 1291) | func (p *parser) popAndFlattenScope(scopeIndex int) { method discardScopesUpTo (line 1322) | func (p *parser) discardScopesUpTo(scopeIndex int) { method newSymbol (line 1341) | func (p *parser) newSymbol(kind ast.SymbolKind, name string) ast.Ref { method mergeSymbols (line 1358) | func (p *parser) mergeSymbols(old ast.Ref, new ast.Ref) ast.Ref { method canMergeSymbols (line 1391) | func (p *parser) canMergeSymbols(scope *js_ast.Scope, existing ast.Sym... method addSymbolAlreadyDeclaredError (line 1467) | func (p *parser) addSymbolAlreadyDeclaredError(name string, newLoc log... method declareSymbol (line 1479) | func (p *parser) declareSymbol(kind ast.SymbolKind, loc logger.Loc, na... method hoistSymbols (line 1536) | func (p *parser) hoistSymbols(scope *js_ast.Scope) { method declareBinding (line 1720) | func (p *parser) declareBinding(kind ast.SymbolKind, binding js_ast.Bi... method recordUsage (line 1728) | func (p *parser) recordUsage(ref ast.Ref) { method ignoreUsage (line 1747) | func (p *parser) ignoreUsage(ref ast.Ref) { method ignoreUsageOfIdentifierInDotChain (line 1764) | func (p *parser) ignoreUsageOfIdentifierInDotChain(expr js_ast.Expr) { method importFromRuntime (line 1785) | func (p *parser) importFromRuntime(loc logger.Loc, name string) js_ast... method callRuntime (line 1797) | func (p *parser) callRuntime(loc logger.Loc, name string, args []js_as... method importJSXSymbol (line 1813) | func (p *parser) importJSXSymbol(loc logger.Loc, jsx JSXImport) js_ast... method valueToSubstituteForRequire (line 1858) | func (p *parser) valueToSubstituteForRequire(loc logger.Loc) js_ast.Ex... method makePromiseRef (line 1868) | func (p *parser) makePromiseRef() ast.Ref { method makeRegExpRef (line 1875) | func (p *parser) makeRegExpRef() ast.Ref { method makeBigIntRef (line 1883) | func (p *parser) makeBigIntRef() ast.Ref { method storeNameInRef (line 1900) | func (p *parser) storeNameInRef(name js_lexer.MaybeSubstring) ast.Ref { method loadNameFromRef (line 1922) | func (p *parser) loadNameFromRef(ref ast.Ref) string { method logExprErrors (line 1967) | func (p *parser) logExprErrors(errors *deferredErrors) { method logDeferredArrowArgErrors (line 1982) | func (p *parser) logDeferredArrowArgErrors(errors *deferredErrors) { method logNullishCoalescingErrorPrecedenceError (line 1988) | func (p *parser) logNullishCoalescingErrorPrecedenceError(op string) { method logAssignToDefine (line 2011) | func (p *parser) logAssignToDefine(r logger.Range, name string, expr j... method logArrowArgErrors (line 2083) | func (p *parser) logArrowArgErrors(errors *deferredArrowArgErrors) { method keyNameForError (line 2093) | func (p *parser) keyNameForError(key js_ast.Expr) string { method checkForLegacyOctalLiteral (line 2103) | func (p *parser) checkForLegacyOctalLiteral(e js_ast.E) { method notesForAssertTypeJSON (line 2112) | func (p *parser) notesForAssertTypeJSON(record *ast.ImportRecord, alia... method parseStringLiteral (line 2121) | func (p *parser) parseStringLiteral() js_ast.Expr { method parseBigIntOrStringIfUnsupported (line 2152) | func (p *parser) parseBigIntOrStringIfUnsupported() js_ast.Expr { method parseProperty (line 2180) | func (p *parser) parseProperty(startLoc logger.Loc, kind js_ast.Proper... method parsePropertyBinding (line 2736) | func (p *parser) parsePropertyBinding() js_ast.PropertyBinding { method isMangledProp (line 2846) | func (p *parser) isMangledProp(name string) bool { method symbolForMangledProp (line 2862) | func (p *parser) symbolForMangledProp(name string) ast.Ref { method dotOrMangledPropParse (line 2886) | func (p *parser) dotOrMangledPropParse( method dotOrMangledPropVisit (line 2909) | func (p *parser) dotOrMangledPropVisit(target js_ast.Expr, name string... method parseArrowBody (line 2924) | func (p *parser) parseArrowBody(args []js_ast.Arg, data fnOrArrowDataP... method checkForArrowAfterTheCurrentToken (line 2964) | func (p *parser) checkForArrowAfterTheCurrentToken() bool { method parseAsyncPrefixExpr (line 2987) | func (p *parser) parseAsyncPrefixExpr(asyncRange logger.Range, level j... method parseFnExpr (line 3087) | func (p *parser) parseFnExpr(loc logger.Loc, isAsync bool, asyncRange ... method parseParenExpr (line 3148) | func (p *parser) parseParenExpr(loc logger.Loc, level js_ast.L, opts p... method convertExprToBindingAndInitializer (line 3367) | func (p *parser) convertExprToBindingAndInitializer( method convertExprToBinding (line 3394) | func (p *parser) convertExprToBinding(expr js_ast.Expr, invalidLog inv... method saveExprCommentsHere (line 3471) | func (p *parser) saveExprCommentsHere() logger.Loc { method parsePrefix (line 3493) | func (p *parser) parsePrefix(level js_ast.L, errors *deferredErrors, f... method parseYieldExpr (line 4104) | func (p *parser) parseYieldExpr(loc logger.Loc) js_ast.Expr { method willNeedBindingPattern (line 4131) | func (p *parser) willNeedBindingPattern() bool { method parseImportExpr (line 4151) | func (p *parser) parseImportExpr(loc logger.Loc, level js_ast.L) js_as... method parseExprOrBindings (line 4214) | func (p *parser) parseExprOrBindings(level js_ast.L, errors *deferredE... method parseExpr (line 4218) | func (p *parser) parseExpr(level js_ast.L) js_ast.Expr { method parseExprWithFlags (line 4222) | func (p *parser) parseExprWithFlags(level js_ast.L, flags exprFlag) js... method parseExprCommon (line 4226) | func (p *parser) parseExprCommon(level js_ast.L, errors *deferredError... method parseSuffix (line 4258) | func (p *parser) parseSuffix(left js_ast.Expr, level js_ast.L, errors ... method parseExprOrLetOrUsingStmt (line 4977) | func (p *parser) parseExprOrLetOrUsingStmt(opts parseStmtOpts) (js_ast... method parseCallArgs (line 5087) | func (p *parser) parseCallArgs() (args []js_ast.Expr, closeParenLoc lo... method parseJSXNamespacedName (line 5127) | func (p *parser) parseJSXNamespacedName() (logger.Range, js_lexer.Mayb... method parseJSXTag (line 5165) | func (p *parser) parseJSXTag() (logger.Range, string, js_ast.Expr) { method parseJSXElement (line 5209) | func (p *parser) parseJSXElement(loc logger.Loc) js_ast.Expr { method parseTemplateParts (line 5520) | func (p *parser) parseTemplateParts(includeRaw bool) (parts []js_ast.T... method parseAndDeclareDecls (line 5559) | func (p *parser) parseAndDeclareDecls(kind ast.SymbolKind, opts parseS... method requireInitializers (line 5633) | func (p *parser) requireInitializers(kind js_ast.LocalKind, decls []js... method forbidInitializers (line 5652) | func (p *parser) forbidInitializers(decls []js_ast.Decl, loopType stri... method parseClauseAlias (line 5669) | func (p *parser) parseClauseAlias(kind string) js_lexer.MaybeSubstring { method parseImportClause (line 5693) | func (p *parser) parseImportClause() ([]js_ast.ClauseItem, bool) { method parseExportClause (line 5814) | func (p *parser) parseExportClause() ([]js_ast.ClauseItem, bool) { method parseBinding (line 5957) | func (p *parser) parseBinding(opts parseBindingOpts) js_ast.Binding { method parseFn (line 6110) | func (p *parser) parseFn( method validateFunctionName (line 6332) | func (p *parser) validateFunctionName(fn js_ast.Fn, kind fnKind) { method validateDeclaredSymbolName (line 6345) | func (p *parser) validateDeclaredSymbolName(loc logger.Loc, name strin... method parseClassStmt (line 6353) | func (p *parser) parseClassStmt(loc logger.Loc, opts parseStmtOpts) js... method parseClassExpr (line 6405) | func (p *parser) parseClassExpr(decorators []js_ast.Decorator) js_ast.... method parseClass (line 6447) | func (p *parser) parseClass(classKeyword logger.Range, name *ast.LocRe... method parseLabelName (line 6596) | func (p *parser) parseLabelName() *ast.LocRef { method parsePath (line 6606) | func (p *parser) parsePath() (logger.Range, string, *ast.ImportAssertO... method maybeWarnAboutAssertKeyword (line 6702) | func (p *parser) maybeWarnAboutAssertKeyword(loc logger.Loc) { method parseFnStmt (line 6716) | func (p *parser) parseFnStmt(loc logger.Loc, opts parseStmtOpts, isAsy... method parseDecorators (line 6848) | func (p *parser) parseDecorators(decoratorScope *js_ast.Scope, classKe... method parseDecorator (line 6914) | func (p *parser) parseDecorator() js_ast.Expr { method parseStmt (line 7051) | func (p *parser) parseStmt(opts parseStmtOpts) js_ast.Stmt { method addImportRecord (line 8400) | func (p *parser) addImportRecord( method parseFnBody (line 8420) | func (p *parser) parseFnBody(data fnOrArrowDataParse) js_ast.FnBody { method forbidLexicalDecl (line 8442) | func (p *parser) forbidLexicalDecl(loc logger.Loc) { method forbidUsingInSwitch (line 8448) | func (p *parser) forbidUsingInSwitch(loc logger.Loc) { method parseStmtsUpTo (line 8454) | func (p *parser) parseStmtsUpTo(end js_lexer.T, opts parseStmtOpts) []... method generateTempRef (line 8574) | func (p *parser) generateTempRef(declare generateTempRefArg, optionalN... method generateTopLevelTempRef (line 8599) | func (p *parser) generateTopLevelTempRef() ast.Ref { method pushScopeForVisitPass (line 8607) | func (p *parser) pushScopeForVisitPass(kind js_ast.ScopeKind, loc logg... method findSymbol (line 8629) | func (p *parser) findSymbol(loc logger.Loc, name string) findSymbolRes... method findLabelSymbol (line 8705) | func (p *parser) findLabelSymbol(loc logger.Loc, name string) (ref ast... method visitStmtsAndPrependTempRefs (line 8831) | func (p *parser) visitStmtsAndPrependTempRefs(stmts []js_ast.Stmt, opt... method visitStmts (line 8907) | func (p *parser) visitStmts(stmts []js_ast.Stmt, kind stmtsKind) []js_... method mangleStmts (line 9103) | func (p *parser) mangleStmts(stmts []js_ast.Stmt, kind stmtsKind) []js... method substituteSingleUseSymbolInStmt (line 9623) | func (p *parser) substituteSingleUseSymbolInStmt(stmt js_ast.Stmt, ref... method substituteSingleUseSymbolInExpr (line 9682) | func (p *parser) substituteSingleUseSymbolInExpr( method visitLoopBody (line 9928) | func (p *parser) visitLoopBody(stmt js_ast.Stmt) js_ast.Stmt { method visitSingleStmt (line 9937) | func (p *parser) visitSingleStmt(stmt js_ast.Stmt, kind stmtsKind) js_... method visitForLoopInit (line 9982) | func (p *parser) visitForLoopInit(stmt js_ast.Stmt, isInOrOf bool) js_... method recordDeclaredSymbol (line 10010) | func (p *parser) recordDeclaredSymbol(ref ast.Ref) { method visitBinding (line 10021) | func (p *parser) visitBinding(binding js_ast.Binding, opts bindingOpts) { method mangleIf (line 10184) | func (p *parser) mangleIf(stmts []js_ast.Stmt, loc logger.Loc, s *js_a... method keepExprSymbolName (line 10311) | func (p *parser) keepExprSymbolName(value js_ast.Expr, name string) js... method keepClassOrFnSymbolName (line 10321) | func (p *parser) keepClassOrFnSymbolName(loc logger.Loc, expr js_ast.E... method visitAndAppendStmt (line 10331) | func (p *parser) visitAndAppendStmt(stmts []js_ast.Stmt, stmt js_ast.S... method minifySwitchStmt (line 11550) | func (p *parser) minifySwitchStmt(loc logger.Loc, s *js_ast.SSwitch, s... method maybeRelocateVarsToTopLevel (line 11792) | func (p *parser) maybeRelocateVarsToTopLevel(decls []js_ast.Decl, mode... method markExprAsParenthesized (line 11829) | func (p *parser) markExprAsParenthesized(value js_ast.Expr, openParenL... method maybeTransposeIfExprChain (line 11854) | func (p *parser) maybeTransposeIfExprChain(expr js_ast.Expr, visit fun... method maybeInlineIIFE (line 11863) | func (p *parser) maybeInlineIIFE(loc logger.Loc, e *js_ast.ECall) (js_... method iifeCanBeRemovedIfUnused (line 11919) | func (p *parser) iifeCanBeRemovedIfUnused(args []js_ast.Arg, body js_a... method captureValueWithPossibleSideEffects (line 11965) | func (p *parser) captureValueWithPossibleSideEffects( method visitDecorators (line 12081) | func (p *parser) visitDecorators(decorators []js_ast.Decorator, decora... method visitClass (line 12113) | func (p *parser) visitClass(nameScopeLoc logger.Loc, class *js_ast.Cla... method visitArgs (line 12522) | func (p *parser) visitArgs(args []js_ast.Arg, opts visitArgsOpts) { method isDotOrIndexDefineMatch (line 12555) | func (p *parser) isDotOrIndexDefineMatch(expr js_ast.Expr, parts []str... method instantiateDefineExpr (line 12614) | func (p *parser) instantiateDefineExpr(loc logger.Loc, expr config.Def... method instantiateInjectDotName (line 12723) | func (p *parser) instantiateInjectDotName(loc logger.Loc, name injecte... method checkForUnrepresentableIdentifier (line 12745) | func (p *parser) checkForUnrepresentableIdentifier(loc logger.Loc, nam... method warnAboutTypeofAndString (line 12768) | func (p *parser) warnAboutTypeofAndString(a js_ast.Expr, b js_ast.Expr... method warnAboutEqualityCheck (line 12803) | func (p *parser) warnAboutEqualityCheck(op string, value js_ast.Expr, ... method maybeRewritePropertyAccess (line 12875) | func (p *parser) maybeRewritePropertyAccess( method visitExpr (line 13210) | func (p *parser) visitExpr(expr js_ast.Expr) js_ast.Expr { method valueForThis (line 13215) | func (p *parser) valueForThis( method valueForImportMeta (line 13270) | func (p *parser) valueForImportMeta(loc logger.Loc) (js_ast.Expr, bool) { method reportPrivateNameUsage (line 13301) | func (p *parser) reportPrivateNameUsage(name string) { method isValidAssignmentTarget (line 13310) | func (p *parser) isValidAssignmentTarget(expr js_ast.Expr) bool { method isUnsupportedRegularExpression (line 13348) | func (p *parser) isUnsupportedRegularExpression(loc logger.Loc, value ... method visitExprInOut (line 13485) | func (p *parser) visitExprInOut(expr js_ast.Expr, in exprIn) (js_ast.E... method handleGlobPattern (line 16550) | func (p *parser) handleGlobPattern(expr js_ast.Expr, kind ast.ImportKi... method globPatternFromExpr (line 16691) | func (p *parser) globPatternFromExpr(expr js_ast.Expr) ([]globPart, lo... method convertSymbolUseToCall (line 16767) | func (p *parser) convertSymbolUseToCall(ref ast.Ref, isSingleNonSpread... method warnAboutImportNamespaceCall (line 16789) | func (p *parser) warnAboutImportNamespaceCall(target js_ast.Expr, kind... method maybeMarkKnownGlobalConstructorAsPure (line 16859) | func (p *parser) maybeMarkKnownGlobalConstructorAsPure(e *js_ast.ENew) { method handleIdentifier (line 16988) | func (p *parser) handleIdentifier(loc logger.Loc, e *js_ast.EIdentifie... method visitFn (line 17135) | func (p *parser) visitFn(fn *js_ast.Fn, scopeLoc logger.Loc, opts visi... method recordExport (line 17181) | func (p *parser) recordExport(loc logger.Loc, alias string, ref ast.Re... method checkForUnusedTSImportEquals (line 17200) | func (p *parser) checkForUnusedTSImportEquals(s *js_ast.SLocal, result... method scanForUnusedTSImportEquals (line 17243) | func (p *parser) scanForUnusedTSImportEquals(stmts []js_ast.Stmt) (res... method scanForImportsAndExports (line 17262) | func (p *parser) scanForImportsAndExports(stmts []js_ast.Stmt) (result... method appendPart (line 17612) | func (p *parser) appendPart(parts []js_ast.Part, stmts []js_ast.Stmt) ... method whyESModule (line 18221) | func (p *parser) whyESModule() (whyESM, []logger.MsgData) { method prepareForVisitPass (line 18257) | func (p *parser) prepareForVisitPass() { method declareCommonJSSymbol (line 18370) | func (p *parser) declareCommonJSSymbol(kind ast.SymbolKind, name strin... method computeCharacterFrequency (line 18419) | func (p *parser) computeCharacterFrequency() *ast.CharFreq { method generateImportStmt (line 18470) | func (p *parser) generateImportStmt( method toAST (line 18544) | func (p *parser) toAST(before, parts, after []js_ast.Part, hashbang st... type globPatternImport (line 396) | type globPatternImport struct type namespaceImportItems (line 406) | type namespaceImportItems struct type stringLocalForYarnPnP (line 411) | type stringLocalForYarnPnP struct type injectedSymbolSource (line 416) | type injectedSymbolSource struct type injectedDotName (line 421) | type injectedDotName struct type importNamespaceCallKind (line 426) | type importNamespaceCallKind constant exprKindCall (line 429) | exprKindCall importNamespaceCallKind = iota constant exprKindNew (line 430) | exprKindNew constant exprKindJSXTag (line 431) | exprKindJSXTag type importNamespaceCall (line 434) | type importNamespaceCall struct type thenCatchChain (line 439) | type thenCatchChain struct type Options (line 450) | type Options struct method Equal (line 544) | func (a *Options) Equal(b *Options) bool { type optionsThatSupportStructuralEquality (line 469) | type optionsThatSupportStructuralEquality struct function OptionsForYarnPnP (line 499) | func OptionsForYarnPnP() Options { function OptionsFromConfig (line 507) | func OptionsFromConfig(options *config.Options) Options { function isSameRegexp (line 597) | func isSameRegexp(a *regexp.Regexp, b *regexp.Regexp) bool { function jsxExprsEqual (line 605) | func jsxExprsEqual(a config.DefineExpr, b config.DefineExpr) bool { type tempRef (line 621) | type tempRef struct constant locModuleScope (line 627) | locModuleScope = -1 type scopeOrder (line 630) | type scopeOrder struct type awaitOrYield (line 635) | type awaitOrYield constant allowIdent (line 639) | allowIdent awaitOrYield = iota constant allowExpr (line 642) | allowExpr constant forbidAll (line 645) | forbidAll type fnOrArrowDataParse (line 651) | type fnOrArrowDataParse struct type fnOrArrowDataVisit (line 673) | type fnOrArrowDataVisit struct type fnOnlyDataVisit (line 693) | type fnOnlyDataVisit struct type livenessStatus (line 758) | type livenessStatus constant alwaysDead (line 761) | alwaysDead livenessStatus = -1 constant livenessUnknown (line 762) | livenessUnknown livenessStatus = 0 constant alwaysLive (line 763) | alwaysLive livenessStatus = 1 type switchCaseLiveness (line 766) | type switchCaseLiveness struct function analyzeSwitchCasesForLiveness (line 771) | func analyzeSwitchCasesForLiveness(s *js_ast.SSwitch) []switchCaseLivene... function caseBodyCouldHaveFallThrough (line 848) | func caseBodyCouldHaveFallThrough(stmts []js_ast.Stmt) bool { constant bloomFilterSize (line 862) | bloomFilterSize = 251 type duplicateCaseValue (line 864) | type duplicateCaseValue struct type duplicateCaseChecker (line 869) | type duplicateCaseChecker struct method reset (line 874) | func (dc *duplicateCaseChecker) reset() { method check (line 886) | func (dc *duplicateCaseChecker) check(p *parser, expr js_ast.Expr) { function duplicateCaseHash (line 930) | func duplicateCaseHash(expr js_ast.Expr) (uint32, bool) { function duplicateCaseEquals (line 984) | func duplicateCaseEquals(left js_ast.Expr, right js_ast.Expr) (equals bo... type duplicatePropertiesIn (line 1041) | type duplicatePropertiesIn constant duplicatePropertiesInObject (line 1044) | duplicatePropertiesInObject duplicatePropertiesIn = iota constant duplicatePropertiesInClass (line 1045) | duplicatePropertiesInClass function isJumpStatement (line 1118) | func isJumpStatement(data js_ast.S) bool { function jumpStmtsLookTheSame (line 1127) | func jumpStmtsLookTheSame(left js_ast.S, right js_ast.S) bool { type mergeResult (line 1380) | type mergeResult constant mergeForbidden (line 1383) | mergeForbidden = iota constant mergeReplaceWithNew (line 1384) | mergeReplaceWithNew constant mergeOverwriteWithNew (line 1385) | mergeOverwriteWithNew constant mergeKeepExisting (line 1386) | mergeKeepExisting constant mergeBecomePrivateGetSetPair (line 1387) | mergeBecomePrivateGetSetPair constant mergeBecomePrivateStaticGetSetPair (line 1388) | mergeBecomePrivateStaticGetSetPair type scopeMemberArray (line 1525) | type scopeMemberArray method Len (line 1527) | func (a scopeMemberArray) Len() int { return len(a) } method Swap (line 1528) | func (a scopeMemberArray) Swap(i int, j int) { a[i], a[j] = a[j], a[i] } method Less (line 1530) | func (a scopeMemberArray) Less(i int, j int) bool { type JSXImport (line 1804) | type JSXImport constant JSXImportJSX (line 1807) | JSXImportJSX JSXImport = iota constant JSXImportJSXS (line 1808) | JSXImportJSXS constant JSXImportFragment (line 1809) | JSXImportFragment constant JSXImportCreateElement (line 1810) | JSXImportCreateElement type deferredErrors (line 1938) | type deferredErrors struct method mergeInto (line 1948) | func (from *deferredErrors) mergeInto(to *deferredErrors) { function defineValueCanBeUsedInAssignTarget (line 1999) | func defineValueCanBeUsedInAssignTarget(data js_ast.E) bool { type deferredArrowArgErrors (line 2078) | type deferredArrowArgErrors struct type propertyOpts (line 2161) | type propertyOpts struct type wasOriginallyDotOrIndex (line 2879) | type wasOriginallyDotOrIndex constant wasOriginallyDot (line 2882) | wasOriginallyDot wasOriginallyDotOrIndex = iota constant wasOriginallyIndex (line 2883) | wasOriginallyIndex type parenExprOpts (line 3141) | type parenExprOpts struct type invalidLog (line 3357) | type invalidLog struct type syntaxFeature (line 3362) | type syntaxFeature struct type exprFlag (line 3484) | type exprFlag constant exprFlagDecorator (line 3487) | exprFlagDecorator exprFlag = 1 << iota constant exprFlagForLoopInit (line 3488) | exprFlagForLoopInit constant exprFlagForAwaitLoopInit (line 3489) | exprFlagForAwaitLoopInit constant exprFlagAfterQuestionAndBeforeColon (line 3490) | exprFlagAfterQuestionAndBeforeColon function tagOrFragmentHelpText (line 5158) | func tagOrFragmentHelpText(tag string) string { type parseBindingOpts (line 5953) | type parseBindingOpts struct type fnKind (line 6325) | type fnKind constant fnStmt (line 6328) | fnStmt fnKind = iota constant fnExpr (line 6329) | fnExpr type parseClassOpts (line 6439) | type parseClassOpts struct type deferredDecorators (line 6836) | type deferredDecorators struct type decoratorContextFlags (line 6840) | type decoratorContextFlags constant decoratorBeforeClassExpr (line 6843) | decoratorBeforeClassExpr = 1 << iota constant decoratorInClassExpr (line 6844) | decoratorInClassExpr constant decoratorInFnArgs (line 6845) | decoratorInFnArgs type lexicalDecl (line 7025) | type lexicalDecl constant lexicalDeclForbid (line 7028) | lexicalDeclForbid lexicalDecl = iota constant lexicalDeclAllowAll (line 7029) | lexicalDeclAllowAll constant lexicalDeclAllowFnInsideIf (line 7030) | lexicalDeclAllowFnInsideIf constant lexicalDeclAllowFnInsideLabel (line 7031) | lexicalDeclAllowFnInsideLabel type parseStmtOpts (line 7034) | type parseStmtOpts struct type generateTempRefArg (line 8559) | type generateTempRefArg constant tempRefNeedsDeclare (line 8562) | tempRefNeedsDeclare generateTempRefArg = iota constant tempRefNoDeclare (line 8563) | tempRefNoDeclare constant tempRefNeedsDeclareMayBeCapturedInsideLoop (line 8571) | tempRefNeedsDeclareMayBeCapturedInsideLoop type findSymbolResult (line 8623) | type findSymbolResult struct function findIdentifiers (line 8728) | func findIdentifiers(binding js_ast.Binding, identifiers []js_ast.Decl) ... function shouldKeepStmtsInDeadControlFlow (line 8747) | func shouldKeepStmtsInDeadControlFlow(stmts []js_ast.Stmt) bool { function shouldKeepStmtInDeadControlFlow (line 8767) | func shouldKeepStmtInDeadControlFlow(stmt js_ast.Stmt) bool { type prependTempRefsOpts (line 8826) | type prependTempRefsOpts struct type stmtsKind (line 8899) | type stmtsKind constant stmtsNormal (line 8902) | stmtsNormal stmtsKind = iota constant stmtsLoopBody (line 8903) | stmtsLoopBody constant stmtsFnBody (line 8904) | stmtsFnBody type substituteStatus (line 9674) | type substituteStatus constant substituteContinue (line 9677) | substituteContinue substituteStatus = iota constant substituteSuccess (line 9678) | substituteSuccess constant substituteFailure (line 9679) | substituteFailure function stmtsToSingleStmt (line 9972) | func stmtsToSingleStmt(loc logger.Loc, stmts []js_ast.Stmt, closeBraceLo... type bindingOpts (line 10017) | type bindingOpts struct function stmtCaresAboutScope (line 10080) | func stmtCaresAboutScope(stmt js_ast.Stmt) bool { function stmtsCareAboutScope (line 10096) | func stmtsCareAboutScope(stmts []js_ast.Stmt) bool { function dropFirstStatement (line 10105) | func dropFirstStatement(body js_ast.Stmt, replaceOrNil js_ast.Stmt) js_a... function mangleFor (line 10122) | func mangleFor(s *js_ast.SFor) { function appendIfOrLabelBodyPreservingScope (line 10174) | func appendIfOrLabelBodyPreservingScope(stmts []js_ast.Stmt, body js_ast... function tryToInlineCaseBody (line 11684) | func tryToInlineCaseBody(openBraceLoc logger.Loc, stmts []js_ast.Stmt, c... function isUnsightlyPrimitive (line 11729) | func isUnsightlyPrimitive(data js_ast.E) bool { function isSafeForConstLocalPrefix (line 11756) | func isSafeForConstLocalPrefix(expr js_ast.Expr) bool { type relocateVarsMode (line 11777) | type relocateVarsMode constant relocateVarsNormal (line 11780) | relocateVarsNormal relocateVarsMode = iota constant relocateVarsForInOrForOf (line 11781) | relocateVarsForInOrForOf type captureValueMode (line 11939) | type captureValueMode constant valueDefinitelyNotMutated (line 11942) | valueDefinitelyNotMutated captureValueMode = iota constant valueCouldBeMutated (line 11943) | valueCouldBeMutated type visitClassResult (line 12101) | type visitClassResult struct function isSimpleParameterList (line 12485) | func isSimpleParameterList(args []js_ast.Arg, hasRestArg bool) bool { function fnBodyContainsUseStrict (line 12497) | func fnBodyContainsUseStrict(body []js_ast.Stmt) (logger.Loc, bool) { type visitArgsOpts (line 12513) | type visitArgsOpts struct type typeofStringOrder (line 12761) | type typeofStringOrder constant onlyCheckOriginalOrder (line 12764) | onlyCheckOriginalOrder typeofStringOrder = iota constant checkBothOrders (line 12765) | checkBothOrders type exprIn (line 13108) | type exprIn struct type exprOut (line 13178) | type exprOut struct function locAfterOp (line 13287) | func locAfterOp(e *js_ast.EBinary) logger.Loc { function isEvalOrArguments (line 13297) | func isEvalOrArguments(name string) bool { function containsClosingScriptTag (line 13334) | func containsClosingScriptTag(text string) bool { type binaryExprVisitor (line 15949) | type binaryExprVisitor struct method checkAndPrepare (line 15963) | func (v *binaryExprVisitor) checkAndPrepare(p *parser) js_ast.Expr { method visitRightAndFinish (line 16000) | func (v *binaryExprVisitor) visitRightAndFinish(p *parser) js_ast.Expr { function remapExprLocsInJSON (line 16531) | func remapExprLocsInJSON(expr *js_ast.Expr, table []logger.StringInJSTab... type globPart (line 16686) | type globPart struct type identifierOpts (line 16979) | type identifierOpts struct type visitFnOpts (line 17129) | type visitFnOpts struct type importsExportsScanResult (line 17193) | type importsExportsScanResult struct function newParser (line 17675) | func newParser(log logger.Log, source logger.Source, lexer js_lexer.Lexe... constant defaultJSXImportSource (line 17751) | defaultJSXImportSource = "react" function Parse (line 17753) | func Parse(log logger.Log, source logger.Source, options Options) (resul... type HelperCall (line 18070) | type HelperCall struct function LazyExportAST (line 18075) | func LazyExportAST(log logger.Log, source logger.Source, options Options... function GlobResolveAST (line 18118) | func GlobResolveAST(log logger.Log, source logger.Source, importRecords ... function ParseDefineExpr (line 18162) | func ParseDefineExpr(text string) (config.DefineExpr, js_ast.E) { type whyESM (line 18207) | type whyESM constant whyESMUnknown (line 18210) | whyESMUnknown whyESM = iota constant whyESMExportKeyword (line 18211) | whyESMExportKeyword constant whyESMImportMeta (line 18212) | whyESMImportMeta constant whyESMTopLevelAwait (line 18213) | whyESMTopLevelAwait constant whyESMFileMJS (line 18214) | whyESMFileMJS constant whyESMFileMTS (line 18215) | whyESMFileMTS constant whyESMTypeModulePackageJSON (line 18216) | whyESMTypeModulePackageJSON constant whyESMImportStatement (line 18217) | whyESMImportStatement function sortedKeysOfMapStringLocRef (line 18535) | func sortedKeysOfMapStringLocRef(in map[string]ast.LocRef) []string { FILE: internal/js_parser/js_parser_lower.go method markSyntaxFeature (line 18) | func (p *parser) markSyntaxFeature(feature compat.JSFeature, r logger.Ra... method isStrictMode (line 132) | func (p *parser) isStrictMode() bool { method isStrictModeOutputFormat (line 136) | func (p *parser) isStrictModeOutputFormat() bool { type strictModeFeature (line 140) | type strictModeFeature constant withStatement (line 143) | withStatement strictModeFeature = iota constant deleteBareName (line 144) | deleteBareName constant forInVarInit (line 145) | forInVarInit constant evalOrArguments (line 146) | evalOrArguments constant reservedWord (line 147) | reservedWord constant legacyOctalLiteral (line 148) | legacyOctalLiteral constant legacyOctalEscape (line 149) | legacyOctalEscape constant ifElseFunctionStmt (line 150) | ifElseFunctionStmt constant labelFunctionStmt (line 151) | labelFunctionStmt constant duplicateLexicallyDeclaredNames (line 152) | duplicateLexicallyDeclaredNames method markStrictModeFeature (line 155) | func (p *parser) markStrictModeFeature(feature strictModeFeature, r logg... method whyStrictMode (line 205) | func (p *parser) whyStrictMode(scope *js_ast.Scope) (where string, notes... method markAsyncFn (line 238) | func (p *parser) markAsyncFn(asyncRange logger.Range, isGenerator bool) ... method captureThis (line 254) | func (p *parser) captureThis() ast.Ref { method captureArguments (line 265) | func (p *parser) captureArguments() ast.Ref { method lowerFunction (line 276) | func (p *parser) lowerFunction( method lowerOptionalChain (line 495) | func (p *parser) lowerOptionalChain(expr js_ast.Expr, in exprIn, childOu... method lowerParenthesizedOptionalChain (line 803) | func (p *parser) lowerParenthesizedOptionalChain(loc logger.Loc, e *js_a... method lowerAssignmentOperator (line 816) | func (p *parser) lowerAssignmentOperator(value js_ast.Expr, callback fun... method lowerExponentiationAssignmentOperator (line 864) | func (p *parser) lowerExponentiationAssignmentOperator(loc logger.Loc, e... method lowerNullishCoalescingAssignmentOperator (line 881) | func (p *parser) lowerNullishCoalescingAssignmentOperator(loc logger.Loc... method lowerLogicalAssignmentOperator (line 919) | func (p *parser) lowerLogicalAssignmentOperator(loc logger.Loc, e *js_as... method lowerNullishCoalescing (line 946) | func (p *parser) lowerNullishCoalescing(loc logger.Loc, left js_ast.Expr... method lowerObjectSpread (line 990) | func (p *parser) lowerObjectSpread(loc logger.Loc, e *js_ast.EObject) js... method maybeLowerAwait (line 1049) | func (p *parser) maybeLowerAwait(loc logger.Loc, e *js_ast.EAwait) js_as... method lowerForAwaitLoop (line 1070) | func (p *parser) lowerForAwaitLoop(loc logger.Loc, loop *js_ast.SForOf, ... function bindingHasObjectRest (line 1257) | func bindingHasObjectRest(binding js_ast.Binding) bool { function exprHasObjectRest (line 1275) | func exprHasObjectRest(expr js_ast.Expr) bool { method lowerObjectRestInDecls (line 1297) | func (p *parser) lowerObjectRestInDecls(decls []js_ast.Decl) []js_ast.De... method lowerObjectRestInForLoopInit (line 1325) | func (p *parser) lowerObjectRestInForLoopInit(init js_ast.Stmt, body *js... method lowerObjectRestInCatchBinding (line 1370) | func (p *parser) lowerObjectRestInCatchBinding(catch *js_ast.Catch) { type objRestMode (line 1387) | type objRestMode constant objRestReturnValueIsUnused (line 1390) | objRestReturnValueIsUnused objRestMode = iota constant objRestMustReturnInitExpr (line 1391) | objRestMustReturnInitExpr method lowerAssign (line 1394) | func (p *parser) lowerAssign(rootExpr js_ast.Expr, rootInit js_ast.Expr,... method lowerObjectRestToDecls (line 1416) | func (p *parser) lowerObjectRestToDecls(rootExpr js_ast.Expr, rootInit j... method lowerObjectRestHelper (line 1432) | func (p *parser) lowerObjectRestHelper( method captureKeyForObjectRest (line 1703) | func (p *parser) captureKeyForObjectRest(originalKey js_ast.Expr) (final... method lowerTemplateLiteral (line 1745) | func (p *parser) lowerTemplateLiteral(loc logger.Loc, e *js_ast.ETemplat... function couldPotentiallyThrow (line 1867) | func couldPotentiallyThrow(data js_ast.E) bool { method maybeLowerSetBinOp (line 1876) | func (p *parser) maybeLowerSetBinOp(left js_ast.Expr, op js_ast.OpCode, ... method shouldLowerUsingDeclarations (line 1886) | func (p *parser) shouldLowerUsingDeclarations(stmts []js_ast.Stmt) bool { type lowerUsingDeclarationContext (line 1899) | type lowerUsingDeclarationContext struct method scanStmts (line 1911) | func (ctx *lowerUsingDeclarationContext) scanStmts(p *parser, stmts []... method finalize (line 1944) | func (ctx *lowerUsingDeclarationContext) finalize(p *parser, stmts []j... method lowerUsingDeclarationContext (line 1905) | func (p *parser) lowerUsingDeclarationContext() lowerUsingDeclarationCon... method lowerUsingDeclarationInForOf (line 2106) | func (p *parser) lowerUsingDeclarationInForOf(loc logger.Loc, init *js_a... FILE: internal/js_parser/js_parser_lower_class.go method privateSymbolNeedsToBeLowered (line 14) | func (p *parser) privateSymbolNeedsToBeLowered(private *js_ast.EPrivateI... method lowerPrivateBrandCheck (line 19) | func (p *parser) lowerPrivateBrandCheck(target js_ast.Expr, loc logger.L... method lowerPrivateGet (line 27) | func (p *parser) lowerPrivateGet(target js_ast.Expr, loc logger.Loc, pri... method lowerPrivateSet (line 59) | func (p *parser) lowerPrivateSet( method lowerPrivateSetUnOp (line 88) | func (p *parser) lowerPrivateSetUnOp(target js_ast.Expr, loc logger.Loc,... method lowerPrivateSetBinOp (line 137) | func (p *parser) lowerPrivateSetBinOp(target js_ast.Expr, loc logger.Loc... method extractPrivateIndex (line 149) | func (p *parser) extractPrivateIndex(target js_ast.Expr) (js_ast.Expr, l... method extractSuperProperty (line 160) | func (p *parser) extractSuperProperty(target js_ast.Expr) js_ast.Expr { method lowerSuperPropertyOrPrivateInAssign (line 174) | func (p *parser) lowerSuperPropertyOrPrivateInAssign(expr js_ast.Expr) (... method shouldLowerSuperPropertyAccess (line 251) | func (p *parser) shouldLowerSuperPropertyAccess(expr js_ast.Expr) bool { method callSuperPropertyWrapper (line 259) | func (p *parser) callSuperPropertyWrapper(loc logger.Loc, key js_ast.Exp... method lowerSuperPropertyGet (line 284) | func (p *parser) lowerSuperPropertyGet(loc logger.Loc, key js_ast.Expr) ... method lowerSuperPropertySet (line 309) | func (p *parser) lowerSuperPropertySet(loc logger.Loc, key js_ast.Expr, ... method lowerSuperPropertySetBinOp (line 337) | func (p *parser) lowerSuperPropertySetBinOp(loc logger.Loc, property js_... method maybeLowerSuperPropertyGetInsideCall (line 349) | func (p *parser) maybeLowerSuperPropertyGetInsideCall(call *js_ast.ECall) { type classLoweringInfo (line 381) | type classLoweringInfo struct method computeClassLoweringInfo (line 387) | func (p *parser) computeClassLoweringInfo(class *js_ast.Class) (result c... type classKind (line 615) | type classKind constant classKindExpr (line 618) | classKindExpr classKind = iota constant classKindStmt (line 619) | classKindStmt constant classKindExportStmt (line 620) | classKindExportStmt constant classKindExportDefaultStmt (line 621) | classKindExportDefaultStmt type lowerClassContext (line 624) | type lowerClassContext struct method enableNameCapture (line 746) | func (ctx *lowerClassContext) enableNameCapture(p *parser, result visi... method lowerField (line 818) | func (ctx *lowerClassContext) lowerField( method lowerPrivateMethod (line 978) | func (ctx *lowerClassContext) lowerPrivateMethod(p *parser, prop js_as... method lowerMethod (line 1047) | func (ctx *lowerClassContext) lowerMethod(p *parser, prop js_ast.Prope... method analyzeProperty (line 1106) | func (ctx *lowerClassContext) analyzeProperty(p *parser, prop js_ast.P... method hoistComputedProperties (line 1201) | func (ctx *lowerClassContext) hoistComputedProperties(p *parser, class... method processProperties (line 1453) | func (ctx *lowerClassContext) processProperties(p *parser, classLoweri... method lowerStaticBlock (line 1788) | func (ctx *lowerClassContext) lowerStaticBlock(p *parser, loc logger.L... method rewriteAutoAccessorToGetSet (line 1822) | func (ctx *lowerClassContext) rewriteAutoAccessorToGetSet( method insertInitializersIntoConstructor (line 1956) | func (ctx *lowerClassContext) insertInitializersIntoConstructor(p *par... method finishAndGenerateCode (line 2032) | func (ctx *lowerClassContext) finishAndGenerateCode(p *parser, result ... method lowerClass (line 682) | func (p *parser) lowerClass(stmt js_ast.Stmt, expr js_ast.Expr, result v... type propertyAnalysis (line 1094) | type propertyAnalysis struct method propertyNameHint (line 1188) | func (p *parser) propertyNameHint(key js_ast.Expr) string { function fieldOrAccessorOrder (line 1436) | func fieldOrAccessorOrder(kind js_ast.PropertyKind, flags js_ast.Propert... function cloneKeyForLowerClass (line 2403) | func cloneKeyForLowerClass(key js_ast.Expr) js_ast.Expr { method insertStmtsAfterSuperCall (line 2429) | func (p *parser) insertStmtsAfterSuperCall(body *js_ast.FnBody, stmtsToI... function findFirstTopLevelSuperCall (line 2558) | func findFirstTopLevelSuperCall(expr js_ast.Expr, superCtorRef ast.Ref) ... FILE: internal/js_parser/js_parser_lower_test.go function TestLowerFunctionArgumentScope (line 10) | func TestLowerFunctionArgumentScope(t *testing.T) { function TestLowerArrowFunction (line 38) | func TestLowerArrowFunction(t *testing.T) { function TestLowerNullishCoalescing (line 54) | func TestLowerNullishCoalescing(t *testing.T) { function TestLowerNullishCoalescingAssign (line 108) | func TestLowerNullishCoalescingAssign(t *testing.T) { function TestLowerLogicalAssign (line 165) | func TestLowerLogicalAssign(t *testing.T) { function TestLowerAsyncFunctions (line 234) | func TestLowerAsyncFunctions(t *testing.T) { function TestLowerClassSideEffectOrder (line 250) | func TestLowerClassSideEffectOrder(t *testing.T) { function TestLowerClassInstance (line 281) | func TestLowerClassInstance(t *testing.T) { function TestLowerClassStatic (line 339) | func TestLowerClassStatic(t *testing.T) { function TestLowerClassStaticThis (line 453) | func TestLowerClassStaticThis(t *testing.T) { function TestLowerClassStaticBlocks (line 539) | func TestLowerClassStaticBlocks(t *testing.T) { function TestLowerOptionalChain (line 551) | func TestLowerOptionalChain(t *testing.T) { function TestLowerOptionalCatchBinding (line 720) | func TestLowerOptionalCatchBinding(t *testing.T) { function TestLowerBigInt (line 725) | func TestLowerBigInt(t *testing.T) { function TestLowerExportStarAs (line 780) | func TestLowerExportStarAs(t *testing.T) { function TestAsyncGeneratorFns (line 785) | func TestAsyncGeneratorFns(t *testing.T) { function TestForAwait (line 807) | func TestForAwait(t *testing.T) { function TestLowerAutoAccessors (line 834) | func TestLowerAutoAccessors(t *testing.T) { FILE: internal/js_parser/js_parser_test.go function expectParseErrorCommon (line 19) | func expectParseErrorCommon(t *testing.T, contents string, expected stri... function expectParseError (line 34) | func expectParseError(t *testing.T, contents string, expected string) { function expectParseErrorTarget (line 39) | func expectParseErrorTarget(t *testing.T, esVersion int, contents string... function expectPrintedWithUnsupportedFeatures (line 48) | func expectPrintedWithUnsupportedFeatures(t *testing.T, unsupportedJSFea... function expectParseErrorWithUnsupportedFeatures (line 55) | func expectParseErrorWithUnsupportedFeatures(t *testing.T, unsupportedJS... function expectPrintedCommon (line 62) | func expectPrintedCommon(t *testing.T, contents string, expected string,... function expectPrinted (line 91) | func expectPrinted(t *testing.T, contents string, expected string) { function expectPrintedMangle (line 96) | func expectPrintedMangle(t *testing.T, contents string, expected string) { function expectPrintedNormalAndMangle (line 103) | func expectPrintedNormalAndMangle(t *testing.T, contents string, normal ... function expectPrintedTarget (line 108) | func expectPrintedTarget(t *testing.T, esVersion int, contents string, e... function expectPrintedMangleTarget (line 117) | func expectPrintedMangleTarget(t *testing.T, esVersion int, contents str... function expectPrintedASCII (line 127) | func expectPrintedASCII(t *testing.T, contents string, expected string) { function expectPrintedTargetASCII (line 134) | func expectPrintedTargetASCII(t *testing.T, esVersion int, contents stri... function expectParseErrorTargetASCII (line 144) | func expectParseErrorTargetASCII(t *testing.T, esVersion int, contents s... function expectParseErrorJSX (line 154) | func expectParseErrorJSX(t *testing.T, contents string, expected string) { function expectPrintedJSX (line 163) | func expectPrintedJSX(t *testing.T, contents string, expectedPreserve st... function expectPrintedJSXSideEffects (line 178) | func expectPrintedJSXSideEffects(t *testing.T, contents string, expected... function expectPrintedMangleJSX (line 188) | func expectPrintedMangleJSX(t *testing.T, contents string, expected stri... type JSXAutomaticTestOptions (line 198) | type JSXAutomaticTestOptions struct function expectParseErrorJSXAutomatic (line 205) | func expectParseErrorJSXAutomatic(t *testing.T, options JSXAutomaticTest... function expectPrintedJSXAutomatic (line 219) | func expectPrintedJSXAutomatic(t *testing.T, options JSXAutomaticTestOpt... function TestUnOp (line 233) | func TestUnOp(t *testing.T) { function TestBinOp (line 240) | func TestBinOp(t *testing.T) { function TestComments (line 265) | func TestComments(t *testing.T) { function TestStrictMode (line 296) | func TestStrictMode(t *testing.T) { function TestExponentiation (line 610) | func TestExponentiation(t *testing.T) { function TestAwait (line 672) | func TestAwait(t *testing.T) { function TestRegExp (line 717) | func TestRegExp(t *testing.T) { function TestUnicodeIdentifierNames (line 735) | func TestUnicodeIdentifierNames(t *testing.T) { function TestIdentifierEscapes (line 749) | func TestIdentifierEscapes(t *testing.T) { function TestSpecialIdentifiers (line 761) | func TestSpecialIdentifiers(t *testing.T) { function TestDecls (line 767) | func TestDecls(t *testing.T) { function TestBreakAndContinue (line 875) | func TestBreakAndContinue(t *testing.T) { function TestFor (line 903) | func TestFor(t *testing.T) { function TestScope (line 1031) | func TestScope(t *testing.T) { function TestASI (line 1181) | func TestASI(t *testing.T) { function TestLocal (line 1230) | func TestLocal(t *testing.T) { function TestArrays (line 1258) | func TestArrays(t *testing.T) { function TestPattern (line 1271) | func TestPattern(t *testing.T) { function TestAssignTarget (line 1285) | func TestAssignTarget(t *testing.T) { function TestObject (line 1312) | func TestObject(t *testing.T) { function TestComputedProperty (line 1393) | func TestComputedProperty(t *testing.T) { function TestQuotedProperty (line 1411) | func TestQuotedProperty(t *testing.T) { function TestLexicalDecl (line 1433) | func TestLexicalDecl(t *testing.T) { function TestFunction (line 1527) | func TestFunction(t *testing.T) { function TestClass (line 1593) | func TestClass(t *testing.T) { function TestSuperCall (line 1835) | func TestSuperCall(t *testing.T) { function TestSuperProp (line 1881) | func TestSuperProp(t *testing.T) { function TestClassFields (line 1951) | func TestClassFields(t *testing.T) { function TestClassStaticBlocks (line 2010) | func TestClassStaticBlocks(t *testing.T) { function TestAutoAccessors (line 2031) | func TestAutoAccessors(t *testing.T) { function TestDecorators (line 2071) | func TestDecorators(t *testing.T) { function TestGenerator (line 2218) | func TestGenerator(t *testing.T) { function TestYield (line 2233) | func TestYield(t *testing.T) { function TestAsync (line 2298) | func TestAsync(t *testing.T) { function TestLabels (line 2461) | func TestLabels(t *testing.T) { function TestArrow (line 2487) | func TestArrow(t *testing.T) { function TestTemplate (line 2661) | func TestTemplate(t *testing.T) { function TestSwitch (line 2783) | func TestSwitch(t *testing.T) { function TestConstantFolding (line 2841) | func TestConstantFolding(t *testing.T) { function TestConstantFoldingScopes (line 3051) | func TestConstantFoldingScopes(t *testing.T) { function TestImport (line 3062) | func TestImport(t *testing.T) { function TestExport (line 3160) | func TestExport(t *testing.T) { function TestExportDuplicates (line 3245) | func TestExportDuplicates(t *testing.T) { function TestExportDefault (line 3278) | func TestExportDefault(t *testing.T) { function TestExportClause (line 3309) | func TestExportClause(t *testing.T) { function TestCatch (line 3321) | func TestCatch(t *testing.T) { function TestWarningEqualsNegativeZero (line 3345) | func TestWarningEqualsNegativeZero(t *testing.T) { function TestWarningEqualsNewObject (line 3362) | func TestWarningEqualsNewObject(t *testing.T) { function TestWarningEqualsNaN (line 3380) | func TestWarningEqualsNaN(t *testing.T) { function TestWarningTypeofEquals (line 3397) | func TestWarningTypeofEquals(t *testing.T) { function TestWarningDeleteSuperProperty (line 3414) | func TestWarningDeleteSuperProperty(t *testing.T) { function TestWarningDuplicateCase (line 3425) | func TestWarningDuplicateCase(t *testing.T) { function TestWarningDuplicateClassMember (line 3458) | func TestWarningDuplicateClassMember(t *testing.T) { function TestWarningNullishCoalescing (line 3490) | func TestWarningNullishCoalescing(t *testing.T) { function TestWarningLogicalOperator (line 3509) | func TestWarningLogicalOperator(t *testing.T) { function TestMangleFor (line 3527) | func TestMangleFor(t *testing.T) { function TestMangleLoopJump (line 3569) | func TestMangleLoopJump(t *testing.T) { function TestMangleUndefined (line 3605) | func TestMangleUndefined(t *testing.T) { function TestMangleIndex (line 3628) | func TestMangleIndex(t *testing.T) { function TestMangleBlock (line 3654) | func TestMangleBlock(t *testing.T) { function TestMangleSwitch (line 3666) | func TestMangleSwitch(t *testing.T) { function TestMangleAddEmptyString (line 3700) | func TestMangleAddEmptyString(t *testing.T) { function TestMangleStringLength (line 3777) | func TestMangleStringLength(t *testing.T) { function TestMangleStringIndex (line 3792) | func TestMangleStringIndex(t *testing.T) { function TestMangleNot (line 3806) | func TestMangleNot(t *testing.T) { function TestMangleDoubleNot (line 3821) | func TestMangleDoubleNot(t *testing.T) { function TestMangleBooleanConstructor (line 3860) | func TestMangleBooleanConstructor(t *testing.T) { function TestMangleNumberConstructor (line 3880) | func TestMangleNumberConstructor(t *testing.T) { function TestMangleStringConstructor (line 3895) | func TestMangleStringConstructor(t *testing.T) { function TestMangleBigIntConstructor (line 3904) | func TestMangleBigIntConstructor(t *testing.T) { function TestMangleCharCodeAt (line 3918) | func TestMangleCharCodeAt(t *testing.T) { function TestMangleFromCharCode (line 3942) | func TestMangleFromCharCode(t *testing.T) { function TestMangleToString (line 3965) | func TestMangleToString(t *testing.T) { function TestMangleIf (line 4006) | func TestMangleIf(t *testing.T) { function TestMangleWrapToAvoidAmbiguousElse (line 4264) | func TestMangleWrapToAvoidAmbiguousElse(t *testing.T) { function TestMangleOptionalChain (line 4274) | func TestMangleOptionalChain(t *testing.T) { function TestMangleNullOrUndefinedWithSideEffects (line 4325) | func TestMangleNullOrUndefinedWithSideEffects(t *testing.T) { function TestMangleBooleanWithSideEffects (line 4385) | func TestMangleBooleanWithSideEffects(t *testing.T) { function TestMangleReturn (line 4463) | func TestMangleReturn(t *testing.T) { function TestMangleThrow (line 4516) | func TestMangleThrow(t *testing.T) { function TestMangleInitializer (line 4541) | func TestMangleInitializer(t *testing.T) { function TestMangleCall (line 4551) | func TestMangleCall(t *testing.T) { function TestMangleNew (line 4563) | func TestMangleNew(t *testing.T) { function TestMangleArray (line 4575) | func TestMangleArray(t *testing.T) { function TestMangleObject (line 4587) | func TestMangleObject(t *testing.T) { function TestMangleObjectJSX (line 4667) | func TestMangleObjectJSX(t *testing.T) { function TestMangleArrow (line 4679) | func TestMangleArrow(t *testing.T) { function TestMangleIIFE (line 4689) | func TestMangleIIFE(t *testing.T) { function TestMangleTemplate (line 4740) | func TestMangleTemplate(t *testing.T) { function TestMangleTypeofIdentifier (line 4796) | func TestMangleTypeofIdentifier(t *testing.T) { function TestMangleTypeofEqualsUndefined (line 4810) | func TestMangleTypeofEqualsUndefined(t *testing.T) { function TestMangleEquals (line 4822) | func TestMangleEquals(t *testing.T) { function TestMangleUnaryInsideComma (line 4882) | func TestMangleUnaryInsideComma(t *testing.T) { function TestMangleBinaryInsideComma (line 4892) | func TestMangleBinaryInsideComma(t *testing.T) { function TestMangleUnaryConstantFolding (line 4901) | func TestMangleUnaryConstantFolding(t *testing.T) { function TestMangleBinaryConstantFolding (line 4920) | func TestMangleBinaryConstantFolding(t *testing.T) { function TestMangleNestedLogical (line 4984) | func TestMangleNestedLogical(t *testing.T) { function TestMangleEqualsUndefined (line 4996) | func TestMangleEqualsUndefined(t *testing.T) { function TestMangleUnusedFunctionExpressionNames (line 5032) | func TestMangleUnusedFunctionExpressionNames(t *testing.T) { function TestMangleClass (line 5039) | func TestMangleClass(t *testing.T) { function TestMangleUnusedClassExpressionNames (line 5053) | func TestMangleUnusedClassExpressionNames(t *testing.T) { function TestMangleUnused (line 5059) | func TestMangleUnused(t *testing.T) { function TestMangleInlineLocals (line 5251) | func TestMangleInlineLocals(t *testing.T) { function TestTrimCodeInDeadControlFlow (line 5498) | func TestTrimCodeInDeadControlFlow(t *testing.T) { function TestPreservedComments (line 5549) | func TestPreservedComments(t *testing.T) { function TestUnicodeWhitespace (line 5593) | func TestUnicodeWhitespace(t *testing.T) { function TestReplacementCharacter (line 5670) | func TestReplacementCharacter(t *testing.T) { function TestNewTarget (line 5682) | func TestNewTarget(t *testing.T) { function TestJSX (line 5694) | func TestJSX(t *testing.T) { function TestJSXSingleLine (line 5917) | func TestJSXSingleLine(t *testing.T) { function TestJSXPragmas (line 5926) | func TestJSXPragmas(t *testing.T) { function TestJSXAutomatic (line 5948) | func TestJSXAutomatic(t *testing.T) { function TestJSXAutomaticPragmas (line 6064) | func TestJSXAutomaticPragmas(t *testing.T) { function TestJSXSideEffects (line 6107) | func TestJSXSideEffects(t *testing.T) { function TestPreserveOptionalChainParentheses (line 6115) | func TestPreserveOptionalChainParentheses(t *testing.T) { function TestPrivateIdentifiers (line 6144) | func TestPrivateIdentifiers(t *testing.T) { function TestImportAssertions (line 6274) | func TestImportAssertions(t *testing.T) { function TestImportAttributes (line 6349) | func TestImportAttributes(t *testing.T) { function TestES5 (line 6435) | func TestES5(t *testing.T) { function TestASCIIOnly (line 6557) | func TestASCIIOnly(t *testing.T) { function TestMangleCatch (line 6706) | func TestMangleCatch(t *testing.T) { function TestMangleTry (line 6721) | func TestMangleTry(t *testing.T) { function TestAutoPureForObjectCreate (line 6759) | func TestAutoPureForObjectCreate(t *testing.T) { function TestAutoPureForSet (line 6768) | func TestAutoPureForSet(t *testing.T) { function TestAutoPureForMap (line 6781) | func TestAutoPureForMap(t *testing.T) { function TestAutoPureForWeakSet (line 6796) | func TestAutoPureForWeakSet(t *testing.T) { function TestAutoPureForWeakMap (line 6809) | func TestAutoPureForWeakMap(t *testing.T) { function TestAutoPureForDate (line 6824) | func TestAutoPureForDate(t *testing.T) { function TestAutoPureForRegExpEscape (line 6840) | func TestAutoPureForRegExpEscape(t *testing.T) { function TestUsing (line 6853) | func TestUsing(t *testing.T) { FILE: internal/js_parser/json_parser.go type jsonParser (line 13) | type jsonParser struct method parseMaybeTrailingComma (line 22) | func (p *jsonParser) parseMaybeTrailingComma(closeToken js_lexer.T) bo... method parseExpr (line 36) | func (p *jsonParser) parseExpr() js_ast.Expr { type JSONOptions (line 182) | type JSONOptions struct function ParseJSON (line 189) | func ParseJSON(log logger.Log, source logger.Source, options JSONOptions... function isValidJSON (line 218) | func isValidJSON(value js_ast.Expr) bool { FILE: internal/js_parser/json_parser_test.go function expectParseErrorJSON (line 15) | func expectParseErrorJSON(t *testing.T, contents string, expected string) { function expectPrintedJSON (line 33) | func expectPrintedJSON(t *testing.T, contents string, expected string) { function expectPrintedJSONWithWarning (line 38) | func expectPrintedJSONWithWarning(t *testing.T, contents string, warning... function TestJSONAtom (line 72) | func TestJSONAtom(t *testing.T) { function TestJSONString (line 79) | func TestJSONString(t *testing.T) { function TestJSONNumber (line 133) | func TestJSONNumber(t *testing.T) { function TestJSONObject (line 163) | func TestJSONObject(t *testing.T) { function TestJSONArray (line 176) | func TestJSONArray(t *testing.T) { function TestJSONInvalid (line 186) | func TestJSONInvalid(t *testing.T) { function TestJSONComments (line 193) | func TestJSONComments(t *testing.T) { FILE: internal/js_parser/sourcemap_parser.go function ParseSourceMap (line 18) | func ParseSourceMap(log logger.Log, source logger.Source) *sourcemap.Sou... type mappingArray (line 427) | type mappingArray method Len (line 429) | func (a mappingArray) Len() int { return len(a) } method Swap (line 430) | func (a mappingArray) Swap(i int, j int) { a[i], a[j] = a[j], a[i] } method Less (line 432) | func (a mappingArray) Less(i int, j int) bool { FILE: internal/js_parser/ts_parser.go method skipTypeScriptBinding (line 19) | func (p *parser) skipTypeScriptBinding() { method skipTypeScriptFnArgs (line 104) | func (p *parser) skipTypeScriptFnArgs() { method skipTypeScriptParenOrFnType (line 150) | func (p *parser) skipTypeScriptParenOrFnType() { method skipTypeScriptReturnType (line 160) | func (p *parser) skipTypeScriptReturnType() { method skipTypeScriptType (line 164) | func (p *parser) skipTypeScriptType(level js_ast.L) { type skipTypeFlags (line 168) | type skipTypeFlags method has (line 177) | func (flags skipTypeFlags) has(flag skipTypeFlags) bool { constant isReturnTypeFlag (line 171) | isReturnTypeFlag skipTypeFlags = 1 << iota constant isIndexSignatureFlag (line 172) | isIndexSignatureFlag constant allowTupleLabelsFlag (line 173) | allowTupleLabelsFlag constant disallowConditionalTypesFlag (line 174) | disallowConditionalTypesFlag type tsTypeIdentifierKind (line 181) | type tsTypeIdentifierKind constant tsTypeIdentifierNormal (line 184) | tsTypeIdentifierNormal tsTypeIdentifierKind = iota constant tsTypeIdentifierUnique (line 185) | tsTypeIdentifierUnique constant tsTypeIdentifierAbstract (line 186) | tsTypeIdentifierAbstract constant tsTypeIdentifierAsserts (line 187) | tsTypeIdentifierAsserts constant tsTypeIdentifierPrefix (line 188) | tsTypeIdentifierPrefix constant tsTypeIdentifierPrimitive (line 189) | tsTypeIdentifierPrimitive constant tsTypeIdentifierInfer (line 190) | tsTypeIdentifierInfer method skipTypeScriptTypeWithFlags (line 216) | func (p *parser) skipTypeScriptTypeWithFlags(level js_ast.L, flags skipT... method skipTypeScriptObjectType (line 557) | func (p *parser) skipTypeScriptObjectType() { type typeParameterFlags (line 655) | type typeParameterFlags constant allowInOutVarianceAnnotations (line 659) | allowInOutVarianceAnnotations typeParameterFlags = 1 << iota constant allowConstModifier (line 662) | allowConstModifier constant allowEmptyTypeParameters (line 665) | allowEmptyTypeParameters type skipTypeScriptTypeParametersResult (line 668) | type skipTypeScriptTypeParametersResult constant didNotSkipAnything (line 671) | didNotSkipAnything skipTypeScriptTypeParametersResult = iota constant couldBeTypeCast (line 672) | couldBeTypeCast constant definitelyTypeParameters (line 673) | definitelyTypeParameters method skipTypeScriptTypeParameters (line 678) | func (p *parser) skipTypeScriptTypeParameters(flags typeParameterFlags) ... type skipTypeScriptTypeArgumentsOpts (line 795) | type skipTypeScriptTypeArgumentsOpts struct method skipTypeScriptTypeArguments (line 800) | func (p *parser) skipTypeScriptTypeArguments(opts skipTypeScriptTypeArgu... method trySkipTypeArgumentsInExpressionWithBacktracking (line 843) | func (p *parser) trySkipTypeArgumentsInExpressionWithBacktracking() bool { method trySkipTypeScriptTypeParametersThenOpenParenWithBacktracking (line 870) | func (p *parser) trySkipTypeScriptTypeParametersThenOpenParenWithBacktra... method trySkipTypeScriptArrowReturnTypeWithBacktracking (line 895) | func (p *parser) trySkipTypeScriptArrowReturnTypeWithBacktracking() bool { method isTypeScriptArrowReturnTypeAfterQuestionAndBeforeColon (line 929) | func (originalParser *parser) isTypeScriptArrowReturnTypeAfterQuestionAn... method trySkipTypeScriptArrowArgsWithBacktracking (line 1001) | func (p *parser) trySkipTypeScriptArrowArgsWithBacktracking() bool { method trySkipTypeScriptConstraintOfInferTypeWithBacktracking (line 1024) | func (p *parser) trySkipTypeScriptConstraintOfInferTypeWithBacktracking(... method isTSArrowFnJSX (line 1052) | func (p *parser) isTSArrowFnJSX() (isTSArrowFn bool) { method tsCanFollowTypeArgumentsInExpression (line 1082) | func (p *parser) tsCanFollowTypeArgumentsInExpression() bool { method tsIsBinaryOperator (line 1116) | func (p *parser) tsIsBinaryOperator() bool { method tsIsStartOfExpression (line 1159) | func (p *parser) tsIsStartOfExpression() bool { method tsIsStartOfLeftHandSideExpression (line 1202) | func (p *parser) tsIsStartOfLeftHandSideExpression() bool { method tsLookAheadNextTokenIsOpenParenOrLessThanOrDot (line 1236) | func (p *parser) tsLookAheadNextTokenIsOpenParenOrLessThanOrDot() (resul... method tsIsIdentifier (line 1251) | func (p *parser) tsIsIdentifier() bool { method skipTypeScriptInterfaceStmt (line 1271) | func (p *parser) skipTypeScriptInterfaceStmt(opts parseStmtOpts) { method skipTypeScriptTypeStmt (line 1306) | func (p *parser) skipTypeScriptTypeStmt(opts parseStmtOpts) { method parseTypeScriptEnumStmt (line 1360) | func (p *parser) parseTypeScriptEnumStmt(loc logger.Loc, opts parseStmtO... method parseTypeScriptImportEqualsStmt (line 1540) | func (p *parser) parseTypeScriptImportEqualsStmt(loc logger.Loc, opts pa... method getOrCreateExportedNamespaceMembers (line 1598) | func (p *parser) getOrCreateExportedNamespaceMembers(name string, isExpo... method parseTypeScriptNamespaceStmt (line 1623) | func (p *parser) parseTypeScriptNamespaceStmt(loc logger.Loc, opts parse... method generateClosureForTypeScriptNamespaceOrEnum (line 1822) | func (p *parser) generateClosureForTypeScriptNamespaceOrEnum( method generateClosureForTypeScriptEnum (line 1954) | func (p *parser) generateClosureForTypeScriptEnum( method wrapInlinedEnum (line 2075) | func (p *parser) wrapInlinedEnum(value js_ast.Expr, comment string) js_a... FILE: internal/js_parser/ts_parser_test.go function expectParseErrorTS (line 10) | func expectParseErrorTS(t *testing.T, contents string, expected string) { function expectParseErrorExperimentalDecoratorTS (line 19) | func expectParseErrorExperimentalDecoratorTS(t *testing.T, contents stri... function expectPrintedWithUnsupportedFeaturesTS (line 31) | func expectPrintedWithUnsupportedFeaturesTS(t *testing.T, unsupportedJSF... function expectParseErrorTargetTS (line 41) | func expectParseErrorTargetTS(t *testing.T, esVersion int, contents stri... function expectPrintedTS (line 53) | func expectPrintedTS(t *testing.T, contents string, expected string) { function expectPrintedAssignSemanticsTS (line 62) | func expectPrintedAssignSemanticsTS(t *testing.T, contents string, expec... function expectPrintedAssignSemanticsTargetTS (line 74) | func expectPrintedAssignSemanticsTargetTS(t *testing.T, esVersion int, c... function expectPrintedExperimentalDecoratorTS (line 89) | func expectPrintedExperimentalDecoratorTS(t *testing.T, contents string,... function expectPrintedMangleTS (line 101) | func expectPrintedMangleTS(t *testing.T, contents string, expected strin... function expectPrintedMangleAssignSemanticsTS (line 111) | func expectPrintedMangleAssignSemanticsTS(t *testing.T, contents string,... function expectPrintedTargetTS (line 124) | func expectPrintedTargetTS(t *testing.T, esVersion int, contents string,... function expectPrintedTargetExperimentalDecoratorTS (line 136) | func expectPrintedTargetExperimentalDecoratorTS(t *testing.T, esVersion ... function expectParseErrorTSNoAmbiguousLessThan (line 151) | func expectParseErrorTSNoAmbiguousLessThan(t *testing.T, contents string... function expectPrintedTSNoAmbiguousLessThan (line 161) | func expectPrintedTSNoAmbiguousLessThan(t *testing.T, contents string, e... function expectParseErrorTSX (line 171) | func expectParseErrorTSX(t *testing.T, contents string, expected string) { function expectPrintedTSX (line 183) | func expectPrintedTSX(t *testing.T, contents string, expected string) { function TestTSTypes (line 195) | func TestTSTypes(t *testing.T) { function TestTSAsCast (line 615) | func TestTSAsCast(t *testing.T) { function TestTSSatisfies (line 645) | func TestTSSatisfies(t *testing.T) { function TestTSClass (line 694) | func TestTSClass(t *testing.T) { function TestTSAutoAccessors (line 874) | func TestTSAutoAccessors(t *testing.T) { function TestTSPrivateIdentifiers (line 920) | func TestTSPrivateIdentifiers(t *testing.T) { function TestTSInterface (line 963) | func TestTSInterface(t *testing.T) { function TestTSNamespace (line 988) | func TestTSNamespace(t *testing.T) { function TestTSNamespaceExports (line 1213) | func TestTSNamespaceExports(t *testing.T) { function TestTSNamespaceDestructuring (line 1520) | func TestTSNamespaceDestructuring(t *testing.T) { function TestTSEnum (line 1540) | func TestTSEnum(t *testing.T) { function TestTSEnumConstantFolding (line 1701) | func TestTSEnumConstantFolding(t *testing.T) { function TestTSFunction (line 1804) | func TestTSFunction(t *testing.T) { function TestTSDecl (line 1831) | func TestTSDecl(t *testing.T) { function TestTSDeclare (line 1851) | func TestTSDeclare(t *testing.T) { function TestTSExperimentalDecorator (line 1935) | func TestTSExperimentalDecorator(t *testing.T) { function TestTSDecorators (line 2118) | func TestTSDecorators(t *testing.T) { function TestTSTry (line 2280) | func TestTSTry(t *testing.T) { function TestTSArrow (line 2298) | func TestTSArrow(t *testing.T) { function TestTSSuperCall (line 2406) | func TestTSSuperCall(t *testing.T) { function TestTSCall (line 2626) | func TestTSCall(t *testing.T) { function TestTSNew (line 2632) | func TestTSNew(t *testing.T) { function TestTSInstantiationExpression (line 2651) | func TestTSInstantiationExpression(t *testing.T) { function TestTSExponentiation (line 2802) | func TestTSExponentiation(t *testing.T) { function TestTSImport (line 2808) | func TestTSImport(t *testing.T) { function TestTSExportEquals (line 2826) | func TestTSExportEquals(t *testing.T) { function TestTSImportEquals (line 2834) | func TestTSImportEquals(t *testing.T) { function TestTSImportEqualsInNamespace (line 2870) | func TestTSImportEqualsInNamespace(t *testing.T) { function TestTSTypeOnlyImport (line 2898) | func TestTSTypeOnlyImport(t *testing.T) { function TestTSTypeOnlyExport (line 2987) | func TestTSTypeOnlyExport(t *testing.T) { function TestTSOptionalChain (line 3052) | func TestTSOptionalChain(t *testing.T) { function TestTSJSX (line 3079) | func TestTSJSX(t *testing.T) { function TestTSNoAmbiguousLessThan (line 3176) | func TestTSNoAmbiguousLessThan(t *testing.T) { function TestTSClassSideEffectOrder (line 3197) | func TestTSClassSideEffectOrder(t *testing.T) { function TestTSMangleStringEnumLength (line 3262) | func TestTSMangleStringEnumLength(t *testing.T) { function TestTSES5 (line 3285) | func TestTSES5(t *testing.T) { function TestTSUsing (line 3300) | func TestTSUsing(t *testing.T) { FILE: internal/js_printer/js_printer.go constant hexChars (line 25) | hexChars = "0123456789ABCDEF" constant firstASCII (line 26) | firstASCII = 0x20 constant lastASCII (line 27) | lastASCII = 0x7E constant firstHighSurrogate (line 28) | firstHighSurrogate = 0xD800 constant lastHighSurrogate (line 29) | lastHighSurrogate = 0xDBFF constant firstLowSurrogate (line 30) | firstLowSurrogate = 0xDC00 constant lastLowSurrogate (line 31) | lastLowSurrogate = 0xDFFF function QuoteIdentifier (line 33) | func QuoteIdentifier(js []byte, name string, unsupportedFeatures compat.... type printer (line 276) | type printer struct method printUnquotedUTF16 (line 65) | func (p *printer) printUnquotedUTF16(text []uint16, quote rune, flags ... method printJSXTag (line 252) | func (p *printer) printJSXTag(tagOrNil js_ast.Expr) { method print (line 312) | func (p *printer) print(text string) { method printBytes (line 318) | func (p *printer) printBytes(bytes []byte) { method printQuotedUTF8 (line 329) | func (p *printer) printQuotedUTF8(text string, flags printQuotedFlags) { method addSourceMapping (line 333) | func (p *printer) addSourceMapping(loc logger.Loc) { method addSourceMappingForName (line 339) | func (p *printer) addSourceMappingForName(loc logger.Loc, name string,... method printIndent (line 349) | func (p *printer) printIndent() { method mangledPropName (line 369) | func (p *printer) mangledPropName(ref ast.Ref) string { method tryToGetImportedEnumValue (line 377) | func (p *printer) tryToGetImportedEnumValue(target js_ast.Expr, name s... method tryToGetImportedEnumValueUTF16 (line 390) | func (p *printer) tryToGetImportedEnumValueUTF16(target js_ast.Expr, n... method printClauseAlias (line 404) | func (p *printer) printClauseAlias(loc logger.Loc, alias string) { method canPrintIdentifier (line 432) | func (p *printer) canPrintIdentifier(name string) bool { method canPrintIdentifierUTF16 (line 438) | func (p *printer) canPrintIdentifierUTF16(name []uint16) bool { method printIdentifier (line 444) | func (p *printer) printIdentifier(name string) { method printIdentifierUTF16 (line 454) | func (p *printer) printIdentifierUTF16(name []uint16) { method printNumber (line 484) | func (p *printer) printNumber(value float64, level js_ast.L) { method willPrintExprCommentsAtLoc (line 549) | func (p *printer) willPrintExprCommentsAtLoc(loc logger.Loc) bool { method willPrintExprCommentsForAnyOf (line 553) | func (p *printer) willPrintExprCommentsForAnyOf(exprs []js_ast.Expr) b... method printBinding (line 562) | func (p *printer) printBinding(binding js_ast.Binding) { method printSpace (line 779) | func (p *printer) printSpace() { method printNewline (line 785) | func (p *printer) printNewline() { method currentLineLength (line 791) | func (p *printer) currentLineLength() int { method printNewlinePastLineLimit (line 808) | func (p *printer) printNewlinePastLineLimit() bool { method printSpaceBeforeOperator (line 817) | func (p *printer) printSpaceBeforeOperator(next js_ast.OpCode) { method printSemicolonAfterStatement (line 837) | func (p *printer) printSemicolonAfterStatement() { method printSemicolonIfNeeded (line 845) | func (p *printer) printSemicolonIfNeeded() { method printSpaceBeforeIdentifier (line 852) | func (p *printer) printSpaceBeforeIdentifier() { method printFnArgs (line 865) | func (p *printer) printFnArgs(args []js_ast.Arg, opts fnArgsOpts) { method printFn (line 906) | func (p *printer) printFn(fn js_ast.Fn) { method printDecorators (line 919) | func (p *printer) printDecorators(decorators []js_ast.Decorator, defau... method printClass (line 1028) | func (p *printer) printClass(class js_ast.Class) { method printProperty (line 1077) | func (p *printer) printProperty(property js_ast.Property) { method printQuotedUTF16 (line 1353) | func (p *printer) printQuotedUTF16(data []uint16, flags printQuotedFla... method printRequireOrImportExpr (line 1399) | func (p *printer) printRequireOrImportExpr(importRecordIndex uint32, l... method printDotThenPrefix (line 1609) | func (p *printer) printDotThenPrefix() js_ast.L { method printDotThenSuffix (line 1629) | func (p *printer) printDotThenSuffix() { method printUndefined (line 1643) | func (p *printer) printUndefined(loc logger.Loc, level js_ast.L) { method simplifyUnusedExpr (line 1673) | func (p *printer) simplifyUnusedExpr(expr js_ast.Expr) js_ast.Expr { method guardAgainstBehaviorChangeDueToSubstitution (line 1725) | func (p *printer) guardAgainstBehaviorChangeDueToSubstitution(expr js_... method lateConstantFoldUnaryOrBinaryOrIfExpr (line 1765) | func (p *printer) lateConstantFoldUnaryOrBinaryOrIfExpr(expr js_ast.Ex... method isUnboundIdentifier (line 1857) | func (p *printer) isUnboundIdentifier(expr js_ast.Expr) bool { method isIdentifierOrNumericConstantOrPropertyAccess (line 1862) | func (p *printer) isIdentifierOrNumericConstantOrPropertyAccess(expr j... method saveExprStartFlags (line 1881) | func (p *printer) saveExprStartFlags() (flags exprStartFlags) { method restoreExprStartFlags (line 1898) | func (p *printer) restoreExprStartFlags(flags exprStartFlags) { method printExprCommentsAtLoc (line 1917) | func (p *printer) printExprCommentsAtLoc(loc logger.Loc) { method printExprCommentsAfterCloseTokenAtLoc (line 1955) | func (p *printer) printExprCommentsAfterCloseTokenAtLoc(loc logger.Loc) { method printExprWithoutLeadingNewline (line 1971) | func (p *printer) printExprWithoutLeadingNewline(expr js_ast.Expr, lev... method printExpr (line 2005) | func (p *printer) printExpr(expr js_ast.Expr, level js_ast.L, flags pr... method isUnboundEvalIdentifier (line 3504) | func (p *printer) isUnboundEvalIdentifier(value js_ast.Expr) bool { method smallIntToBytes (line 3514) | func (p *printer) smallIntToBytes(n int) []byte { method printNonNegativeFloat (line 3564) | func (p *printer) printNonNegativeFloat(absValue float64) { method printDeclStmt (line 3702) | func (p *printer) printDeclStmt(isExport bool, keyword string, decls [... method printForLoopInit (line 3712) | func (p *printer) printForLoopInit(init js_ast.Stmt, flags printExprFl... method printDecls (line 3734) | func (p *printer) printDecls(keyword string, decls []js_ast.Decl, flag... method printBody (line 3756) | func (p *printer) printBody(body js_ast.Stmt, isSingleLine bool) { method printBlock (line 3772) | func (p *printer) printBlock(loc logger.Loc, block js_ast.SBlock) { method printIf (line 3825) | func (p *printer) printIf(s *js_ast.SIf) { method printIndentedComment (line 3905) | func (p *printer) printIndentedComment(text string) { method printPath (line 3931) | func (p *printer) printPath(importRecordIndex uint32, importKind ast.I... method printImportCallAssertOrWith (line 3967) | func (p *printer) printImportCallAssertOrWith(assertOrWith *ast.Import... method printImportAssertOrWithClause (line 4028) | func (p *printer) printImportAssertOrWithClause(assertOrWith ast.Impor... method printStmt (line 4101) | func (p *printer) printStmt(stmt js_ast.Stmt, flags printStmtFlags) { type printQuotedFlags (line 322) | type printQuotedFlags constant printQuotedAllowBacktick (line 325) | printQuotedAllowBacktick printQuotedFlags = 1 << iota constant printQuotedNoWrap (line 326) | printQuotedNoWrap function CanEscapeIdentifier (line 426) | func CanEscapeIdentifier(name string, UnsupportedFeatures compat.JSFeatu... type fnArgsOpts (line 858) | type fnArgsOpts struct type printAfterDecorator (line 912) | type printAfterDecorator constant printNewlineAfterDecorator (line 915) | printNewlineAfterDecorator printAfterDecorator = iota constant printSpaceAfterDecorator (line 916) | printSpaceAfterDecorator function canUseShorthandProperty (line 1339) | func canUseShorthandProperty(key []uint16, name string, flags js_ast.Pro... type exprStartFlags (line 1872) | type exprStartFlags constant stmtStartFlag (line 1875) | stmtStartFlag exprStartFlags = 1 << iota constant exportDefaultStartFlag (line 1876) | exportDefaultStartFlag constant arrowExprStartFlag (line 1877) | arrowExprStartFlag constant forOfInitStartFlag (line 1878) | forOfInitStartFlag type printExprFlags (line 1989) | type printExprFlags constant forbidCall (line 1992) | forbidCall printExprFlags = 1 << iota constant forbidIn (line 1993) | forbidIn constant hasNonOptionalChainParent (line 1994) | hasNonOptionalChainParent constant exprResultIsUnused (line 1995) | exprResultIsUnused constant didAlreadySimplifyUnusedExprs (line 1996) | didAlreadySimplifyUnusedExprs constant isFollowedByOf (line 1997) | isFollowedByOf constant isInsideForAwait (line 1998) | isInsideForAwait constant isDeleteTarget (line 1999) | isDeleteTarget constant isCallTargetOrTemplateTag (line 2000) | isCallTargetOrTemplateTag constant isPropertyAccessTarget (line 2001) | isPropertyAccessTarget constant parentWasUnaryOrBinaryOrIfTest (line 2002) | parentWasUnaryOrBinaryOrIfTest type binaryExprVisitor (line 3358) | type binaryExprVisitor struct method checkAndPrepare (line 3374) | func (v *binaryExprVisitor) checkAndPrepare(p *printer) bool { method visitRightAndFinish (line 3471) | func (v *binaryExprVisitor) visitRightAndFinish(p *printer) { function parseSmallInt (line 3544) | func parseSmallInt(bytes []byte) int { function wrapToAvoidAmbiguousElse (line 3792) | func wrapToAvoidAmbiguousElse(s js_ast.S) bool { type printStmtFlags (line 4095) | type printStmtFlags constant canOmitStatement (line 4098) | canOmitStatement printStmtFlags = 1 << iota type Options (line 4911) | type Options struct type RequireOrImportMeta (line 4949) | type RequireOrImportMeta struct type PrintResult (line 4958) | type PrintResult struct function Print (line 4969) | func Print(tree js_ast.AST, symbols ast.SymbolMap, r renamer.Renamer, op... FILE: internal/js_printer/js_printer_test.go function expectPrintedCommon (line 16) | func expectPrintedCommon(t *testing.T, name string, contents string, exp... function expectPrinted (line 47) | func expectPrinted(t *testing.T, contents string, expected string) { function expectPrintedMinify (line 52) | func expectPrintedMinify(t *testing.T, contents string, expected string) { function expectPrintedMangle (line 59) | func expectPrintedMangle(t *testing.T, contents string, expected string) { function expectPrintedMangleMinify (line 66) | func expectPrintedMangleMinify(t *testing.T, contents string, expected s... function expectPrintedASCII (line 74) | func expectPrintedASCII(t *testing.T, contents string, expected string) { function expectPrintedMinifyASCII (line 81) | func expectPrintedMinifyASCII(t *testing.T, contents string, expected st... function expectPrintedTarget (line 89) | func expectPrintedTarget(t *testing.T, esVersion int, contents string, e... function expectPrintedTargetMinify (line 98) | func expectPrintedTargetMinify(t *testing.T, esVersion int, contents str... function expectPrintedTargetMangle (line 108) | func expectPrintedTargetMangle(t *testing.T, esVersion int, contents str... function expectPrintedTargetASCII (line 118) | func expectPrintedTargetASCII(t *testing.T, esVersion int, contents stri... function expectPrintedJSX (line 128) | func expectPrintedJSX(t *testing.T, contents string, expected string) { function expectPrintedJSXASCII (line 138) | func expectPrintedJSXASCII(t *testing.T, contents string, expected strin... function expectPrintedJSXMinify (line 149) | func expectPrintedJSXMinify(t *testing.T, contents string, expected stri... function TestNumber (line 160) | func TestNumber(t *testing.T) { function TestArray (line 292) | func TestArray(t *testing.T) { function TestSplat (line 298) | func TestSplat(t *testing.T) { function TestNew (line 304) | func TestNew(t *testing.T) { function TestCall (line 343) | func TestCall(t *testing.T) { function TestMember (line 370) | func TestMember(t *testing.T) { function TestComma (line 375) | func TestComma(t *testing.T) { function TestUnary (line 386) | func TestUnary(t *testing.T) { function TestNullish (line 391) | func TestNullish(t *testing.T) { function TestString (line 405) | func TestString(t *testing.T) { function TestTemplate (line 447) | func TestTemplate(t *testing.T) { function TestObject (line 500) | func TestObject(t *testing.T) { function TestSwitch (line 523) | func TestSwitch(t *testing.T) { function TestFor (line 529) | func TestFor(t *testing.T) { function TestFunction (line 551) | func TestFunction(t *testing.T) { function TestCommentsAndParentheses (line 572) | func TestCommentsAndParentheses(t *testing.T) { function TestPureComment (line 585) | func TestPureComment(t *testing.T) { function TestGenerator (line 617) | func TestGenerator(t *testing.T) { function TestArrow (line 655) | func TestArrow(t *testing.T) { function TestClass (line 702) | func TestClass(t *testing.T) { function TestAutoAccessors (line 711) | func TestAutoAccessors(t *testing.T) { function TestPrivateIdentifiers (line 718) | func TestPrivateIdentifiers(t *testing.T) { function TestDecorators (line 723) | func TestDecorators(t *testing.T) { function TestImport (line 730) | func TestImport(t *testing.T) { function TestExportDefault (line 753) | func TestExportDefault(t *testing.T) { function TestWhitespace (line 783) | func TestWhitespace(t *testing.T) { function TestMangle (line 842) | func TestMangle(t *testing.T) { function TestMinify (line 850) | func TestMinify(t *testing.T) { function TestES5 (line 896) | func TestES5(t *testing.T) { function TestASCIIOnly (line 916) | func TestASCIIOnly(t *testing.T) { function TestJSX (line 957) | func TestJSX(t *testing.T) { function TestJSXSingleLine (line 1032) | func TestJSXSingleLine(t *testing.T) { function TestAvoidSlashScript (line 1048) | func TestAvoidSlashScript(t *testing.T) { function TestInfinity (line 1087) | func TestInfinity(t *testing.T) { function TestBinaryOperatorVisitor (line 1141) | func TestBinaryOperatorVisitor(t *testing.T) { function TestUsing (line 1151) | func TestUsing(t *testing.T) { function TestMinifyBigInt (line 1163) | func TestMinifyBigInt(t *testing.T) { FILE: internal/linker/debug.go constant debugVerboseMetafile (line 19) | debugVerboseMetafile = false method generateExtraDataForFileJS (line 21) | func (c *linkerContext) generateExtraDataForFileJS(sourceIndex uint32) s... function moveBeforeExport (line 142) | func moveBeforeExport(contents string, i int) int { FILE: internal/linker/linker.go type linkerContext (line 45) | type linkerContext struct method mangleProps (line 352) | func (c *linkerContext) mangleProps(mangleCache map[string]interface{}) { method mangleLocalCSS (line 450) | func (c *linkerContext) mangleLocalCSS(usedLocalNames map[string]bool) { method enforceNoCyclicChunkImports (line 560) | func (c *linkerContext) enforceNoCyclicChunkImports() { method generateChunksInParallel (line 603) | func (c *linkerContext) generateChunksInParallel(additionalFiles []gra... method substituteFinalPaths (line 799) | func (c *linkerContext) substituteFinalPaths( method accurateFinalByteCount (line 851) | func (c *linkerContext) accurateFinalByteCount(output intermediateOutp... method pathBetweenChunks (line 882) | func (c *linkerContext) pathBetweenChunks(fromRelDir string, toRelPath... method computeCrossChunkDependencies (line 908) | func (c *linkerContext) computeCrossChunkDependencies() { method sortedCrossChunkImports (line 1217) | func (c *linkerContext) sortedCrossChunkImports(importsFromOtherChunks... method sortedCrossChunkExportItems (line 1277) | func (c *linkerContext) sortedCrossChunkExportItems(exportRefs map[ast... method scanImportsAndExports (line 1289) | func (c *linkerContext) scanImportsAndExports() { method validateComposesFromProperties (line 2025) | func (c *linkerContext) validateComposesFromProperties(rootFile *graph... method generateCodeForLazyExport (line 2105) | func (c *linkerContext) generateCodeForLazyExport(sourceIndex uint32) { method createExportsForFile (line 2260) | func (c *linkerContext) createExportsForFile(sourceIndex uint32) { method createWrapperForFile (line 2420) | func (c *linkerContext) createWrapperForFile(sourceIndex uint32) { method matchImportsWithExportsForFile (line 2500) | func (c *linkerContext) matchImportsWithExportsForFile(sourceIndex uin... method matchImportWithExport (line 2628) | func (c *linkerContext) matchImportWithExport( method maybeForbidArbitraryModuleNamespaceIdentifier (line 2862) | func (c *linkerContext) maybeForbidArbitraryModuleNamespaceIdentifier(... method maybeCorrectObviousTypo (line 2872) | func (c *linkerContext) maybeCorrectObviousTypo(repr *graph.JSRepr, na... method recursivelyWrapDependencies (line 2906) | func (c *linkerContext) recursivelyWrapDependencies(sourceIndex uint32) { method hasDynamicExportsDueToExportStar (line 2935) | func (c *linkerContext) hasDynamicExportsDueToExportStar(sourceIndex u... method addExportsForExportStar (line 2965) | func (c *linkerContext) addExportsForExportStar( method advanceImportTracker (line 3082) | func (c *linkerContext) advanceImportTracker(tracker importTracker) (i... method treeShakingAndCodeSplitting (line 3143) | func (c *linkerContext) treeShakingAndCodeSplitting() { method markFileReachableForCodeSplitting (line 3162) | func (c *linkerContext) markFileReachableForCodeSplitting(sourceIndex ... method markFileLiveForTreeShaking (line 3215) | func (c *linkerContext) markFileLiveForTreeShaking(sourceIndex uint32) { method isExternalDynamicImport (line 3280) | func (c *linkerContext) isExternalDynamicImport(record *ast.ImportReco... method markPartLiveForTreeShaking (line 3287) | func (c *linkerContext) markPartLiveForTreeShaking(sourceIndex uint32,... method findImportedCSSFilesInJSOrder (line 3324) | func (c *linkerContext) findImportedCSSFilesInJSOrder(entryPoint uint3... method findImportedFilesInCSSOrder (line 3406) | func (c *linkerContext) findImportedFilesInCSSOrder(entryPoints []uint... method computeChunks (line 3870) | func (c *linkerContext) computeChunks() { method shouldIncludePart (line 4124) | func (c *linkerContext) shouldIncludePart(repr *graph.JSRepr, part js_... method findImportedPartsInJSOrder (line 4139) | func (c *linkerContext) findImportedPartsInJSOrder(chunk *chunkInfo) (... method shouldRemoveImportExportStmt (line 4235) | func (c *linkerContext) shouldRemoveImportExportStmt( method convertStmtsForChunk (line 4311) | func (c *linkerContext) convertStmtsForChunk(sourceIndex uint32, stmtL... method requireOrImportMetaForSource (line 4645) | func (c *linkerContext) requireOrImportMetaForSource(sourceIndex uint3... method generateCodeForFileInChunkJS (line 4657) | func (c *linkerContext) generateCodeForFileInChunkJS( method generateEntryPointTailJS (line 4992) | func (c *linkerContext) generateEntryPointTailJS( method renameSymbolsInChunk (line 5315) | func (c *linkerContext) renameSymbolsInChunk(chunk *chunkInfo, filesIn... method generateChunkJS (line 5563) | func (c *linkerContext) generateChunkJS(chunkIndex int, chunkWaitGroup... method generateGlobalNamePrefix (line 5999) | func (c *linkerContext) generateGlobalNamePrefix() string { method generateChunkCSS (line 6093) | func (c *linkerContext) generateChunkCSS(chunkIndex int, chunkWaitGrou... method maybeAppendLegalComments (line 6544) | func (c *linkerContext) maybeAppendLegalComments( method appendIsolatedHashesForImportedChunks (line 6687) | func (c *linkerContext) appendIsolatedHashesForImportedChunks( method breakJoinerIntoPieces (line 6729) | func (c *linkerContext) breakJoinerIntoPieces(j helpers.Joiner) interm... method breakOutputIntoPieces (line 6739) | func (c *linkerContext) breakOutputIntoPieces(output []byte) intermedi... method generateIsolatedHashInParallel (line 6805) | func (c *linkerContext) generateIsolatedHashInParallel(chunk *chunkInf... method generateIsolatedHash (line 6817) | func (c *linkerContext) generateIsolatedHash(chunk *chunkInfo, channel... method preventExportsFromBeingRenamed (line 6922) | func (c *linkerContext) preventExportsFromBeingRenamed(sourceIndex uin... method generateSourceMapForChunk (line 6996) | func (c *linkerContext) generateSourceMapForChunk( method recoverInternalError (line 7253) | func (c *linkerContext) recoverInternalError(waitGroup *sync.WaitGroup... type partRange (line 77) | type partRange struct type chunkInfo (line 83) | type chunkInfo struct type chunkImport (line 132) | type chunkImport struct type outputPieceIndexKind (line 137) | type outputPieceIndexKind constant outputPieceNone (line 140) | outputPieceNone outputPieceIndexKind = iota constant outputPieceAssetIndex (line 141) | outputPieceAssetIndex constant outputPieceChunkIndex (line 142) | outputPieceChunkIndex type outputPiece (line 150) | type outputPiece struct type intermediateOutput (line 160) | type intermediateOutput struct type chunkRepr (line 172) | type chunkRepr interface type chunkReprJS (line 177) | type chunkReprJS struct method isChunk (line 174) | func (*chunkReprJS) isChunk() {} type chunkReprCSS (line 191) | type chunkReprCSS struct method isChunk (line 175) | func (*chunkReprCSS) isChunk() {} type externalImportCSS (line 195) | type externalImportCSS struct function wrappedLog (line 204) | func wrappedLog(log logger.Log) logger.Log { function Link (line 227) | func Link( type crossChunkImport (line 1201) | type crossChunkImport struct type crossChunkImportArray (line 1207) | type crossChunkImportArray method Len (line 1209) | func (a crossChunkImportArray) Len() int { return len(a) } method Swap (line 1210) | func (a crossChunkImportArray) Swap(i int, j int) { a[i], a[j] = a[j],... method Less (line 1212) | func (a crossChunkImportArray) Less(i int, j int) bool { type crossChunkImportItem (line 1238) | type crossChunkImportItem struct type crossChunkImportItemArray (line 1244) | type crossChunkImportItemArray method Len (line 1246) | func (a crossChunkImportItemArray) Len() int { return len(a) } method Swap (line 1247) | func (a crossChunkImportItemArray) Swap(i int, j int) { a[i], a[j] = a... method Less (line 1249) | func (a crossChunkImportItemArray) Less(i int, j int) bool { type stableRef (line 1260) | type stableRef struct type stableRefArray (line 1266) | type stableRefArray method Len (line 1268) | func (a stableRefArray) Len() int { return len(a) } method Swap (line 1269) | func (a stableRefArray) Swap(i int, j int) { a[i], a[j] = a[j], a[i] } method Less (line 1270) | func (a stableRefArray) Less(i int, j int) bool { type matchImportKind (line 2592) | type matchImportKind constant matchImportIgnore (line 2596) | matchImportIgnore matchImportKind = iota constant matchImportNormal (line 2599) | matchImportNormal constant matchImportNamespace (line 2602) | matchImportNamespace constant matchImportNormalAndNamespace (line 2605) | matchImportNormalAndNamespace constant matchImportCycle (line 2608) | matchImportCycle constant matchImportProbablyTypeScriptType (line 2611) | matchImportProbablyTypeScriptType constant matchImportAmbiguous (line 2614) | matchImportAmbiguous type matchImportResult (line 2617) | type matchImportResult struct type importTracker (line 3047) | type importTracker struct type importStatus (line 3053) | type importStatus constant importNoMatch (line 3057) | importNoMatch importStatus = iota constant importFound (line 3060) | importFound constant importCommonJS (line 3063) | importCommonJS constant importDynamicFallback (line 3066) | importDynamicFallback constant importCommonJSWithoutExports (line 3069) | importCommonJSWithoutExports constant importDisabled (line 3073) | importDisabled constant importExternal (line 3076) | importExternal constant importProbablyTypeScriptType (line 3079) | importProbablyTypeScriptType type cssImportKind (line 3364) | type cssImportKind constant cssImportNone (line 3367) | cssImportNone cssImportKind = iota constant cssImportSourceIndex (line 3368) | cssImportSourceIndex constant cssImportExternalPath (line 3369) | cssImportExternalPath constant cssImportLayers (line 3370) | cssImportLayers type cssImportOrder (line 3373) | type cssImportOrder struct function importConditionsAreEqual (line 3769) | func importConditionsAreEqual(a []css_ast.ImportConditions, b []css_ast.... function isConditionalImportRedundant (line 3814) | func isConditionalImportRedundant(earlier []css_ast.ImportConditions, la... type chunkOrder (line 4091) | type chunkOrder struct type chunkOrderArray (line 4098) | type chunkOrderArray method Len (line 4100) | func (a chunkOrderArray) Len() int { return len(a) } method Swap (line 4101) | func (a chunkOrderArray) Swap(i int, j int) { a[i], a[j] = a[j], a[i] } method Less (line 4103) | func (a chunkOrderArray) Less(i int, j int) bool { function appendOrExtendPartRange (line 4109) | func appendOrExtendPartRange(ranges []partRange, sourceIndex uint32, par... function mergeAdjacentLocalStmts (line 4585) | func mergeAdjacentLocalStmts(stmts []js_ast.Stmt) []js_ast.Stmt { type stmtList (line 4625) | type stmtList struct type compileResultJS (line 4635) | type compileResultJS struct type compileResultCSS (line 6078) | type compileResultCSS struct function wrapRulesWithConditions (line 6473) | func wrapRulesWithConditions( type legalCommentEntry (line 6535) | type legalCommentEntry struct function hashWriteUint32 (line 6906) | func hashWriteUint32(hash hash.Hash, value uint32) { function hashWriteLengthPrefixed (line 6914) | func hashWriteLengthPrefixed(hash hash.Hash, bytes []byte) { type compileResultForSourceMap (line 6989) | type compileResultForSourceMap struct function joinWithPublicPath (line 7266) | func joinWithPublicPath(publicPath string, relPath string) string { FILE: internal/logger/logger.go constant defaultTerminalWidth (line 25) | defaultTerminalWidth = 80 type Log (line 27) | type Log struct method AddError (line 1829) | func (log Log) AddError(tracker *LineColumnTracker, r Range, text stri... method AddID (line 1836) | func (log Log) AddID(id MsgID, kind MsgKind, tracker *LineColumnTracke... method AddErrorWithNotes (line 1846) | func (log Log) AddErrorWithNotes(tracker *LineColumnTracker, r Range, ... method AddIDWithNotes (line 1854) | func (log Log) AddIDWithNotes(id MsgID, kind MsgKind, tracker *LineCol... method AddMsgID (line 1865) | func (log Log) AddMsgID(id MsgID, msg Msg) { type LogLevel (line 38) | type LogLevel constant LevelNone (line 41) | LevelNone LogLevel = iota constant LevelVerbose (line 42) | LevelVerbose constant LevelDebug (line 43) | LevelDebug constant LevelInfo (line 44) | LevelInfo constant LevelWarning (line 45) | LevelWarning constant LevelError (line 46) | LevelError constant LevelSilent (line 47) | LevelSilent type MsgKind (line 50) | type MsgKind method String (line 61) | func (kind MsgKind) String() string { method Icon (line 80) | func (kind MsgKind) Icon() string { constant Error (line 53) | Error MsgKind = iota constant Warning (line 54) | Warning constant Info (line 55) | Info constant Note (line 56) | Note constant Debug (line 57) | Debug constant Verbose (line 58) | Verbose function isProbablyWindowsCommandPrompt (line 125) | func isProbablyWindowsCommandPrompt() bool { type Msg (line 147) | type Msg struct method String (line 1209) | func (msg Msg) String(options OutputOptions, terminalInfo TerminalInfo... type MsgData (line 155) | type MsgData struct type MsgLocation (line 165) | type MsgLocation struct type Loc (line 175) | type Loc struct type Range (line 180) | type Range struct method End (line 185) | func (r Range) End() int32 { method ExpandBy (line 189) | func (a *Range) ExpandBy(b Range) { type Span (line 204) | type Span struct type SortableMsgs (line 210) | type SortableMsgs method Len (line 212) | func (a SortableMsgs) Len() int { return len(a) } method Swap (line 213) | func (a SortableMsgs) Swap(i int, j int) { a[i], a[j] = a[j], a[i] } method Less (line 215) | func (a SortableMsgs) Less(i int, j int) bool { type Path (line 242) | type Path struct method IsDisabled (line 332) | func (p Path) IsDisabled() bool { type ImportAttributes (line 265) | type ImportAttributes struct method DecodeIntoArray (line 275) | func (attrs ImportAttributes) DecodeIntoArray() (result []ImportAttrib... method DecodeIntoMap (line 292) | func (attrs ImportAttributes) DecodeIntoMap() (result map[string]strin... type ImportAttribute (line 269) | type ImportAttribute struct function EncodeImportAttributes (line 302) | func EncodeImportAttributes(value map[string]string) ImportAttributes { type PathFlags (line 325) | type PathFlags constant PathDisabled (line 329) | PathDisabled PathFlags = 1 << iota function hasNoColorEnvironmentVariable (line 339) | func hasNoColorEnvironmentVariable() bool { function PlatformIndependentPathDirBaseExt (line 353) | func PlatformIndependentPathDirBaseExt(path string) (dir string, base st... type PrettyPaths (line 406) | type PrettyPaths struct method Select (line 431) | func (paths *PrettyPaths) Select(style PathStyle) string { type PathStyle (line 424) | type PathStyle constant RelPath (line 427) | RelPath PathStyle = iota constant AbsPath (line 428) | AbsPath type Source (line 438) | type Source struct method TextForRange (line 465) | func (s *Source) TextForRange(r Range) string { method LocBeforeWhitespace (line 469) | func (s *Source) LocBeforeWhitespace(loc Loc) Loc { method RangeOfOperatorBefore (line 480) | func (s *Source) RangeOfOperatorBefore(loc Loc, op string) Range { method RangeOfOperatorAfter (line 489) | func (s *Source) RangeOfOperatorAfter(loc Loc, op string) Range { method RangeOfString (line 498) | func (s *Source) RangeOfString(loc Loc) Range { method RangeOfNumber (line 534) | func (s *Source) RangeOfNumber(loc Loc) (r Range) { method RangeOfLegacyOctalEscape (line 553) | func (s *Source) RangeOfLegacyOctalEscape(loc Loc) (r Range) { method CommentTextWithoutIndent (line 570) | func (s *Source) CommentTextWithoutIndent(r Range) string { function plural (line 638) | func plural(prefix string, count int, shown int, someAreMissing bool) st... function errorAndWarningSummary (line 653) | func errorAndWarningSummary(errors int, warnings int, shownErrors int, s... type APIKind (line 667) | type APIKind constant GoAPI (line 670) | GoAPI APIKind = iota constant CLIAPI (line 671) | CLIAPI constant JSAPI (line 672) | JSAPI type TerminalInfo (line 678) | type TerminalInfo struct function NewStderrLog (line 685) | func NewStderrLog(options OutputOptions) Log { function PrintErrorToStderr (line 816) | func PrintErrorToStderr(osArgs []string, text string) { function PrintErrorWithNoteToStderr (line 820) | func PrintErrorWithNoteToStderr(osArgs []string, text string, note strin... function OutputOptionsForArgs (line 831) | func OutputOptionsForArgs(osArgs []string) OutputOptions { function PrintMessageToStderr (line 856) | func PrintMessageToStderr(osArgs []string, msg Msg) { type Colors (line 862) | type Colors struct function PrintText (line 920) | func PrintText(file *os.File, level LogLevel, osArgs []string, callback ... function PrintTextWithColor (line 931) | func PrintTextWithColor(file *os.File, useColor UseColor, callback func(... type SummaryTableEntry (line 949) | type SummaryTableEntry struct type SummaryTable (line 958) | type SummaryTable method Len (line 960) | func (t SummaryTable) Len() int { return len(t) } method Swap (line 961) | func (t SummaryTable) Swap(i int, j int) { t[i], t[j] = t[j], t[i] } method Less (line 963) | func (t SummaryTable) Less(i int, j int) bool { constant sizeWarningThreshold (line 996) | sizeWarningThreshold = 1024 * 1024 function PrintSummary (line 998) | func PrintSummary(useColor UseColor, table SummaryTable, start *time.Tim... type DeferLogKind (line 1143) | type DeferLogKind constant DeferLogAll (line 1146) | DeferLogAll DeferLogKind = iota constant DeferLogNoVerboseOrDebug (line 1147) | DeferLogNoVerboseOrDebug function NewDeferLog (line 1150) | func NewDeferLog(kind DeferLogKind, overrides map[MsgID]LogLevel) Log { type UseColor (line 1192) | type UseColor constant ColorIfTerminal (line 1195) | ColorIfTerminal UseColor = iota constant ColorNever (line 1196) | ColorNever constant ColorAlways (line 1197) | ColorAlways type OutputOptions (line 1200) | type OutputOptions struct constant extraMarginChars (line 1232) | extraMarginChars = 9 function marginWithLineText (line 1234) | func marginWithLineText(maxMargin int, line int) string { function emptyMarginText (line 1239) | func emptyMarginText(maxMargin int, isLast bool) string { function msgString (line 1247) | func msgString(includeSource bool, pathStyle PathStyle, terminalInfo Ter... function linkifyText (line 1358) | func linkifyText(text string, underline string, reset string) string { function wrapWordsInString (line 1401) | func wrapWordsInString(text string, width int) []string { type MsgDetail (line 1458) | type MsgDetail struct type LineColumnTracker (line 1491) | type LineColumnTracker struct method MsgData (line 1518) | func (tracker *LineColumnTracker) MsgData(r Range, text string) MsgData { method scanTo (line 1525) | func (t *LineColumnTracker) scanTo(offset int32) { method computeLineAndColumn (line 1588) | func (t *LineColumnTracker) computeLineAndColumn(offset int) (lineCoun... method MsgLocationOrNil (line 1625) | func (tracker *LineColumnTracker) MsgLocationOrNil(r Range) *MsgLocati... function MakeLineColumnTracker (line 1503) | func MakeLineColumnTracker(source *Source) LineColumnTracker { function detailStruct (line 1642) | func detailStruct(data MsgData, pathStyle PathStyle, terminalInfo Termin... function estimateWidthInTerminal (line 1789) | func estimateWidthInTerminal(text string) int { function renderTabStops (line 1805) | func renderTabStops(withTabs string, spacesPerTab int) string { function allowOverride (line 1873) | func allowOverride(overrides map[MsgID]LogLevel, id MsgID, kind MsgKind)... type StringInJSTableEntry (line 1894) | type StringInJSTableEntry struct function GenerateStringInJSTable (line 1904) | func GenerateStringInJSTable(outerContents string, outerStringLiteralLoc... function RemapStringInJSLoc (line 1997) | func RemapStringInJSLoc(table []StringInJSTableEntry, innerLoc Loc) Loc { function NewStringInJSLog (line 2020) | func NewStringInJSLog(log Log, outerTracker *LineColumnTracker, table []... FILE: internal/logger/logger_darwin.go constant SupportsColorEscapes (line 12) | SupportsColorEscapes = true function GetTerminalInfo (line 14) | func GetTerminalInfo(file *os.File) (info TerminalInfo) { function writeStringWithColor (line 32) | func writeStringWithColor(file *os.File, text string) { FILE: internal/logger/logger_linux.go constant SupportsColorEscapes (line 12) | SupportsColorEscapes = true function GetTerminalInfo (line 14) | func GetTerminalInfo(file *os.File) (info TerminalInfo) { function writeStringWithColor (line 32) | func writeStringWithColor(file *os.File, text string) { FILE: internal/logger/logger_other.go constant SupportsColorEscapes (line 8) | SupportsColorEscapes = false function GetTerminalInfo (line 10) | func GetTerminalInfo(*os.File) TerminalInfo { function writeStringWithColor (line 14) | func writeStringWithColor(file *os.File, text string) { FILE: internal/logger/logger_test.go function TestMsgIDs (line 10) | func TestMsgIDs(t *testing.T) { FILE: internal/logger/logger_windows.go constant SupportsColorEscapes (line 13) | SupportsColorEscapes = true type consoleScreenBufferInfo (line 20) | type consoleScreenBufferInfo struct function GetTerminalInfo (line 34) | func GetTerminalInfo(file *os.File) TerminalInfo { constant FOREGROUND_BLUE (line 54) | FOREGROUND_BLUE uint8 = 1 << iota constant FOREGROUND_GREEN (line 55) | FOREGROUND_GREEN constant FOREGROUND_RED (line 56) | FOREGROUND_RED constant FOREGROUND_INTENSITY (line 57) | FOREGROUND_INTENSITY constant BACKGROUND_BLUE (line 58) | BACKGROUND_BLUE constant BACKGROUND_GREEN (line 59) | BACKGROUND_GREEN constant BACKGROUND_RED (line 60) | BACKGROUND_RED constant BACKGROUND_INTENSITY (line 61) | BACKGROUND_INTENSITY function writeStringWithColor (line 95) | func writeStringWithColor(file *os.File, text string) { FILE: internal/logger/msg_ids.go constant MsgID_None (line 12) | MsgID_None MsgID = iota constant MsgID_JS_AssertToWith (line 15) | MsgID_JS_AssertToWith constant MsgID_JS_AssertTypeJSON (line 16) | MsgID_JS_AssertTypeJSON constant MsgID_JS_AssignToConstant (line 17) | MsgID_JS_AssignToConstant constant MsgID_JS_AssignToDefine (line 18) | MsgID_JS_AssignToDefine constant MsgID_JS_AssignToImport (line 19) | MsgID_JS_AssignToImport constant MsgID_JS_BigInt (line 20) | MsgID_JS_BigInt constant MsgID_JS_CallImportNamespace (line 21) | MsgID_JS_CallImportNamespace constant MsgID_JS_ClassNameWillThrow (line 22) | MsgID_JS_ClassNameWillThrow constant MsgID_JS_CommonJSVariableInESM (line 23) | MsgID_JS_CommonJSVariableInESM constant MsgID_JS_DeleteSuperProperty (line 24) | MsgID_JS_DeleteSuperProperty constant MsgID_JS_DirectEval (line 25) | MsgID_JS_DirectEval constant MsgID_JS_DuplicateCase (line 26) | MsgID_JS_DuplicateCase constant MsgID_JS_DuplicateClassMember (line 27) | MsgID_JS_DuplicateClassMember constant MsgID_JS_DuplicateObjectKey (line 28) | MsgID_JS_DuplicateObjectKey constant MsgID_JS_EmptyImportMeta (line 29) | MsgID_JS_EmptyImportMeta constant MsgID_JS_EqualsNaN (line 30) | MsgID_JS_EqualsNaN constant MsgID_JS_EqualsNegativeZero (line 31) | MsgID_JS_EqualsNegativeZero constant MsgID_JS_EqualsNewObject (line 32) | MsgID_JS_EqualsNewObject constant MsgID_JS_HTMLCommentInJS (line 33) | MsgID_JS_HTMLCommentInJS constant MsgID_JS_ImpossibleTypeof (line 34) | MsgID_JS_ImpossibleTypeof constant MsgID_JS_IndirectRequire (line 35) | MsgID_JS_IndirectRequire constant MsgID_JS_PrivateNameWillThrow (line 36) | MsgID_JS_PrivateNameWillThrow constant MsgID_JS_SemicolonAfterReturn (line 37) | MsgID_JS_SemicolonAfterReturn constant MsgID_JS_SuspiciousBooleanNot (line 38) | MsgID_JS_SuspiciousBooleanNot constant MsgID_JS_SuspiciousDefine (line 39) | MsgID_JS_SuspiciousDefine constant MsgID_JS_SuspiciousLogicalOperator (line 40) | MsgID_JS_SuspiciousLogicalOperator constant MsgID_JS_SuspiciousNullishCoalescing (line 41) | MsgID_JS_SuspiciousNullishCoalescing constant MsgID_JS_ThisIsUndefinedInESM (line 42) | MsgID_JS_ThisIsUndefinedInESM constant MsgID_JS_UnsupportedDynamicImport (line 43) | MsgID_JS_UnsupportedDynamicImport constant MsgID_JS_UnsupportedJSXComment (line 44) | MsgID_JS_UnsupportedJSXComment constant MsgID_JS_UnsupportedRegExp (line 45) | MsgID_JS_UnsupportedRegExp constant MsgID_JS_UnsupportedRequireCall (line 46) | MsgID_JS_UnsupportedRequireCall constant MsgID_CSS_CSSSyntaxError (line 49) | MsgID_CSS_CSSSyntaxError constant MsgID_CSS_InvalidAtCharset (line 50) | MsgID_CSS_InvalidAtCharset constant MsgID_CSS_InvalidAtImport (line 51) | MsgID_CSS_InvalidAtImport constant MsgID_CSS_InvalidAtLayer (line 52) | MsgID_CSS_InvalidAtLayer constant MsgID_CSS_InvalidCalc (line 53) | MsgID_CSS_InvalidCalc constant MsgID_CSS_JSCommentInCSS (line 54) | MsgID_CSS_JSCommentInCSS constant MsgID_CSS_UndefinedComposesFrom (line 55) | MsgID_CSS_UndefinedComposesFrom constant MsgID_CSS_UnsupportedAtCharset (line 56) | MsgID_CSS_UnsupportedAtCharset constant MsgID_CSS_UnsupportedAtNamespace (line 57) | MsgID_CSS_UnsupportedAtNamespace constant MsgID_CSS_UnsupportedCSSProperty (line 58) | MsgID_CSS_UnsupportedCSSProperty constant MsgID_CSS_UnsupportedCSSNesting (line 59) | MsgID_CSS_UnsupportedCSSNesting constant MsgID_Bundler_AmbiguousReexport (line 62) | MsgID_Bundler_AmbiguousReexport constant MsgID_Bundler_DifferentPathCase (line 63) | MsgID_Bundler_DifferentPathCase constant MsgID_Bundler_EmptyGlob (line 64) | MsgID_Bundler_EmptyGlob constant MsgID_Bundler_IgnoredBareImport (line 65) | MsgID_Bundler_IgnoredBareImport constant MsgID_Bundler_IgnoredDynamicImport (line 66) | MsgID_Bundler_IgnoredDynamicImport constant MsgID_Bundler_ImportIsUndefined (line 67) | MsgID_Bundler_ImportIsUndefined constant MsgID_Bundler_RequireResolveNotExternal (line 68) | MsgID_Bundler_RequireResolveNotExternal constant MsgID_SourceMap_InvalidSourceMappings (line 71) | MsgID_SourceMap_InvalidSourceMappings constant MsgID_SourceMap_MissingSourceMap (line 72) | MsgID_SourceMap_MissingSourceMap constant MsgID_SourceMap_UnsupportedSourceMapComment (line 73) | MsgID_SourceMap_UnsupportedSourceMapComment constant MsgID_PackageJSON_FIRST (line 76) | MsgID_PackageJSON_FIRST constant MsgID_PackageJSON_DeadCondition (line 77) | MsgID_PackageJSON_DeadCondition constant MsgID_PackageJSON_InvalidBrowser (line 78) | MsgID_PackageJSON_InvalidBrowser constant MsgID_PackageJSON_InvalidImportsOrExports (line 79) | MsgID_PackageJSON_InvalidImportsOrExports constant MsgID_PackageJSON_InvalidSideEffects (line 80) | MsgID_PackageJSON_InvalidSideEffects constant MsgID_PackageJSON_InvalidType (line 81) | MsgID_PackageJSON_InvalidType constant MsgID_PackageJSON_LAST (line 82) | MsgID_PackageJSON_LAST constant MsgID_TSConfigJSON_FIRST (line 85) | MsgID_TSConfigJSON_FIRST constant MsgID_TSConfigJSON_Cycle (line 86) | MsgID_TSConfigJSON_Cycle constant MsgID_TSConfigJSON_InvalidImportsNotUsedAsValues (line 87) | MsgID_TSConfigJSON_InvalidImportsNotUsedAsValues constant MsgID_TSConfigJSON_InvalidJSX (line 88) | MsgID_TSConfigJSON_InvalidJSX constant MsgID_TSConfigJSON_InvalidPaths (line 89) | MsgID_TSConfigJSON_InvalidPaths constant MsgID_TSConfigJSON_InvalidTarget (line 90) | MsgID_TSConfigJSON_InvalidTarget constant MsgID_TSConfigJSON_InvalidTopLevelOption (line 91) | MsgID_TSConfigJSON_InvalidTopLevelOption constant MsgID_TSConfigJSON_Missing (line 92) | MsgID_TSConfigJSON_Missing constant MsgID_TSConfigJSON_LAST (line 93) | MsgID_TSConfigJSON_LAST constant MsgID_END (line 95) | MsgID_END function StringToMsgIDs (line 98) | func StringToMsgIDs(str string, logLevel LogLevel, overrides map[MsgID]L... function MsgIDToString (line 230) | func MsgIDToString(id MsgID) string { function StringToMaximumMsgID (line 361) | func StringToMaximumMsgID(id string) MsgID { FILE: internal/renamer/renamer.go function ComputeReservedNames (line 15) | func ComputeReservedNames(moduleScopes []*js_ast.Scope, symbols ast.Symb... function computeReservedNamesForScope (line 34) | func computeReservedNamesForScope(scope *js_ast.Scope, symbols ast.Symbo... type Renamer (line 59) | type Renamer interface type noOpRenamer (line 66) | type noOpRenamer struct method NameForSymbol (line 76) | func (r *noOpRenamer) NameForSymbol(ref ast.Ref) string { function NewNoOpRenamer (line 70) | func NewNoOpRenamer(symbols ast.SymbolMap) Renamer { type symbolSlot (line 84) | type symbolSlot struct type MinifyRenamer (line 90) | type MinifyRenamer struct method NameForSymbol (line 111) | func (r *MinifyRenamer) NameForSymbol(ref ast.Ref) string { method AccumulateSymbolUseCounts (line 177) | func (r *MinifyRenamer) AccumulateSymbolUseCounts( method AccumulateSymbolCount (line 189) | func (r *MinifyRenamer) AccumulateSymbolCount( method AllocateTopLevelSymbolSlots (line 235) | func (r *MinifyRenamer) AllocateTopLevelSymbolSlots(topLevelSymbols St... method AssignNamesByFrequency (line 260) | func (r *MinifyRenamer) AssignNamesByFrequency(minifier *ast.NameMinif... function NewMinifyRenamer (line 97) | func NewMinifyRenamer(symbols ast.SymbolMap, firstTopLevelSlots ast.Slot... type StableSymbolCount (line 148) | type StableSymbolCount struct type StableSymbolCountArray (line 155) | type StableSymbolCountArray method Len (line 157) | func (a StableSymbolCountArray) Len() int { return len(a) } method Swap (line 158) | func (a StableSymbolCountArray) Swap(i int, j int) { a[i], a[j] = a[j]... method Less (line 160) | func (a StableSymbolCountArray) Less(i int, j int) bool { function AssignNestedScopeSlots (line 314) | func AssignNestedScopeSlots(moduleScope *js_ast.Scope, symbols []ast.Sym... function assignNestedScopeSlotsHelper (line 344) | func assignNestedScopeSlotsHelper(scope *js_ast.Scope, symbols []ast.Sym... type slotAndCount (line 385) | type slotAndCount struct type slotAndCountArray (line 391) | type slotAndCountArray method Len (line 393) | func (a slotAndCountArray) Len() int { return len(a) } method Swap (line 394) | func (a slotAndCountArray) Swap(i int, j int) { a[i], a[j] = a[j], a[i] } method Less (line 395) | func (a slotAndCountArray) Less(i int, j int) bool { type NumberRenamer (line 403) | type NumberRenamer struct method NameForSymbol (line 417) | func (r *NumberRenamer) NameForSymbol(ref ast.Ref) string { method AddTopLevelSymbol (line 427) | func (r *NumberRenamer) AddTopLevelSymbol(ref ast.Ref) { method assignName (line 431) | func (r *NumberRenamer) assignName(scope *numberScope, ref ast.Ref) { method assignNamesInScope (line 475) | func (r *NumberRenamer) assignNamesInScope(scope *js_ast.Scope, source... method assignNamesRecursive (line 500) | func (r *NumberRenamer) assignNamesRecursive(scope *js_ast.Scope, sour... method AssignNamesByScope (line 526) | func (r *NumberRenamer) AssignNamesByScope(nestedScopes map[uint32][]*... function NewNumberRenamer (line 409) | func NewNumberRenamer(symbols ast.SymbolMap, reservedNames map[string]ui... type numberScope (line 544) | type numberScope struct method findNameUse (line 564) | func (s *numberScope) findNameUse(name string) nameUse { method findUnusedName (line 580) | func (s *numberScope) findUnusedName(name string, ns ast.SlotNamespace... type nameUse (line 556) | type nameUse constant nameUnused (line 559) | nameUnused nameUse = iota constant nameUsed (line 560) | nameUsed constant nameUsedInSameScope (line 561) | nameUsedInSameScope type ExportRenamer (line 633) | type ExportRenamer struct method NextRenamedName (line 638) | func (r *ExportRenamer) NextRenamedName(name string) string { method NextMinifiedName (line 658) | func (r *ExportRenamer) NextMinifiedName() string { FILE: internal/resolver/dataurl.go type DataURL (line 10) | type DataURL struct method DecodeMIMEType (line 40) | func (parsed DataURL) DecodeMIMEType() MIMEType { method DecodeData (line 60) | func (parsed DataURL) DecodeData() (string, error) { function ParseDataURL (line 16) | func ParseDataURL(url string) (parsed DataURL, ok bool) { type MIMEType (line 31) | type MIMEType constant MIMETypeUnsupported (line 34) | MIMETypeUnsupported MIMEType = iota constant MIMETypeTextCSS (line 35) | MIMETypeTextCSS constant MIMETypeTextJavaScript (line 36) | MIMETypeTextJavaScript constant MIMETypeApplicationJSON (line 37) | MIMETypeApplicationJSON FILE: internal/resolver/package_json.go type packageJSON (line 19) | type packageJSON struct type mainField (line 82) | type mainField struct type browserPathKind (line 87) | type browserPathKind constant absolutePathKind (line 90) | absolutePathKind browserPathKind = iota constant packagePathKind (line 91) | packagePathKind method checkBrowserMap (line 94) | func (r resolverQuery) checkBrowserMap(resolveDirInfo *dirInfo, inputPat... method parsePackageJSON (line 251) | func (r resolverQuery) parsePackageJSON(inputPath string) *packageJSON { function globstarToEscapedRegexp (line 481) | func globstarToEscapedRegexp(glob string) (string, bool) { type pjMap (line 541) | type pjMap struct type pjKind (line 547) | type pjKind constant pjNull (line 550) | pjNull pjKind = iota constant pjString (line 551) | pjString constant pjArray (line 552) | pjArray constant pjObject (line 553) | pjObject constant pjInvalid (line 554) | pjInvalid type pjEntry (line 557) | type pjEntry struct method valueForKey (line 631) | func (entry pjEntry) valueForKey(key string) (pjEntry, bool) { method keysStartWithDot (line 819) | func (entry pjEntry) keysStartWithDot() bool { type pjMapEntry (line 566) | type pjMapEntry struct type expansionKeysArray (line 573) | type expansionKeysArray method Len (line 575) | func (a expansionKeysArray) Len() int { return len(a) } method Swap (line 576) | func (a expansionKeysArray) Swap(i int, j int) { a[i], a[j] = a[j], a[... method Less (line 578) | func (a expansionKeysArray) Less(i int, j int) bool { function parseImportsExportsMap (line 640) | func parseImportsExportsMap(source logger.Source, log logger.Log, json j... type pjStatus (line 823) | type pjStatus method isUndefined (line 858) | func (status pjStatus) isUndefined() bool { constant pjStatusUndefined (line 826) | pjStatusUndefined pjStatus = iota constant pjStatusUndefinedNoConditionsMatch (line 827) | pjStatusUndefinedNoConditionsMatch constant pjStatusNull (line 828) | pjStatusNull constant pjStatusExact (line 829) | pjStatusExact constant pjStatusExactEndsWithStar (line 830) | pjStatusExactEndsWithStar constant pjStatusInexact (line 831) | pjStatusInexact constant pjStatusPackageResolve (line 832) | pjStatusPackageResolve constant pjStatusInvalidModuleSpecifier (line 835) | pjStatusInvalidModuleSpecifier constant pjStatusInvalidPackageConfiguration (line 838) | pjStatusInvalidPackageConfiguration constant pjStatusInvalidPackageTarget (line 841) | pjStatusInvalidPackageTarget constant pjStatusPackagePathNotExported (line 844) | pjStatusPackagePathNotExported constant pjStatusPackageImportNotDefined (line 847) | pjStatusPackageImportNotDefined constant pjStatusModuleNotFound (line 850) | pjStatusModuleNotFound constant pjStatusModuleNotFoundMissingExtension (line 851) | pjStatusModuleNotFoundMissingExtension constant pjStatusUnsupportedDirectoryImport (line 854) | pjStatusUnsupportedDirectoryImport constant pjStatusUnsupportedDirectoryImportMissingIndex (line 855) | pjStatusUnsupportedDirectoryImportMissingIndex type pjDebug (line 862) | type pjDebug struct method esmHandlePostConditions (line 879) | func (r resolverQuery) esmHandlePostConditions( method esmPackageImportsResolve (line 927) | func (r resolverQuery) esmPackageImportsResolve( method esmPackageExportsResolve (line 948) | func (r resolverQuery) esmPackageExportsResolve( method esmPackageImportsExportsResolve (line 997) | func (r resolverQuery) esmPackageImportsExportsResolve( function findInvalidSegment (line 1074) | func findInvalidSegment(path string) string { method esmPackageTargetResolve (line 1096) | func (r resolverQuery) esmPackageTargetResolve( function esmParsePackageName (line 1320) | func esmParsePackageName(packageSpecifier string) (packageName string, p... method esmPackageExportsReverseResolve (line 1351) | func (r resolverQuery) esmPackageExportsReverseResolve( method esmPackageImportsExportsReverseResolve (line 1365) | func (r resolverQuery) esmPackageImportsExportsReverseResolve( type esmReverseKind (line 1393) | type esmReverseKind constant esmReverseExact (line 1396) | esmReverseExact esmReverseKind = iota constant esmReversePattern (line 1397) | esmReversePattern constant esmReversePrefix (line 1398) | esmReversePrefix method esmPackageTargetReverseResolve (line 1401) | func (r resolverQuery) esmPackageTargetReverseResolve( FILE: internal/resolver/resolver.go type PathPair (line 67) | type PathPair struct method iter (line 76) | func (pp *PathPair) iter() []*logger.Path { method HasSecondary (line 84) | func (pp *PathPair) HasSecondary() bool { type SideEffectsData (line 88) | type SideEffectsData struct type ResolveResult (line 100) | type ResolveResult struct type suggestionRange (line 121) | type suggestionRange constant suggestionRangeFull (line 124) | suggestionRangeFull suggestionRange = iota constant suggestionRangeEnd (line 125) | suggestionRangeEnd type DebugMeta (line 128) | type DebugMeta struct method LogErrorMsg (line 136) | func (dm DebugMeta) LogErrorMsg(log logger.Log, source *logger.Source,... type Resolver (line 162) | type Resolver struct method Resolve (line 368) | func (res *Resolver) Resolve(sourceDir string, importPath string, kind... method ResolveGlob (line 580) | func (res *Resolver) ResolveGlob(sourceDir string, importPathPattern [... method ProbeResolvePackageAsRelative (line 771) | func (res *Resolver) ProbeResolvePackageAsRelative(sourceDir string, i... type resolverQuery (line 235) | type resolverQuery struct method isExternal (line 748) | func (r resolverQuery) isExternal(matchers config.ExternalMatchers, pa... method flushDebugLogs (line 821) | func (r resolverQuery) flushDebugLogs(mode flushMode) { method finalizeResolve (line 831) | func (r resolverQuery) finalizeResolve(result *ResolveResult) { method resolveWithoutSymlinks (line 954) | func (r resolverQuery) resolveWithoutSymlinks(sourceDir string, source... method resolveWithoutRemapping (line 1084) | func (r resolverQuery) resolveWithoutRemapping(sourceDirInfo *dirInfo,... method tsConfigForDir (line 1148) | func (r resolverQuery) tsConfigForDir(dirInfo *dirInfo) *TSConfigJSON { method dirInfoCached (line 1161) | func (r resolverQuery) dirInfoCached(path string) *dirInfo { method parseTSConfig (line 1206) | func (r resolverQuery) parseTSConfig(file string, visited map[string]b... method parseTSConfigFromSource (line 1252) | func (r resolverQuery) parseTSConfigFromSource(source logger.Source, v... method dirInfoUncached (line 1533) | func (r resolverQuery) dirInfoUncached(path string) *dirInfo { method loadAsFile (line 1732) | func (r resolverQuery) loadAsFile(path string, extensionOrder []string... method loadAsIndex (line 1848) | func (r resolverQuery) loadAsIndex(dirInfo *dirInfo, extensionOrder []... method loadAsIndexWithBrowserRemapping (line 1866) | func (r resolverQuery) loadAsIndexWithBrowserRemapping(dirInfo *dirInf... method loadAsFileOrDirectory (line 1919) | func (r resolverQuery) loadAsFileOrDirectory(path string) (PathPair, b... method loadAsDirectory (line 1938) | func (r resolverQuery) loadAsDirectory(path string) (PathPair, bool, *... method loadAsMainField (line 1972) | func (r resolverQuery) loadAsMainField(dirInfo *dirInfo, path string, ... method matchTSConfigPaths (line 2134) | func (r resolverQuery) matchTSConfigPaths(tsConfigJSON *TSConfigJSON, ... method loadPackageImports (line 2248) | func (r resolverQuery) loadPackageImports(importPath string, dirInfoPa... method esmResolveAlgorithm (line 2309) | func (r resolverQuery) esmResolveAlgorithm( method loadNodeModules (line 2358) | func (r resolverQuery) loadNodeModules(importPath string, dirInfo *dir... method checkForBuiltInNodeModules (line 2539) | func (r resolverQuery) checkForBuiltInNodeModules(importPath string) (... method finalizeImportsExportsResult (line 2605) | func (r resolverQuery) finalizeImportsExportsResult( function NewResolver (line 242) | func NewResolver(call config.APICall, fs fs.FS, log logger.Log, caches *... type debugLogs (line 793) | type debugLogs struct method addNote (line 799) | func (d *debugLogs) addNote(text string) { method increaseIndent (line 806) | func (d *debugLogs) increaseIndent() { method decreaseIndent (line 810) | func (d *debugLogs) decreaseIndent() { type flushMode (line 814) | type flushMode constant flushDueToFailure (line 817) | flushDueToFailure flushMode = iota constant flushDueToSuccess (line 818) | flushDueToSuccess function MakePrettyPaths (line 1093) | func MakePrettyPaths(fs fs.FS, path logger.Path) logger.PrettyPaths { type dirInfo (line 1126) | type dirInfo struct function getProperty (line 1894) | func getProperty(json js_ast.Expr, name string) (js_ast.Expr, logger.Loc... function getString (line 1905) | func getString(json js_ast.Expr) (string, bool) { function getBool (line 1912) | func getBool(json js_ast.Expr) (bool, bool) { function hasCaseInsensitiveSuffix (line 2128) | func hasCaseInsensitiveSuffix(s string, suffix string) bool { type finalizeImportsExportsKind (line 2598) | type finalizeImportsExportsKind constant finalizeImportsExportsNormal (line 2601) | finalizeImportsExportsNormal finalizeImportsExportsKind = iota constant finalizeImportsExportsYarnPnPTSConfigExtends (line 2602) | finalizeImportsExportsYarnPnPTSConfigExtends function IsPackagePath (line 2895) | func IsPackagePath(path string) bool { FILE: internal/resolver/tsconfig_json.go type TSConfigJSON (line 17) | type TSConfigJSON struct method applyExtendedConfig (line 45) | func (derived *TSConfigJSON) applyExtendedConfig(base TSConfigJSON) { method TSAlwaysStrictOrStrict (line 66) | func (config *TSConfigJSON) TSAlwaysStrictOrStrict() *config.TSAlwaysS... type tsTargetKey (line 76) | type tsTargetKey struct type TSConfigPath (line 82) | type TSConfigPath struct type TSConfigPaths (line 87) | type TSConfigPaths struct function ParseTSConfigJSON (line 95) | func ParseTSConfigJSON( function getSubstitutedPathWithConfigDirTemplate (line 395) | func getSubstitutedPathWithConfigDirTemplate(fs fs.FS, value string, bas... function parseMemberExpressionForJSX (line 402) | func parseMemberExpressionForJSX(log logger.Log, source *logger.Source, ... function isValidTSConfigPathPattern (line 417) | func isValidTSConfigPathPattern(text string, log logger.Log, source *log... function isSlash (line 433) | func isSlash(c byte) bool { function isValidTSConfigPathNoBaseURLPattern (line 437) | func isValidTSConfigPathNoBaseURLPattern(text string, log logger.Log, so... FILE: internal/resolver/yarnpnp.go type pnpData (line 18) | type pnpData struct type pnpIdentAndReference (line 67) | type pnpIdentAndReference struct type pnpPackage (line 73) | type pnpPackage struct type pnpPackageLocatorByLocation (line 80) | type pnpPackageLocatorByLocation struct function parseBareIdentifier (line 85) | func parseBareIdentifier(specifier string) (ident string, modulePath str... type pnpStatus (line 121) | type pnpStatus method isError (line 131) | func (status pnpStatus) isError() bool { constant pnpErrorGeneric (line 124) | pnpErrorGeneric pnpStatus = iota constant pnpErrorDependencyNotFound (line 125) | pnpErrorDependencyNotFound constant pnpErrorUnfulfilledPeerDependency (line 126) | pnpErrorUnfulfilledPeerDependency constant pnpSuccess (line 127) | pnpSuccess constant pnpSkipped (line 128) | pnpSkipped type pnpResult (line 135) | type pnpResult struct method resolveToUnqualified (line 148) | func (r resolverQuery) resolveToUnqualified(specifier string, parentURL ... method findLocator (line 312) | func (r resolverQuery) findLocator(manifest *pnpData, moduleUrl string) ... method resolveViaFallback (line 365) | func (r resolverQuery) resolveViaFallback(manifest *pnpData, ident strin... method getPackage (line 402) | func (r resolverQuery) getPackage(manifest *pnpData, ident string, refer... function quoteOrNullIfEmpty (line 419) | func quoteOrNullIfEmpty(str string) string { function compileYarnPnPData (line 426) | func compileYarnPnPData(absPath string, absDirPath string, json js_ast.E... function getStringOrNull (line 585) | func getStringOrNull(json js_ast.Expr) (string, bool) { function getDependencyTarget (line 597) | func getDependencyTarget(json js_ast.Expr) (pnpIdentAndReference, bool) { type pnpDataMode (line 622) | type pnpDataMode constant pnpIgnoreErrorsAboutMissingFiles (line 625) | pnpIgnoreErrorsAboutMissingFiles pnpDataMode = iota constant pnpReportErrorsAboutMissingFiles (line 626) | pnpReportErrorsAboutMissingFiles method extractYarnPnPDataFromJSON (line 629) | func (r resolverQuery) extractYarnPnPDataFromJSON(pnpDataPath string, mo... method tryToExtractYarnPnPDataFromJS (line 655) | func (r resolverQuery) tryToExtractYarnPnPDataFromJS(pnpDataPath string,... FILE: internal/resolver/yarnpnp_test.go type pnpTestExpectation (line 17) | type pnpTestExpectation struct type pnpTest (line 22) | type pnpTest struct function TestYarnPnP (line 29) | func TestYarnPnP(t *testing.T) { FILE: internal/runtime/runtime.go constant SourceIndex (line 16) | SourceIndex = uint32(0) function Source (line 18) | func Source(unsupportedJSFeatures compat.JSFeature) logger.Source { FILE: internal/runtime/runtime_test.go function TestUnsupportedFeatures (line 13) | func TestUnsupportedFeatures(t *testing.T) { FILE: internal/sourcemap/sourcemap.go type Mapping (line 13) | type Mapping struct type SourceMap (line 23) | type SourceMap struct method Find (line 42) | func (sm *SourceMap) Find(line int32, column int32) *Mapping { type SourceContent (line 30) | type SourceContent struct function encodeVLQ (line 85) | func encodeVLQ(encoded []byte, value int) []byte { function DecodeVLQ (line 120) | func DecodeVLQ(encoded []byte, start int) (int, int) { function DecodeVLQUTF16 (line 150) | func DecodeVLQUTF16(encoded []uint16) (int32, int, bool) { type LineColumnOffset (line 188) | type LineColumnOffset struct method ComesBefore (line 193) | func (a LineColumnOffset) ComesBefore(b LineColumnOffset) bool { method Add (line 197) | func (a *LineColumnOffset) Add(b LineColumnOffset) { method AdvanceBytes (line 206) | func (offset *LineColumnOffset) AdvanceBytes(bytes []byte) { method AdvanceString (line 234) | func (offset *LineColumnOffset) AdvanceString(text string) { type SourceMapPieces (line 260) | type SourceMapPieces struct method HasContent (line 266) | func (pieces SourceMapPieces) HasContent() bool { method Finalize (line 275) | func (pieces SourceMapPieces) Finalize(shifts []SourceMapShift) []byte { type SourceMapShift (line 270) | type SourceMapShift struct type SourceMapState (line 381) | type SourceMapState struct function AppendSourceMapChunk (line 403) | func AppendSourceMapChunk(j *helpers.Joiner, prevEndState SourceMapState... function appendMappingToBuffer (line 470) | func appendMappingToBuffer( type LineOffsetTable (line 496) | type LineOffsetTable struct function GenerateLineOffsetTables (line 513) | func GenerateLineOffsetTables(contents string, approximateLineCount int3... type MappingsBuffer (line 591) | type MappingsBuffer struct type Chunk (line 596) | type Chunk struct type ChunkBuilder (line 612) | type ChunkBuilder struct method AddSourceMapping (line 663) | func (b *ChunkBuilder) AddSourceMapping(originalLoc logger.Loc, origin... method GenerateChunk (line 721) | func (b *ChunkBuilder) GenerateChunk(output []byte) Chunk { method updateGeneratedLineAndColumn (line 744) | func (b *ChunkBuilder) updateGeneratedLineAndColumn(output []byte) { method appendMapping (line 789) | func (b *ChunkBuilder) appendMapping(originalName string, currentState... method appendMappingWithoutRemapping (line 829) | func (b *ChunkBuilder) appendMappingWithoutRemapping(currentState Sour... function MakeChunkBuilder (line 640) | func MakeChunkBuilder(inputSourceMap *SourceMap, lineOffsetTables []Line... FILE: internal/test/diff.go function diff (line 10) | func diff(old string, new string, color bool) string { function diffRec (line 15) | func diffRec(result []string, old []string, new []string, color bool) []... function lcSubstr (line 51) | func lcSubstr(S []string, T []string) (int, int, int) { FILE: internal/test/util.go function AssertEqual (line 11) | func AssertEqual(t *testing.T, observed interface{}, expected interface{... function AssertEqualWithDiff (line 18) | func AssertEqualWithDiff(t *testing.T, observed interface{}, expected in... function SourceForTest (line 28) | func SourceForTest(contents string) logger.Source { FILE: internal/xxhash/xxhash.go constant prime1 (line 12) | prime1 uint64 = 11400714785074694791 constant prime2 (line 13) | prime2 uint64 = 14029467366897019727 constant prime3 (line 14) | prime3 uint64 = 1609587929392839161 constant prime4 (line 15) | prime4 uint64 = 9650029242287828579 constant prime5 (line 16) | prime5 uint64 = 2870177450012600261 type Digest (line 34) | type Digest struct method Reset (line 52) | func (d *Digest) Reset() { method Size (line 62) | func (d *Digest) Size() int { return 8 } method BlockSize (line 65) | func (d *Digest) BlockSize() int { return 32 } method Write (line 68) | func (d *Digest) Write(b []byte) (n int, err error) { method Sum (line 104) | func (d *Digest) Sum(b []byte) []byte { method Sum64 (line 120) | func (d *Digest) Sum64() uint64 { method MarshalBinary (line 168) | func (d *Digest) MarshalBinary() ([]byte, error) { method UnmarshalBinary (line 182) | func (d *Digest) UnmarshalBinary(b []byte) error { function New (line 45) | func New() *Digest { constant magic (line 163) | magic = "xxh\x06" constant marshaledSize (line 164) | marshaledSize = len(magic) + 8*5 + 32 function appendUint64 (line 200) | func appendUint64(b []byte, x uint64) []byte { function consumeUint64 (line 206) | func consumeUint64(b []byte) ([]byte, uint64) { function u64 (line 211) | func u64(b []byte) uint64 { return binary.LittleEndian.Uint64(b) } function u32 (line 212) | func u32(b []byte) uint32 { return binary.LittleEndian.Uint32(b) } function round (line 214) | func round(acc, input uint64) uint64 { function mergeRound (line 221) | func mergeRound(acc, val uint64) uint64 { function rol1 (line 228) | func rol1(x uint64) uint64 { return bits.RotateLeft64(x, 1) } function rol7 (line 229) | func rol7(x uint64) uint64 { return bits.RotateLeft64(x, 7) } function rol11 (line 230) | func rol11(x uint64) uint64 { return bits.RotateLeft64(x, 11) } function rol12 (line 231) | func rol12(x uint64) uint64 { return bits.RotateLeft64(x, 12) } function rol18 (line 232) | func rol18(x uint64) uint64 { return bits.RotateLeft64(x, 18) } function rol23 (line 233) | func rol23(x uint64) uint64 { return bits.RotateLeft64(x, 23) } function rol27 (line 234) | func rol27(x uint64) uint64 { return bits.RotateLeft64(x, 27) } function rol31 (line 235) | func rol31(x uint64) uint64 { return bits.RotateLeft64(x, 31) } FILE: internal/xxhash/xxhash_other.go function Sum64 (line 4) | func Sum64(b []byte) uint64 { function writeBlocks (line 62) | func writeBlocks(d *Digest, b []byte) int { FILE: lib/deno/mod.ts function installFromNPM (line 62) | async function installFromNPM(name: string, subpath: string): Promise { type Service (line 172) | interface Service { type SpawnFn (line 185) | type SpawnFn = (cmd: string, options: { method writeToStdin (line 307) | writeToStdin(bytes) { method readFile (line 365) | readFile(tempFile, callback) { method writeFile (line 378) | writeFile(contents, callback) { FILE: lib/deno/wasm.ts type Go (line 5) | interface Go { type Service (line 56) | interface Service { method terminate (line 103) | terminate() { method writeToStdin (line 128) | writeToStdin(bytes) { method readFile (line 177) | readFile(_, callback) { callback(new Error('Internal error'), null); } method writeFile (line 178) | writeFile(_, callback) { callback(null); } FILE: lib/npm/browser.ts type Go (line 5) | interface Go { type Service (line 51) | interface Service { method terminate (line 111) | terminate() { method writeToStdin (line 136) | writeToStdin(bytes) { method readFile (line 191) | readFile(_, callback) { callback(new Error('Internal error'), null); } method writeFile (line 192) | writeFile(_, callback) { callback(null); } FILE: lib/npm/node-install.ts function validateBinaryVersion (line 14) | function validateBinaryVersion(...command: string[]): void { function isYarn (line 56) | function isYarn(): boolean { function fetch (line 64) | function fetch(url: string): Promise { function extractFileFromTarGzip (line 78) | function extractFileFromTarGzip(buffer: Buffer, subpath: string): Buffer { function installUsingNPM (line 99) | function installUsingNPM(pkg: string, subpath: string, binPath: string):... function removeRecursive (line 144) | function removeRecursive(dir: string): void { function applyManualBinaryPathOverride (line 159) | function applyManualBinaryPathOverride(overridePath: string): void { function maybeOptimizePackage (line 171) | function maybeOptimizePackage(binPath: string): void { function downloadDirectlyFromNPM (line 222) | async function downloadDirectlyFromNPM(pkg: string, subpath: string, bin... function checkAndPreparePackage (line 236) | async function checkAndPreparePackage(): Promise { FILE: lib/npm/node-platform.ts function pkgAndSubpathForCurrentPlatform (line 57) | function pkgAndSubpathForCurrentPlatform(): { pkg: string, subpath: stri... function pkgForSomeOtherPlatform (line 86) | function pkgForSomeOtherPlatform(): string | null { function downloadedBinPath (line 111) | function downloadedBinPath(pkg: string, subpath: string): string { function generateBinPath (line 116) | function generateBinPath(): { binPath: string, isWASM: boolean } { FILE: lib/npm/node.ts method readFile (line 83) | readFile(tempFile, callback) { method writeFile (line 95) | writeFile(contents, callback) { method readFile (line 107) | readFile(tempFile, callback) { method writeFile (line 120) | writeFile(contents, callback) { type Service (line 242) | interface Service { method writeToStdin (line 264) | writeToStdin(bytes) { method ref (line 308) | ref() { if (++refCount === 1) child.ref(); } method unref (line 309) | unref() { if (--refCount === 0) child.unref(); } method writeToStdin (line 375) | writeToStdin(bytes) { type MainToWorkerMessage (line 403) | interface MainToWorkerMessage { type WorkerThreadService (line 410) | interface WorkerThreadService { method buildSync (line 500) | buildSync(options) { method transformSync (line 504) | transformSync(input, options) { method formatMessagesSync (line 507) | formatMessagesSync(messages, options) { method analyzeMetafileSync (line 510) | analyzeMetafileSync(metafile, options) { method stop (line 513) | stop() { FILE: lib/shared/common.ts function validateAndJoinStringArray (line 12) | function validateAndJoinStringArray(values: string[], what: string): str... type OptionKeys (line 75) | type OptionKeys = { [key: string]: boolean } function getFlag (line 77) | function getFlag(object: T, keys: Optio... function checkForInvalidFlags (line 86) | function checkForInvalidFlags(object: Object, keys: OptionKeys, where: s... function validateInitializeOptions (line 94) | function validateInitializeOptions(options: types.InitializeOptions): ty... type MangleCache (line 107) | type MangleCache = Record function validateMangleCache (line 109) | function validateMangleCache(mangleCache: MangleCache | undefined): Mang... type CommonOptions (line 125) | type CommonOptions = types.BuildOptions | types.TransformOptions function pushLogFlags (line 127) | function pushLogFlags(flags: string[], options: CommonOptions, keys: Opt... function validateStringValue (line 138) | function validateStringValue(value: unknown, what: string, key?: string)... function pushCommonFlags (line 145) | function pushCommonFlags(flags: string[], options: CommonOptions, keys: ... function flagsForBuildOptions (line 235) | function flagsForBuildOptions( function flagsForTransformOptions (line 402) | function flagsForTransformOptions( type StreamIn (line 436) | interface StreamIn { type StreamOut (line 444) | interface StreamOut { type StreamFS (line 450) | interface StreamFS { type Refs (line 455) | interface Refs { type StreamService (line 460) | interface StreamService { type CloseData (line 497) | type CloseData = { didClose: boolean, reason: string } type RequestCallback (line 498) | type RequestCallback = (id: number, request: any) => Promise | void function createChannel (line 503) | function createChannel(streamIn: StreamIn): StreamOut { function buildOrContextImpl (line 840) | function buildOrContextImpl( type RunOnEndCallbacks (line 1163) | type RunOnEndCallbacks = (result: types.BuildResult, done: (errors: type... method onStart (line 1289) | onStart(callback) { method onEnd (line 1296) | onEnd(callback) { method onResolve (line 1303) | onResolve(options, callback) { method onLoad (line 1316) | onLoad(options, callback) { method onDispose (line 1329) | onDispose(callback) { type ObjectStash (line 1554) | interface ObjectStash { function createObjectStash (line 1560) | function createObjectStash(): ObjectStash { function extractCallerV8 (line 1579) | function extractCallerV8(e: Error, streamIn: StreamIn, ident: string): (... function extractErrorMessageV8 (line 1598) | function extractErrorMessageV8(e: any, streamIn: StreamIn, stash: Object... function parseStackLinesV8 (line 1616) | function parseStackLinesV8(streamIn: StreamIn, lines: string[], ident: s... function failureErrorWithLog (line 1670) | function failureErrorWithLog(text: string, errors: types.Message[], warn... function replaceDetailsInMessages (line 1703) | function replaceDetailsInMessages(messages: types.Message[], stash: Obje... function sanitizeLocation (line 1710) | function sanitizeLocation(location: types.PartialMessage['location'], wh... function sanitizeMessages (line 1760) | function sanitizeMessages( function sanitizeStringArray (line 1809) | function sanitizeStringArray(values: any[], property: string): string[] { function sanitizeStringMap (line 1818) | function sanitizeStringMap(map: Record, property: string): ... function convertOutputFiles (line 1828) | function convertOutputFiles({ path, contents, hash }: protocol.BuildOutp... function jsRegExpToGoRegExp (line 1857) | function jsRegExpToGoRegExp(regexp: RegExp): string { function parseJSON (line 1863) | function parseJSON(bytes: Uint8Array): any { FILE: lib/shared/stdio_protocol.ts type BuildRequest (line 9) | interface BuildRequest { type ServeRequest (line 24) | interface ServeRequest { type ServeResponse (line 37) | interface ServeResponse { type BuildPlugin (line 42) | interface BuildPlugin { type BuildResponse (line 50) | interface BuildResponse { type OnEndRequest (line 59) | interface OnEndRequest extends BuildResponse { type OnEndResponse (line 63) | interface OnEndResponse { type BuildOutputFile (line 68) | interface BuildOutputFile { type PingRequest (line 74) | interface PingRequest { type RebuildRequest (line 78) | interface RebuildRequest { type RebuildResponse (line 83) | interface RebuildResponse { type DisposeRequest (line 88) | interface DisposeRequest { type CancelRequest (line 93) | interface CancelRequest { type WatchRequest (line 98) | interface WatchRequest { type OnServeRequest (line 104) | interface OnServeRequest { type TransformRequest (line 110) | interface TransformRequest { type TransformResponse (line 118) | interface TransformResponse { type FormatMsgsRequest (line 132) | interface FormatMsgsRequest { type FormatMsgsResponse (line 140) | interface FormatMsgsResponse { type AnalyzeMetafileRequest (line 144) | interface AnalyzeMetafileRequest { type AnalyzeMetafileResponse (line 151) | interface AnalyzeMetafileResponse { type OnStartRequest (line 155) | interface OnStartRequest { type OnStartResponse (line 160) | interface OnStartResponse { type ResolveRequest (line 165) | interface ResolveRequest { type ResolveResponse (line 178) | interface ResolveResponse { type OnResolveRequest (line 190) | interface OnResolveRequest { type OnResolveResponse (line 203) | interface OnResolveResponse { type OnLoadRequest (line 221) | interface OnLoadRequest { type OnLoadResponse (line 232) | interface OnLoadResponse { type Packet (line 250) | interface Packet { type Value (line 256) | type Value = function encodePacket (line 265) | function encodePacket(packet: Packet): Uint8Array { function decodePacket (line 306) | function decodePacket(bytes: Uint8Array): Packet { class ByteBuffer (line 351) | class ByteBuffer { method constructor (line 355) | constructor(public buf = new Uint8Array(1024)) { method _write (line 358) | private _write(delta: number): number { method write8 (line 368) | write8(value: number): void { method write32 (line 373) | write32(value: number): void { method write (line 378) | write(bytes: Uint8Array): void { method _read (line 384) | private _read(delta: number): number { method read8 (line 392) | read8(): number { method read32 (line 396) | read32(): number { method read (line 400) | read(): Uint8Array { function readUInt32LE (line 447) | function readUInt32LE(buffer: Uint8Array, offset: number): number { function writeUInt32LE (line 456) | function writeUInt32LE(buffer: Uint8Array, value: number, offset: number... FILE: lib/shared/types.ts type Platform (line 1) | type Platform = 'browser' | 'node' | 'neutral' type Format (line 2) | type Format = 'iife' | 'cjs' | 'esm' type Loader (line 3) | type Loader = 'base64' | 'binary' | 'copy' | 'css' | 'dataurl' | 'defaul... type LogLevel (line 4) | type LogLevel = 'verbose' | 'debug' | 'info' | 'warning' | 'error' | 'si... type Charset (line 5) | type Charset = 'ascii' | 'utf8' type Drop (line 6) | type Drop = 'console' | 'debugger' type AbsPaths (line 7) | type AbsPaths = 'code' | 'log' | 'metafile' type CommonOptions (line 9) | interface CommonOptions { type TsconfigRaw (line 94) | interface TsconfigRaw { type BuildOptions (line 113) | interface BuildOptions extends CommonOptions { type StdinOptions (line 176) | interface StdinOptions { type Message (line 183) | interface Message { type Note (line 197) | interface Note { type Location (line 202) | interface Location { type OutputFile (line 215) | interface OutputFile { type BuildResult (line 223) | interface BuildResult = In & { [Key in Exclude (new Foo() as any).#foo + 0)) method method (line 2556) | method() { } method method (line 2557) | static method() { } method getter (line 2562) | get getter(): undefined { return } method getter (line 2563) | static get getter(): undefined { return } method setter (line 2565) | set setter(x: undefined) { } method setter (line 2566) | static set setter(x: undefined) { } method method (line 2625) | method() { } method method (line 2626) | static method() { } method getter (line 2631) | get getter(): undefined { return } method getter (line 2632) | static get getter(): undefined { return } method setter (line 2634) | set setter(x: undefined) { } method setter (line 2635) | static set setter(x: undefined) { } class Dummy (line 2579) | class Dummy { method #foo (line 2546) | static #foo(n: number): Function { class Foo (line 2553) | @(dummy.#foo(0)) class Foo method method (line 2556) | method() { } method method (line 2557) | static method() { } method getter (line 2562) | get getter(): undefined { return } method getter (line 2563) | static get getter(): undefined { return } method setter (line 2565) | set setter(x: undefined) { } method setter (line 2566) | static set setter(x: undefined) { } method method (line 2625) | method() { } method method (line 2626) | static method() { } method getter (line 2631) | get getter(): undefined { return } method getter (line 2632) | static get getter(): undefined { return } method setter (line 2634) | set setter(x: undefined) { } method setter (line 2635) | static set setter(x: undefined) { } method #foo (line 2580) | static #foo(n: number): Function { method method (line 2590) | method() { } method method (line 2591) | static method() { } method getter (line 2596) | get getter(): undefined { return } method getter (line 2597) | static get getter(): undefined { return } method setter (line 2599) | set setter(x: undefined) { } method setter (line 2600) | static set setter(x: undefined) { } class Foo (line 2621) | @(capture(() => (new Foo() as any).#foo + 0)) method method (line 2556) | method() { } method method (line 2557) | static method() { } method getter (line 2562) | get getter(): undefined { return } method getter (line 2563) | static get getter(): undefined { return } method setter (line 2565) | set setter(x: undefined) { } method setter (line 2566) | static set setter(x: undefined) { } method method (line 2625) | method() { } method method (line 2626) | static method() { } method getter (line 2631) | get getter(): undefined { return } method getter (line 2632) | static get getter(): undefined { return } method setter (line 2634) | set setter(x: undefined) { } method setter (line 2635) | static set setter(x: undefined) { } class Dummy (line 2617) | class Dummy { method #foo (line 2546) | static #foo(n: number): Function { class Foo (line 2553) | @(dummy.#foo(0)) class Foo method method (line 2556) | method() { } method method (line 2557) | static method() { } method getter (line 2562) | get getter(): undefined { return } method getter (line 2563) | static get getter(): undefined { return } method setter (line 2565) | set setter(x: undefined) { } method setter (line 2566) | static set setter(x: undefined) { } method method (line 2625) | method() { } method method (line 2626) | static method() { } method getter (line 2631) | get getter(): undefined { return } method getter (line 2632) | static get getter(): undefined { return } method setter (line 2634) | set setter(x: undefined) { } method setter (line 2635) | static set setter(x: undefined) { } method #foo (line 2580) | static #foo(n: number): Function { method method (line 2590) | method() { } method method (line 2591) | static method() { } method getter (line 2596) | get getter(): undefined { return } method getter (line 2597) | static get getter(): undefined { return } method setter (line 2599) | set setter(x: undefined) { } method setter (line 2600) | static set setter(x: undefined) { } class Foo (line 2621) | @(capture(() => (new Foo() as any).#foo + 0)) method method (line 2556) | method() { } method method (line 2557) | static method() { } method getter (line 2562) | get getter(): undefined { return } method getter (line 2563) | static get getter(): undefined { return } method setter (line 2565) | set setter(x: undefined) { } method setter (line 2566) | static set setter(x: undefined) { } method method (line 2625) | method() { } method method (line 2626) | static method() { } method getter (line 2631) | get getter(): undefined { return } method getter (line 2632) | static get getter(): undefined { return } method setter (line 2634) | set setter(x: undefined) { } method setter (line 2635) | static set setter(x: undefined) { } class Outer (line 2669) | class Outer { method method (line 2677) | method() { } method method (line 2678) | static method() { } method getter (line 2683) | get getter(): undefined { return } method getter (line 2684) | static get getter(): undefined { return } method setter (line 2686) | set setter(x: undefined) { } method setter (line 2687) | static set setter(x: undefined) { } class Foo (line 2726) | @(capture(() => Foo)) class Foo { method constructor (line 282) | constructor() { log.push(6) } method foo (line 342) | foo() { } method [bar] (line 343) | [bar]() { } method [baz] (line 344) | [baz]() { } method foo (line 369) | static foo() { } method [bar] (line 370) | static [bar]() { } method [baz] (line 371) | static [baz]() { } method #foo (line 397) | #foo() { } method #foo (line 423) | static #foo() { } method foo (line 437) | foo() { return this.bar } method foo (line 450) | static foo() { return this.bar } method #foo (line 464) | #foo() { return this.bar } method #foo (line 479) | static #foo() { return this.bar } method foo (line 507) | foo() { return log.push(6) } method foo (line 537) | static foo() { return log.push(6) } method #foo (line 568) | #foo() { return log.push(6) } method #foo (line 600) | static #foo() { return log.push(6) } method foo (line 614) | foo() { } method foo (line 622) | static foo() { } method #foo (line 630) | #foo() { } method #foo (line 638) | static #foo() { } method foo (line 646) | foo() { } method foo (line 654) | static foo() { } method #foo (line 662) | #foo() { } method #foo (line 670) | static #foo() { } method foo (line 684) | foo() { } method foo (line 701) | static foo() { } method #foo (line 716) | #foo() { } method #foo (line 733) | static #foo() { } method foo (line 1172) | get foo() { return this.bar } method [bar] (line 1173) | get [bar]() { return this.bar } method [baz] (line 1174) | get [baz]() { return this.bar } method foo (line 1198) | static get foo() { return this.bar } method [bar] (line 1199) | static get [bar]() { return this.bar } method [baz] (line 1200) | static get [baz]() { return this.bar } method #foo (line 1225) | get #foo() { return this.#bar } method #foo (line 1250) | static get #foo() { return this.#bar } method foo (line 1264) | get foo() { return this.bar } method foo (line 1277) | static get foo() { return this.bar } method #foo (line 1291) | get #foo() { return this.#bar } method #foo (line 1305) | static get #foo() { return this.#bar } method foo (line 1332) | get foo() { return log.push(6) } method foo (line 1362) | static get foo() { return log.push(6) } method #foo (line 1393) | get #foo() { return log.push(6) } method #foo (line 1424) | static get #foo() { return log.push(6) } method foo (line 1437) | get foo(): undefined { return } method foo (line 1445) | static get foo(): undefined { return } method #foo (line 1453) | get #foo(): undefined { return } method #foo (line 1461) | static get #foo(): undefined { return } method foo (line 1469) | get foo(): undefined { return } method foo (line 1477) | static get foo(): undefined { return } method #foo (line 1485) | get #foo(): undefined { return } method #foo (line 1493) | static get #foo(): undefined { return } method foo (line 1507) | get foo(): undefined { return } method foo (line 1524) | static get foo(): undefined { return } method #foo (line 1539) | get #foo(): undefined { return } method #foo (line 1556) | static get #foo(): undefined { return } method foo (line 1583) | set foo(x: number) { this.bar = x } method [bar] (line 1584) | set [bar](x: number) { this.bar = x } method [baz] (line 1585) | set [baz](x: number) { this.bar = x } method foo (line 1616) | static set foo(x: number) { this.bar = x } method [bar] (line 1617) | static set [bar](x: number) { this.bar = x } method [baz] (line 1618) | static set [baz](x: number) { this.bar = x } method #foo (line 1650) | set #foo(x: number) { this.bar = x } method #foo (line 1680) | static set #foo(x: number) { this.bar = x } method foo (line 1695) | set foo(x: number) { this.bar = x } method foo (line 1710) | static set foo(x: number) { this.bar = x } method #foo (line 1725) | set #foo(x: number) { this.bar = x } method #foo (line 1741) | static set #foo(x: number) { this.bar = x } method foo (line 1769) | set foo(x: number) { log.push(6) } method foo (line 1799) | static set foo(x: number) { log.push(6) } method #foo (line 1830) | set #foo(x: number) { log.push(6) } method #foo (line 1861) | static set #foo(x: number) { log.push(6) } method foo (line 1874) | set foo(x: undefined) { } method foo (line 1882) | static set foo(x: undefined) { } method #foo (line 1890) | set #foo(x: undefined) { } method #foo (line 1898) | static set #foo(x: undefined) { } method foo (line 1906) | set foo(x: undefined) { } method foo (line 1914) | static set foo(x: undefined) { } method #foo (line 1922) | set #foo(x: undefined) { } method #foo (line 1930) | static set #foo(x: undefined) { } method foo (line 1944) | set foo(x: undefined) { } method foo (line 1961) | static set foo(x: undefined) { } method #foo (line 1976) | set #foo(x: undefined) { } method #foo (line 1993) | static set #foo(x: undefined) { } method method (line 2727) | method() { } method method (line 2728) | static method() { } method getter (line 2733) | get getter(): undefined { return } method getter (line 2734) | static get getter(): undefined { return } method setter (line 2736) | set setter(x: undefined) { } method setter (line 2737) | static set setter(x: undefined) { } method instanceMethod (line 2818) | instanceMethod() { } method instanceGetter (line 2819) | get instanceGetter() { return } method instanceSetter (line 2820) | set instanceSetter(_: undefined) { } method staticMethod (line 2824) | static staticMethod() { } method staticGetter (line 2825) | static get staticGetter() { return } method staticSetter (line 2826) | static set staticSetter(_: undefined) { } method constructor (line 3114) | constructor() { method method (line 3120) | method() { } method method (line 3121) | static method() { } method getter (line 3126) | get getter(): undefined { return } method getter (line 3127) | static get getter(): undefined { return } method setter (line 3129) | set setter(x: undefined) { } method setter (line 3130) | static set setter(x: undefined) { } method constructor (line 3572) | constructor() { method #method (line 3578) | #method() { } method #staticMethod (line 3579) | static #staticMethod() { } method #getter (line 3584) | get #getter(): undefined { return } method #staticGetter (line 3585) | static get #staticGetter(): undefined { return } method #setter (line 3587) | set #setter(x: undefined) { } method #staticSetter (line 3588) | static set #staticSetter(x: undefined) { } method method (line 2777) | method() { } method method (line 2778) | static method() { } method getter (line 2783) | get getter(): undefined { return } method getter (line 2784) | static get getter(): undefined { return } method setter (line 2786) | set setter(x: undefined) { } method setter (line 2787) | static set setter(x: undefined) { } class Foo (line 2815) | @dec class Foo { method constructor (line 282) | constructor() { log.push(6) } method foo (line 342) | foo() { } method [bar] (line 343) | [bar]() { } method [baz] (line 344) | [baz]() { } method foo (line 369) | static foo() { } method [bar] (line 370) | static [bar]() { } method [baz] (line 371) | static [baz]() { } method #foo (line 397) | #foo() { } method #foo (line 423) | static #foo() { } method foo (line 437) | foo() { return this.bar } method foo (line 450) | static foo() { return this.bar } method #foo (line 464) | #foo() { return this.bar } method #foo (line 479) | static #foo() { return this.bar } method foo (line 507) | foo() { return log.push(6) } method foo (line 537) | static foo() { return log.push(6) } method #foo (line 568) | #foo() { return log.push(6) } method #foo (line 600) | static #foo() { return log.push(6) } method foo (line 614) | foo() { } method foo (line 622) | static foo() { } method #foo (line 630) | #foo() { } method #foo (line 638) | static #foo() { } method foo (line 646) | foo() { } method foo (line 654) | static foo() { } method #foo (line 662) | #foo() { } method #foo (line 670) | static #foo() { } method foo (line 684) | foo() { } method foo (line 701) | static foo() { } method #foo (line 716) | #foo() { } method #foo (line 733) | static #foo() { } method foo (line 1172) | get foo() { return this.bar } method [bar] (line 1173) | get [bar]() { return this.bar } method [baz] (line 1174) | get [baz]() { return this.bar } method foo (line 1198) | static get foo() { return this.bar } method [bar] (line 1199) | static get [bar]() { return this.bar } method [baz] (line 1200) | static get [baz]() { return this.bar } method #foo (line 1225) | get #foo() { return this.#bar } method #foo (line 1250) | static get #foo() { return this.#bar } method foo (line 1264) | get foo() { return this.bar } method foo (line 1277) | static get foo() { return this.bar } method #foo (line 1291) | get #foo() { return this.#bar } method #foo (line 1305) | static get #foo() { return this.#bar } method foo (line 1332) | get foo() { return log.push(6) } method foo (line 1362) | static get foo() { return log.push(6) } method #foo (line 1393) | get #foo() { return log.push(6) } method #foo (line 1424) | static get #foo() { return log.push(6) } method foo (line 1437) | get foo(): undefined { return } method foo (line 1445) | static get foo(): undefined { return } method #foo (line 1453) | get #foo(): undefined { return } method #foo (line 1461) | static get #foo(): undefined { return } method foo (line 1469) | get foo(): undefined { return } method foo (line 1477) | static get foo(): undefined { return } method #foo (line 1485) | get #foo(): undefined { return } method #foo (line 1493) | static get #foo(): undefined { return } method foo (line 1507) | get foo(): undefined { return } method foo (line 1524) | static get foo(): undefined { return } method #foo (line 1539) | get #foo(): undefined { return } method #foo (line 1556) | static get #foo(): undefined { return } method foo (line 1583) | set foo(x: number) { this.bar = x } method [bar] (line 1584) | set [bar](x: number) { this.bar = x } method [baz] (line 1585) | set [baz](x: number) { this.bar = x } method foo (line 1616) | static set foo(x: number) { this.bar = x } method [bar] (line 1617) | static set [bar](x: number) { this.bar = x } method [baz] (line 1618) | static set [baz](x: number) { this.bar = x } method #foo (line 1650) | set #foo(x: number) { this.bar = x } method #foo (line 1680) | static set #foo(x: number) { this.bar = x } method foo (line 1695) | set foo(x: number) { this.bar = x } method foo (line 1710) | static set foo(x: number) { this.bar = x } method #foo (line 1725) | set #foo(x: number) { this.bar = x } method #foo (line 1741) | static set #foo(x: number) { this.bar = x } method foo (line 1769) | set foo(x: number) { log.push(6) } method foo (line 1799) | static set foo(x: number) { log.push(6) } method #foo (line 1830) | set #foo(x: number) { log.push(6) } method #foo (line 1861) | static set #foo(x: number) { log.push(6) } method foo (line 1874) | set foo(x: undefined) { } method foo (line 1882) | static set foo(x: undefined) { } method #foo (line 1890) | set #foo(x: undefined) { } method #foo (line 1898) | static set #foo(x: undefined) { } method foo (line 1906) | set foo(x: undefined) { } method foo (line 1914) | static set foo(x: undefined) { } method #foo (line 1922) | set #foo(x: undefined) { } method #foo (line 1930) | static set #foo(x: undefined) { } method foo (line 1944) | set foo(x: undefined) { } method foo (line 1961) | static set foo(x: undefined) { } method #foo (line 1976) | set #foo(x: undefined) { } method #foo (line 1993) | static set #foo(x: undefined) { } method method (line 2727) | method() { } method method (line 2728) | static method() { } method getter (line 2733) | get getter(): undefined { return } method getter (line 2734) | static get getter(): undefined { return } method setter (line 2736) | set setter(x: undefined) { } method setter (line 2737) | static set setter(x: undefined) { } method instanceMethod (line 2818) | instanceMethod() { } method instanceGetter (line 2819) | get instanceGetter() { return } method instanceSetter (line 2820) | set instanceSetter(_: undefined) { } method staticMethod (line 2824) | static staticMethod() { } method staticGetter (line 2825) | static get staticGetter() { return } method staticSetter (line 2826) | static set staticSetter(_: undefined) { } method constructor (line 3114) | constructor() { method method (line 3120) | method() { } method method (line 3121) | static method() { } method getter (line 3126) | get getter(): undefined { return } method getter (line 3127) | static get getter(): undefined { return } method setter (line 3129) | set setter(x: undefined) { } method setter (line 3130) | static set setter(x: undefined) { } method constructor (line 3572) | constructor() { method #method (line 3578) | #method() { } method #staticMethod (line 3579) | static #staticMethod() { } method #getter (line 3584) | get #getter(): undefined { return } method #staticGetter (line 3585) | static get #staticGetter(): undefined { return } method #setter (line 3587) | set #setter(x: undefined) { } method #staticSetter (line 3588) | static set #staticSetter(x: undefined) { } class Bar (line 2828) | @dec class Bar extends Foo { method #instanceMethod (line 2831) | #instanceMethod() { } method #instanceGetter (line 2832) | get #instanceGetter() { return } method #instanceSetter (line 2833) | set #instanceSetter(_: undefined) { } method #staticMethod (line 2837) | static #staticMethod() { } method #staticGetter (line 2838) | static get #staticGetter() { return } method #staticSetter (line 2839) | static set #staticSetter(_: undefined) { } class FooNoDec (line 2858) | class FooNoDec { } class BarNoDec (line 2859) | class BarNoDec extends FooNoDec { } class FooOneDec (line 2864) | class FooOneDec { @dec x: undefined } class BarOneDec (line 2865) | class BarOneDec extends FooOneDec { @dec y: undefined } method instanceMethod (line 2878) | instanceMethod() { } method instanceGetter (line 2879) | get instanceGetter() { return } method instanceSetter (line 2880) | set instanceSetter(_: undefined) { } method staticMethod (line 2884) | static staticMethod() { } method staticGetter (line 2885) | static get staticGetter() { return } method staticSetter (line 2886) | static set staticSetter(_: undefined) { } method #instanceMethod (line 2890) | #instanceMethod() { } method #instanceGetter (line 2891) | get #instanceGetter() { return } method #instanceSetter (line 2892) | set #instanceSetter(_: undefined) { } method #staticMethod (line 2896) | static #staticMethod() { } method #staticGetter (line 2897) | static get #staticGetter() { return } method #staticSetter (line 2898) | static set #staticSetter(_: undefined) { } method init (line 3077) | init() { log.push('a7') } method init (line 3087) | init() { log.push('a8') } method init (line 3097) | init() { log.push('A7') } method init (line 3107) | init() { log.push('A8') } class Foo (line 3111) | @classDec1 @classDec2 class Foo extends (log.push('extends'), Object) { method constructor (line 282) | constructor() { log.push(6) } method foo (line 342) | foo() { } method [bar] (line 343) | [bar]() { } method [baz] (line 344) | [baz]() { } method foo (line 369) | static foo() { } method [bar] (line 370) | static [bar]() { } method [baz] (line 371) | static [baz]() { } method #foo (line 397) | #foo() { } method #foo (line 423) | static #foo() { } method foo (line 437) | foo() { return this.bar } method foo (line 450) | static foo() { return this.bar } method #foo (line 464) | #foo() { return this.bar } method #foo (line 479) | static #foo() { return this.bar } method foo (line 507) | foo() { return log.push(6) } method foo (line 537) | static foo() { return log.push(6) } method #foo (line 568) | #foo() { return log.push(6) } method #foo (line 600) | static #foo() { return log.push(6) } method foo (line 614) | foo() { } method foo (line 622) | static foo() { } method #foo (line 630) | #foo() { } method #foo (line 638) | static #foo() { } method foo (line 646) | foo() { } method foo (line 654) | static foo() { } method #foo (line 662) | #foo() { } method #foo (line 670) | static #foo() { } method foo (line 684) | foo() { } method foo (line 701) | static foo() { } method #foo (line 716) | #foo() { } method #foo (line 733) | static #foo() { } method foo (line 1172) | get foo() { return this.bar } method [bar] (line 1173) | get [bar]() { return this.bar } method [baz] (line 1174) | get [baz]() { return this.bar } method foo (line 1198) | static get foo() { return this.bar } method [bar] (line 1199) | static get [bar]() { return this.bar } method [baz] (line 1200) | static get [baz]() { return this.bar } method #foo (line 1225) | get #foo() { return this.#bar } method #foo (line 1250) | static get #foo() { return this.#bar } method foo (line 1264) | get foo() { return this.bar } method foo (line 1277) | static get foo() { return this.bar } method #foo (line 1291) | get #foo() { return this.#bar } method #foo (line 1305) | static get #foo() { return this.#bar } method foo (line 1332) | get foo() { return log.push(6) } method foo (line 1362) | static get foo() { return log.push(6) } method #foo (line 1393) | get #foo() { return log.push(6) } method #foo (line 1424) | static get #foo() { return log.push(6) } method foo (line 1437) | get foo(): undefined { return } method foo (line 1445) | static get foo(): undefined { return } method #foo (line 1453) | get #foo(): undefined { return } method #foo (line 1461) | static get #foo(): undefined { return } method foo (line 1469) | get foo(): undefined { return } method foo (line 1477) | static get foo(): undefined { return } method #foo (line 1485) | get #foo(): undefined { return } method #foo (line 1493) | static get #foo(): undefined { return } method foo (line 1507) | get foo(): undefined { return } method foo (line 1524) | static get foo(): undefined { return } method #foo (line 1539) | get #foo(): undefined { return } method #foo (line 1556) | static get #foo(): undefined { return } method foo (line 1583) | set foo(x: number) { this.bar = x } method [bar] (line 1584) | set [bar](x: number) { this.bar = x } method [baz] (line 1585) | set [baz](x: number) { this.bar = x } method foo (line 1616) | static set foo(x: number) { this.bar = x } method [bar] (line 1617) | static set [bar](x: number) { this.bar = x } method [baz] (line 1618) | static set [baz](x: number) { this.bar = x } method #foo (line 1650) | set #foo(x: number) { this.bar = x } method #foo (line 1680) | static set #foo(x: number) { this.bar = x } method foo (line 1695) | set foo(x: number) { this.bar = x } method foo (line 1710) | static set foo(x: number) { this.bar = x } method #foo (line 1725) | set #foo(x: number) { this.bar = x } method #foo (line 1741) | static set #foo(x: number) { this.bar = x } method foo (line 1769) | set foo(x: number) { log.push(6) } method foo (line 1799) | static set foo(x: number) { log.push(6) } method #foo (line 1830) | set #foo(x: number) { log.push(6) } method #foo (line 1861) | static set #foo(x: number) { log.push(6) } method foo (line 1874) | set foo(x: undefined) { } method foo (line 1882) | static set foo(x: undefined) { } method #foo (line 1890) | set #foo(x: undefined) { } method #foo (line 1898) | static set #foo(x: undefined) { } method foo (line 1906) | set foo(x: undefined) { } method foo (line 1914) | static set foo(x: undefined) { } method #foo (line 1922) | set #foo(x: undefined) { } method #foo (line 1930) | static set #foo(x: undefined) { } method foo (line 1944) | set foo(x: undefined) { } method foo (line 1961) | static set foo(x: undefined) { } method #foo (line 1976) | set #foo(x: undefined) { } method #foo (line 1993) | static set #foo(x: undefined) { } method method (line 2727) | method() { } method method (line 2728) | static method() { } method getter (line 2733) | get getter(): undefined { return } method getter (line 2734) | static get getter(): undefined { return } method setter (line 2736) | set setter(x: undefined) { } method setter (line 2737) | static set setter(x: undefined) { } method instanceMethod (line 2818) | instanceMethod() { } method instanceGetter (line 2819) | get instanceGetter() { return } method instanceSetter (line 2820) | set instanceSetter(_: undefined) { } method staticMethod (line 2824) | static staticMethod() { } method staticGetter (line 2825) | static get staticGetter() { return } method staticSetter (line 2826) | static set staticSetter(_: undefined) { } method constructor (line 3114) | constructor() { method method (line 3120) | method() { } method method (line 3121) | static method() { } method getter (line 3126) | get getter(): undefined { return } method getter (line 3127) | static get getter(): undefined { return } method setter (line 3129) | set setter(x: undefined) { } method setter (line 3130) | static set setter(x: undefined) { } method constructor (line 3572) | constructor() { method #method (line 3578) | #method() { } method #staticMethod (line 3579) | static #staticMethod() { } method #getter (line 3584) | get #getter(): undefined { return } method #staticGetter (line 3585) | static get #staticGetter(): undefined { return } method #setter (line 3587) | set #setter(x: undefined) { } method #staticSetter (line 3588) | static set #staticSetter(x: undefined) { } method init (line 3306) | init() { log.push('a7') } method init (line 3316) | init() { log.push('a8') } method init (line 3326) | init() { log.push('A7') } method init (line 3336) | init() { log.push('A8') } method constructor (line 3343) | constructor() { method method (line 3349) | method() { } method method (line 3350) | static method() { } method getter (line 3355) | get getter(): undefined { return } method getter (line 3356) | static get getter(): undefined { return } method setter (line 3358) | set setter(x: undefined) { } method setter (line 3359) | static set setter(x: undefined) { } method init (line 3535) | init() { log.push('a7') } method init (line 3545) | init() { log.push('a8') } method init (line 3555) | init() { log.push('A7') } method init (line 3565) | init() { log.push('A8') } class Foo (line 3569) | @classDec1 @classDec2 class Foo extends (log.push('extends'), Object) { method constructor (line 282) | constructor() { log.push(6) } method foo (line 342) | foo() { } method [bar] (line 343) | [bar]() { } method [baz] (line 344) | [baz]() { } method foo (line 369) | static foo() { } method [bar] (line 370) | static [bar]() { } method [baz] (line 371) | static [baz]() { } method #foo (line 397) | #foo() { } method #foo (line 423) | static #foo() { } method foo (line 437) | foo() { return this.bar } method foo (line 450) | static foo() { return this.bar } method #foo (line 464) | #foo() { return this.bar } method #foo (line 479) | static #foo() { return this.bar } method foo (line 507) | foo() { return log.push(6) } method foo (line 537) | static foo() { return log.push(6) } method #foo (line 568) | #foo() { return log.push(6) } method #foo (line 600) | static #foo() { return log.push(6) } method foo (line 614) | foo() { } method foo (line 622) | static foo() { } method #foo (line 630) | #foo() { } method #foo (line 638) | static #foo() { } method foo (line 646) | foo() { } method foo (line 654) | static foo() { } method #foo (line 662) | #foo() { } method #foo (line 670) | static #foo() { } method foo (line 684) | foo() { } method foo (line 701) | static foo() { } method #foo (line 716) | #foo() { } method #foo (line 733) | static #foo() { } method foo (line 1172) | get foo() { return this.bar } method [bar] (line 1173) | get [bar]() { return this.bar } method [baz] (line 1174) | get [baz]() { return this.bar } method foo (line 1198) | static get foo() { return this.bar } method [bar] (line 1199) | static get [bar]() { return this.bar } method [baz] (line 1200) | static get [baz]() { return this.bar } method #foo (line 1225) | get #foo() { return this.#bar } method #foo (line 1250) | static get #foo() { return this.#bar } method foo (line 1264) | get foo() { return this.bar } method foo (line 1277) | static get foo() { return this.bar } method #foo (line 1291) | get #foo() { return this.#bar } method #foo (line 1305) | static get #foo() { return this.#bar } method foo (line 1332) | get foo() { return log.push(6) } method foo (line 1362) | static get foo() { return log.push(6) } method #foo (line 1393) | get #foo() { return log.push(6) } method #foo (line 1424) | static get #foo() { return log.push(6) } method foo (line 1437) | get foo(): undefined { return } method foo (line 1445) | static get foo(): undefined { return } method #foo (line 1453) | get #foo(): undefined { return } method #foo (line 1461) | static get #foo(): undefined { return } method foo (line 1469) | get foo(): undefined { return } method foo (line 1477) | static get foo(): undefined { return } method #foo (line 1485) | get #foo(): undefined { return } method #foo (line 1493) | static get #foo(): undefined { return } method foo (line 1507) | get foo(): undefined { return } method foo (line 1524) | static get foo(): undefined { return } method #foo (line 1539) | get #foo(): undefined { return } method #foo (line 1556) | static get #foo(): undefined { return } method foo (line 1583) | set foo(x: number) { this.bar = x } method [bar] (line 1584) | set [bar](x: number) { this.bar = x } method [baz] (line 1585) | set [baz](x: number) { this.bar = x } method foo (line 1616) | static set foo(x: number) { this.bar = x } method [bar] (line 1617) | static set [bar](x: number) { this.bar = x } method [baz] (line 1618) | static set [baz](x: number) { this.bar = x } method #foo (line 1650) | set #foo(x: number) { this.bar = x } method #foo (line 1680) | static set #foo(x: number) { this.bar = x } method foo (line 1695) | set foo(x: number) { this.bar = x } method foo (line 1710) | static set foo(x: number) { this.bar = x } method #foo (line 1725) | set #foo(x: number) { this.bar = x } method #foo (line 1741) | static set #foo(x: number) { this.bar = x } method foo (line 1769) | set foo(x: number) { log.push(6) } method foo (line 1799) | static set foo(x: number) { log.push(6) } method #foo (line 1830) | set #foo(x: number) { log.push(6) } method #foo (line 1861) | static set #foo(x: number) { log.push(6) } method foo (line 1874) | set foo(x: undefined) { } method foo (line 1882) | static set foo(x: undefined) { } method #foo (line 1890) | set #foo(x: undefined) { } method #foo (line 1898) | static set #foo(x: undefined) { } method foo (line 1906) | set foo(x: undefined) { } method foo (line 1914) | static set foo(x: undefined) { } method #foo (line 1922) | set #foo(x: undefined) { } method #foo (line 1930) | static set #foo(x: undefined) { } method foo (line 1944) | set foo(x: undefined) { } method foo (line 1961) | static set foo(x: undefined) { } method #foo (line 1976) | set #foo(x: undefined) { } method #foo (line 1993) | static set #foo(x: undefined) { } method method (line 2727) | method() { } method method (line 2728) | static method() { } method getter (line 2733) | get getter(): undefined { return } method getter (line 2734) | static get getter(): undefined { return } method setter (line 2736) | set setter(x: undefined) { } method setter (line 2737) | static set setter(x: undefined) { } method instanceMethod (line 2818) | instanceMethod() { } method instanceGetter (line 2819) | get instanceGetter() { return } method instanceSetter (line 2820) | set instanceSetter(_: undefined) { } method staticMethod (line 2824) | static staticMethod() { } method staticGetter (line 2825) | static get staticGetter() { return } method staticSetter (line 2826) | static set staticSetter(_: undefined) { } method constructor (line 3114) | constructor() { method method (line 3120) | method() { } method method (line 3121) | static method() { } method getter (line 3126) | get getter(): undefined { return } method getter (line 3127) | static get getter(): undefined { return } method setter (line 3129) | set setter(x: undefined) { } method setter (line 3130) | static set setter(x: undefined) { } method constructor (line 3572) | constructor() { method #method (line 3578) | #method() { } method #staticMethod (line 3579) | static #staticMethod() { } method #getter (line 3584) | get #getter(): undefined { return } method #staticGetter (line 3585) | static get #staticGetter(): undefined { return } method #setter (line 3587) | set #setter(x: undefined) { } method #staticSetter (line 3588) | static set #staticSetter(x: undefined) { } method init (line 3764) | init() { log.push('a7') } method init (line 3774) | init() { log.push('a8') } method init (line 3784) | init() { log.push('A7') } method init (line 3794) | init() { log.push('A8') } method constructor (line 3801) | constructor() { method #method (line 3807) | #method() { } method #staticMethod (line 3808) | static #staticMethod() { } method #getter (line 3813) | get #getter(): undefined { return } method #staticGetter (line 3814) | static get #staticGetter(): undefined { return } method #setter (line 3816) | set #setter(x: undefined) { } method #staticSetter (line 3817) | static set #staticSetter(x: undefined) { } function prettyPrint (line 3849) | function prettyPrint(x: any): any { function assertEq (line 3859) | function assertEq(callback: () => T, expected: T): boolean { function assertThrows (line 3875) | function assertThrows(callback: () => void, expected... function run (line 3894) | async function run() { FILE: scripts/deno-tests.js function test (line 17) | function test(name, backends, fn) { method setup (line 128) | setup(build) { FILE: scripts/destructuring-fuzzer.js function generateTestCase (line 1) | function generateTestCase(assign) { function evaluate (line 117) | function evaluate(code) { function generateTestCases (line 125) | function generateTestCases(trials) { function AssignmentOperator (line 146) | function AssignmentOperator([pattern, value]) { function NamespaceExport (line 152) | function NamespaceExport([pattern, value]) { function ConstDeclaration (line 158) | function ConstDeclaration([pattern, value, ids]) { function LetDeclaration (line 164) | function LetDeclaration([pattern, value, ids]) { function VarDeclaration (line 170) | function VarDeclaration([pattern, value, ids]) { function TryCatchBinding (line 176) | function TryCatchBinding([pattern, value, ids]) { function FunctionStatementArguments (line 182) | function FunctionStatementArguments([pattern, value, ids]) { function FunctionExpressionArguments (line 188) | function FunctionExpressionArguments([pattern, value, ids]) { function ArrowFunctionArguments (line 194) | function ArrowFunctionArguments([pattern, value, ids]) { function ObjectMethodArguments (line 200) | function ObjectMethodArguments([pattern, value, ids]) { function ClassStatementMethodArguments (line 206) | function ClassStatementMethodArguments([pattern, value, ids]) { function ClassExpressionMethodArguments (line 212) | function ClassExpressionMethodArguments([pattern, value, ids]) { function ForLoopConst (line 218) | function ForLoopConst([pattern, value, ids]) { function ForLoopLet (line 224) | function ForLoopLet([pattern, value, ids]) { function ForLoopVar (line 230) | function ForLoopVar([pattern, value, ids]) { function ForLoop (line 236) | function ForLoop([pattern, value]) { function ForOfLoopConst (line 242) | function ForOfLoopConst([pattern, value, ids]) { function ForOfLoopLet (line 248) | function ForOfLoopLet([pattern, value, ids]) { function ForOfLoopVar (line 254) | function ForOfLoopVar([pattern, value, ids]) { function ForOfLoop (line 260) | function ForOfLoop([pattern, value]) { function verify (line 266) | async function verify(test, transform, testCases) { function concurrentMap (line 325) | function concurrentMap(items, batch, callback) { function main (line 348) | async function main() { FILE: scripts/end-to-end-tests.js function waitForCondition (line 9358) | function waitForCondition(what, seconds, mutator, condition) { function test (line 9383) | function test(args, files, options) { function testStdout (line 9501) | function testStdout(input, args, callback) { function testWatch (line 9529) | function testWatch(options, callback) { function testWatchStdout (line 9606) | function testWatchStdout(sequence) { function main (line 9696) | async function main() { FILE: scripts/esbuild.js function generateWorkerCode (line 89) | async function generateWorkerCode({ esbuildPath, wasm_exec_js, minify, t... FILE: scripts/gen-unicode-table.js function generateRangeTable (line 71) | function generateRangeTable(codePoints) { FILE: scripts/js-api-tests.js method errorIfEntryPointsNotArray (line 20) | async errorIfEntryPointsNotArray({ esbuild }) { method errorIfBadWorkingDirectory (line 34) | async errorIfBadWorkingDirectory({ esbuild }) { method errorIfExtensionlessLoaderIsDisabled (line 53) | async errorIfExtensionlessLoaderIsDisabled({ esbuild, testDir }) { method mangleCacheBuild (line 80) | async mangleCacheBuild({ esbuild }) { method windowsBackslashPathTest (line 93) | async windowsBackslashPathTest({ esbuild, testDir }) { method workingDirTest (line 117) | async workingDirTest({ esbuild, testDir }) { method absPathsCodeTest (line 146) | async absPathsCodeTest({ esbuild, testDir }) { method absPathsLogTest (line 180) | async absPathsLogTest({ esbuild, testDir }) { method absPathsMetafileTest (line 214) | async absPathsMetafileTest({ esbuild, testDir }) { method aliasValidity (line 248) | async aliasValidity({ esbuild }) { method pathResolverEACCS (line 292) | async pathResolverEACCS({ esbuild, testDir }) { method nodePathsTest (line 329) | async nodePathsTest({ esbuild, testDir }) { method nodePathsLocalPreferredTestIssue1117 (line 353) | async nodePathsLocalPreferredTestIssue1117({ esbuild, testDir }) { method es6_to_cjs (line 379) | async es6_to_cjs({ esbuild, testDir }) { method recursiveMkdir (line 396) | async recursiveMkdir({ esbuild, testDir }) { method outExtensionJS (line 411) | async outExtensionJS({ esbuild, testDir }) { method outExtensionCSS (line 424) | async outExtensionCSS({ esbuild, testDir }) { method sourceMapTrue (line 437) | async sourceMapTrue({ esbuild, testDir }) { method sourceMapLinked (line 459) | async sourceMapLinked({ esbuild, testDir }) { method sourceMapExternal (line 481) | async sourceMapExternal({ esbuild, testDir }) { method sourceMapInline (line 503) | async sourceMapInline({ esbuild, testDir }) { method sourceMapBoth (line 523) | async sourceMapBoth({ esbuild, testDir }) { method sourceMapIncludeSourcesContent (line 545) | async sourceMapIncludeSourcesContent({ esbuild, testDir }) { method sourceMapExcludeSourcesContent (line 568) | async sourceMapExcludeSourcesContent({ esbuild, testDir }) { method sourceMapSourceRoot (line 591) | async sourceMapSourceRoot({ esbuild, testDir }) { method sourceMapWithDisabledFile (line 614) | async sourceMapWithDisabledFile({ esbuild, testDir }) { method sourceMapWithEmptyFile (line 639) | async sourceMapWithEmptyFile({ esbuild, testDir }) { method sourceMapWithDisabledModule (line 663) | async sourceMapWithDisabledModule({ esbuild, testDir }) { method resolveExtensionOrder (line 689) | async resolveExtensionOrder({ esbuild, testDir }) { method defineObject (line 707) | async defineObject({ esbuild, testDir }) { method inject (line 727) | async inject({ esbuild, testDir }) { method minifyWithoutInject (line 743) | async minifyWithoutInject({ esbuild, testDir }) { method minifyWithInject (line 758) | async minifyWithInject({ esbuild, testDir }) { method mainFields (line 775) | async mainFields({ esbuild, testDir }) { method requireAbsolutePath (line 798) | async requireAbsolutePath({ esbuild, testDir }) { method buildLoaderStdinBase64 (line 816) | async buildLoaderStdinBase64({ esbuild }) { method fileLoader (line 838) | async fileLoader({ esbuild, testDir }) { method fileLoaderEntryHash (line 857) | async fileLoaderEntryHash({ esbuild, testDir }) { method fileLoaderEntryHashNoChange (line 891) | async fileLoaderEntryHashNoChange({ esbuild, testDir }) { method splittingPublicPath (line 928) | async splittingPublicPath({ esbuild, testDir }) { method publicPathHashing (line 977) | async publicPathHashing({ esbuild, testDir }) { method fileLoaderPublicPath (line 1014) | async fileLoaderPublicPath({ esbuild, testDir }) { method fileLoaderCSS (line 1034) | async fileLoaderCSS({ esbuild, testDir }) { method fileLoaderWithAssetPath (line 1055) | async fileLoaderWithAssetPath({ esbuild, testDir }) { method fileLoaderWithAssetPathAndPublicPath (line 1077) | async fileLoaderWithAssetPathAndPublicPath({ esbuild, testDir }) { method fileLoaderBinaryVsText (line 1100) | async fileLoaderBinaryVsText({ esbuild, testDir }) { method metafile (line 1131) | async metafile({ esbuild, testDir }) { method metafileSplitting (line 1199) | async metafileSplitting({ esbuild, testDir }) { method metafileSplittingPublicPath (line 1274) | async metafileSplittingPublicPath({ esbuild, testDir }) { method metafileSplittingDoubleDynamicImport (line 1350) | async metafileSplittingDoubleDynamicImport({ esbuild, testDir }) { method metafileCJSInFormatIIFE (line 1452) | async metafileCJSInFormatIIFE({ esbuild, testDir }) { method metafileCJSInFormatCJS (line 1470) | async metafileCJSInFormatCJS({ esbuild, testDir }) { method metafileCJSInFormatESM (line 1489) | async metafileCJSInFormatESM({ esbuild, testDir }) { method metafileESMInFormatIIFE (line 1507) | async metafileESMInFormatIIFE({ esbuild, testDir }) { method metafileESMInFormatCJS (line 1525) | async metafileESMInFormatCJS({ esbuild, testDir }) { method metafileESMInFormatESM (line 1543) | async metafileESMInFormatESM({ esbuild, testDir }) { method metafileNestedExportNames (line 1561) | async metafileNestedExportNames({ esbuild, testDir }) { method metafileCSS (line 1608) | async metafileCSS({ esbuild, testDir }) { method metafileLoaderFileMultipleEntry (line 1672) | async metafileLoaderFileMultipleEntry({ esbuild, testDir }) { method writeFalse (line 1704) | async writeFalse({ esbuild, testDir }) { method allowOverwrite (line 1743) | async allowOverwrite({ esbuild, testDir }) { method splittingRelativeSameDir (line 1775) | async splittingRelativeSameDir({ esbuild, testDir }) { method splittingRelativeNestedDir (line 1830) | async splittingRelativeNestedDir({ esbuild, testDir }) { method splittingWithChunkPath (line 1887) | async splittingWithChunkPath({ esbuild, testDir }) { method splittingWithEntryHashes (line 1945) | async splittingWithEntryHashes({ esbuild, testDir }) { method splittingWithChunkPathAndCrossChunkImportsIssue899 (line 2006) | async splittingWithChunkPathAndCrossChunkImportsIssue899({ esbuild, test... method splittingStaticImportHashChange (line 2074) | async splittingStaticImportHashChange({ esbuild, testDir }) { method splittingDynamicImportHashChangeIssue1076 (line 2116) | async splittingDynamicImportHashChangeIssue1076({ esbuild, testDir }) { method stdinStdoutBundle (line 2158) | async stdinStdoutBundle({ esbuild, testDir }) { method stdinOutfileBundle (line 2184) | async stdinOutfileBundle({ esbuild, testDir }) { method stdinAndEntryBundle (line 2205) | async stdinAndEntryBundle({ esbuild, testDir }) { method forceTsConfig (line 2236) | async forceTsConfig({ esbuild, testDir }) { method forceTsConfigRaw (line 2269) | async forceTsConfigRaw({ esbuild, testDir }) { method forceTsConfigRawStdin (line 2307) | async forceTsConfigRawStdin({ esbuild, testDir }) { method es5 (line 2336) | async es5({ esbuild, testDir }) { method outbaseImplicit (line 2364) | async outbaseImplicit({ esbuild, testDir }) { method outbaseRelPath (line 2387) | async outbaseRelPath({ esbuild, testDir }) { method outbaseAbsPath (line 2411) | async outbaseAbsPath({ esbuild, testDir }) { method bundleTreeShakingDefault (line 2432) | async bundleTreeShakingDefault({ esbuild }) { method bundleTreeShakingTrue (line 2447) | async bundleTreeShakingTrue({ esbuild }) { method bundleTreeShakingIgnoreAnnotations (line 2463) | async bundleTreeShakingIgnoreAnnotations({ esbuild }) { method externalWithWildcard (line 2484) | async externalWithWildcard({ esbuild }) { method externalPackages (line 2499) | async externalPackages({ esbuild, testDir }) { method errorInvalidExternalWithTwoWildcards (line 2531) | async errorInvalidExternalWithTwoWildcards({ esbuild }) { method jsBannerBuild (line 2547) | async jsBannerBuild({ esbuild, testDir }) { method jsFooterBuild (line 2559) | async jsFooterBuild({ esbuild, testDir }) { method jsBannerFooterBuild (line 2571) | async jsBannerFooterBuild({ esbuild, testDir }) { method cssBannerFooterBuild (line 2590) | async cssBannerFooterBuild({ esbuild, testDir }) { method buildRelativeIssue693 (line 2604) | async buildRelativeIssue693({ esbuild }) { method rebuildBasic (line 2617) | async rebuildBasic({ esbuild, testDir }) { method rebuildMerging (line 2654) | async rebuildMerging({ esbuild, testDir }) { method rebuildIndependent (line 2718) | async rebuildIndependent({ esbuild, testDir }) { method rebuildParallel (line 2782) | async rebuildParallel({ esbuild, testDir }) { method rebuildCancel (line 2830) | async rebuildCancel({ esbuild }) { method rapidRebuildCancel (line 2955) | async rapidRebuildCancel({ esbuild }) { method bundleAvoidTDZ (line 2996) | async bundleAvoidTDZ({ esbuild }) { method bundleTSAvoidTDZ (line 3016) | async bundleTSAvoidTDZ({ esbuild }) { method bundleTSDecoratorAvoidTDZ (line 3037) | async bundleTSDecoratorAvoidTDZ({ testDir, esbuild }) { method automaticEntryPointOutputPathsWithDot (line 3070) | async automaticEntryPointOutputPathsWithDot({ esbuild, testDir }) { method customEntryPointOutputPathsWithDot (line 3086) | async customEntryPointOutputPathsWithDot({ esbuild, testDir }) { method customEntryPointOutputPathsRel (line 3104) | async customEntryPointOutputPathsRel({ esbuild, testDir }) { method customEntryPointOutputPathsAbs (line 3125) | async customEntryPointOutputPathsAbs({ esbuild, testDir }) { method customEntryPointOutputPathsDuplicates (line 3146) | async customEntryPointOutputPathsDuplicates({ esbuild, testDir }) { method nodeColonPrefixImport (line 3164) | async nodeColonPrefixImport({ esbuild }) { method nodeColonPrefixRequire (line 3187) | async nodeColonPrefixRequire({ esbuild }) { method nodeColonPrefixImportTurnedIntoRequire (line 3210) | async nodeColonPrefixImportTurnedIntoRequire({ esbuild }) { method zipFile (line 3233) | async zipFile({ esbuild, testDir }) { method yarnPnP_pnp_data_json (line 3322) | async yarnPnP_pnp_data_json({ esbuild, testDir }) { method yarnPnP_pnp_js_object_literal (line 3377) | async yarnPnP_pnp_js_object_literal({ esbuild, testDir }) { method yarnPnP_pnp_cjs_JSON_parse_string_literal (line 3444) | async yarnPnP_pnp_cjs_JSON_parse_string_literal({ esbuild, testDir }) { method yarnPnP_pnp_cjs_JSON_parse_identifier (line 3511) | async yarnPnP_pnp_cjs_JSON_parse_identifier({ esbuild, testDir }) { method yarnPnP_ignoreNestedManifests (line 3580) | async yarnPnP_ignoreNestedManifests({ esbuild, testDir }) { method yarnPnP_tsconfig (line 3654) | async yarnPnP_tsconfig({ esbuild, testDir }) { method yarnPnP_indexJs (line 3711) | async yarnPnP_indexJs({ esbuild, testDir }) { method yarnPnP_depOfVirtual (line 3767) | async yarnPnP_depOfVirtual({ esbuild, testDir }) { method yarnPnP_stackOverflow (line 3847) | async yarnPnP_stackOverflow({ esbuild, testDir }) { function fetch (line 3903) | function fetch(host, port, path, { headers, method = 'GET' } = {}) { function fetchHTTPS (line 3923) | function fetchHTTPS(host, port, path, { certfile }) { function partialFetch (line 3949) | function partialFetch(host, port, path, { headers, method = 'GET' } = {}) { method setup (line 4034) | setup(build) { method watchTwice (line 4042) | async watchTwice({ esbuild }) { method watchEditSession (line 4060) | async watchEditSession({ esbuild, testDir }) { method watchWriteFalse (line 4154) | async watchWriteFalse({ esbuild, testDir }) { method watchMetafile (line 4205) | async watchMetafile({ esbuild, testDir }) { method watchMangleCache (line 4247) | async watchMangleCache({ esbuild, testDir }) { method watchNodePaths (line 4289) | async watchNodePaths({ esbuild, testDir }) { method watchDelay (line 4336) | async watchDelay({ esbuild, testDir }) { method serveTwice (line 4389) | async serveTwice({ esbuild }) { method serveWatch (line 4407) | async serveWatch({ esbuild, testDir }) { method serveBasic (line 4451) | async serveBasic({ esbuild, testDir }) { method serveBasicHTTPS (line 4505) | async serveBasicHTTPS({ esbuild, testDir }) { method serveSlashRedirect (line 4563) | async serveSlashRedirect({ esbuild, testDir }) { method serveOutfile (line 4642) | async serveOutfile({ esbuild, testDir }) { method serveWithServedir (line 4687) | async serveWithServedir({ esbuild, testDir }) { method serveWithServedirAndSiblingOutputDir (line 4749) | async serveWithServedirAndSiblingOutputDir({ esbuild, testDir }) { method serveWithServedirAndParentOutputDir (line 4766) | async serveWithServedirAndParentOutputDir({ esbuild, testDir }) { method serveWithServedirAndOutputDir (line 4784) | async serveWithServedirAndOutputDir({ esbuild, testDir }) { method serveWithServedirNoEntryPoints (line 4860) | async serveWithServedirNoEntryPoints({ esbuild, testDir }) { method serveRange (line 4915) | async serveRange({ esbuild, testDir }) { method serveWatchCopyLoaderWithEntryPoint (line 4955) | async serveWatchCopyLoaderWithEntryPoint({ esbuild, testDir }) { method serveWithoutServedirWatchLiveReload (line 4999) | async serveWithoutServedirWatchLiveReload({ esbuild, testDir }) { method serveWithServedirWatchLiveReload (line 5070) | async serveWithServedirWatchLiveReload({ esbuild, testDir }) { method serveWithoutServedirWatchLiveReloadPublicPath (line 5142) | async serveWithoutServedirWatchLiveReloadPublicPath({ esbuild, testDir }) { method serveWithServedirWatchLiveReloadPublicPath (line 5214) | async serveWithServedirWatchLiveReloadPublicPath({ esbuild, testDir }) { method serveWithFallback (line 5287) | async serveWithFallback({ esbuild, testDir }) { method serveHostCheckIPv4 (line 5333) | async serveHostCheckIPv4({ esbuild, testDir }) { method serveHostCheckIPv6 (line 5397) | async serveHostCheckIPv6({ esbuild, testDir }) { method serveCORSNoOrigins (line 5462) | async serveCORSNoOrigins({ esbuild, testDir }) { method serveCORSAllOrigins (line 5491) | async serveCORSAllOrigins({ esbuild, testDir }) { method serveCORSSpecificOrigins (line 5520) | async serveCORSSpecificOrigins({ esbuild, testDir }) { function futureSyntax (line 5578) | async function futureSyntax(esbuild, js, targetBelow, targetAbove) { method transformWithNonString (line 5590) | async transformWithNonString({ esbuild }) { method version (line 5599) | async version({ esbuild }) { method ignoreUndefinedOptions (line 5604) | async ignoreUndefinedOptions({ esbuild }) { method throwOnBadOptions (line 5609) | async throwOnBadOptions({ esbuild }) { method transformLoaderBase64 (line 5621) | async transformLoaderBase64({ esbuild }) { method avoidTDZ (line 5631) | async avoidTDZ({ esbuild }) { method tsAvoidTDZ (line 5644) | async tsAvoidTDZ({ esbuild }) { method tsAvoidTDZThis (line 5663) | async tsAvoidTDZThis({ esbuild }) { method tsDecoratorAvoidTDZ (line 5681) | async tsDecoratorAvoidTDZ({ esbuild }) { method mangleQuotedTransform (line 5710) | async mangleQuotedTransform({ esbuild }) { method mangleCacheTransform (line 5718) | async mangleCacheTransform({ esbuild }) { method jsBannerTransform (line 5727) | async jsBannerTransform({ esbuild }) { method jsFooterTransform (line 5736) | async jsFooterTransform({ esbuild }) { method jsBannerFooterTransform (line 5746) | async jsBannerFooterTransform({ esbuild }) { method cssBannerFooterTransform (line 5758) | async cssBannerFooterTransform({ esbuild }) { method transformDirectEval (line 5771) | async transformDirectEval({ esbuild }) { method tsconfigRawImportsNotUsedAsValuesDefault (line 5781) | async tsconfigRawImportsNotUsedAsValuesDefault({ esbuild }) { method tsconfigRawImportsNotUsedAsValuesRemove (line 5791) | async tsconfigRawImportsNotUsedAsValuesRemove({ esbuild }) { method tsconfigRawImportsNotUsedAsValuesPreserve (line 5803) | async tsconfigRawImportsNotUsedAsValuesPreserve({ esbuild }) { method tsconfigRawImportsNotUsedAsValuesError (line 5815) | async tsconfigRawImportsNotUsedAsValuesError({ esbuild }) { method tsconfigRawImportsNotUsedAsValuesRemoveJS (line 5827) | async tsconfigRawImportsNotUsedAsValuesRemoveJS({ esbuild }) { method tsconfigRawImportsNotUsedAsValuesPreserveJS (line 5838) | async tsconfigRawImportsNotUsedAsValuesPreserveJS({ esbuild }) { method tsconfigRawPreserveValueImportsDefault (line 5849) | async tsconfigRawPreserveValueImportsDefault({ esbuild }) { method tsconfigRawPreserveValueImportsFalse (line 5859) | async tsconfigRawPreserveValueImportsFalse({ esbuild }) { method tsconfigRawPreserveValueImportsTrue (line 5871) | async tsconfigRawPreserveValueImportsTrue({ esbuild }) { method tsconfigRawPreserveValueImportsTrueMinifyIdentifiers (line 5883) | async tsconfigRawPreserveValueImportsTrueMinifyIdentifiers({ esbuild }) { method tsconfigRawPreserveValueImportsTrueImportsNotUsedAsValuesRemove (line 5896) | async tsconfigRawPreserveValueImportsTrueImportsNotUsedAsValuesRemove({ ... method tsconfigRawCommentsInJSON (line 5909) | async tsconfigRawCommentsInJSON({ esbuild }) { method tsconfigRawUseDefineForClassFields (line 5922) | async tsconfigRawUseDefineForClassFields({ esbuild }) { method tsconfigRawAlwaysStrict (line 5944) | async tsconfigRawAlwaysStrict({ esbuild }) { method tsconfigRawTarget (line 5956) | async tsconfigRawTarget({ esbuild }) { method tsconfigRawExtends (line 5969) | async tsconfigRawExtends({ esbuild }) { method tsImplicitUseDefineForClassFields (line 5981) | async tsImplicitUseDefineForClassFields({ esbuild }) { method tsconfigRawJSX (line 6014) | async tsconfigRawJSX({ esbuild }) { method treeShakingDefault (line 6068) | async treeShakingDefault({ esbuild }) { method treeShakingFalse (line 6081) | async treeShakingFalse({ esbuild }) { method treeShakingTrue (line 6094) | async treeShakingTrue({ esbuild }) { method treeShakingDefaultIIFE (line 6108) | async treeShakingDefaultIIFE({ esbuild }) { method treeShakingFalseIIFE (line 6117) | async treeShakingFalseIIFE({ esbuild }) { method treeShakingTrueIIFE (line 6126) | async treeShakingTrueIIFE({ esbuild }) { method ignoreAnnotationsDefault (line 6135) | async ignoreAnnotationsDefault({ esbuild }) { method ignoreAnnotationsFalse (line 6143) | async ignoreAnnotationsFalse({ esbuild }) { method ignoreAnnotationsTrue (line 6152) | async ignoreAnnotationsTrue({ esbuild }) { method jsCharsetDefault (line 6161) | async jsCharsetDefault({ esbuild }) { method jsCharsetASCII (line 6166) | async jsCharsetASCII({ esbuild }) { method jsCharsetUTF8 (line 6171) | async jsCharsetUTF8({ esbuild }) { method cssCharsetDefault (line 6176) | async cssCharsetDefault({ esbuild }) { method cssCharsetASCII (line 6181) | async cssCharsetASCII({ esbuild }) { method cssCharsetUTF8 (line 6186) | async cssCharsetUTF8({ esbuild }) { method cssSyntaxErrorWarning (line 6191) | async cssSyntaxErrorWarning({ esbuild }) { method cssSyntaxErrorWarningOverride (line 6196) | async cssSyntaxErrorWarningOverride({ esbuild }) { method cssMinify (line 6205) | async cssMinify({ esbuild }) { method cssMinifyTargetES6 (line 6211) | async cssMinifyTargetES6({ esbuild }) { method cssMinifyTargetNode (line 6217) | async cssMinifyTargetNode({ esbuild }) { method cssMinifyTargetChrome8 (line 6223) | async cssMinifyTargetChrome8({ esbuild }) { method cssMinifyTargetChrome80 (line 6229) | async cssMinifyTargetChrome80({ esbuild }) { method cssNestingExpansionLimitWithoutIs (line 6234) | async cssNestingExpansionLimitWithoutIs({ esbuild }) { method cssNestingExpansionLimitWithIs (line 6245) | async cssNestingExpansionLimitWithIs({ esbuild }) { method cjs_require (line 6256) | async cjs_require({ esbuild }) { method cjs_exports (line 6261) | async cjs_exports({ esbuild }) { method es6_import (line 6266) | async es6_import({ esbuild }) { method es6_export (line 6271) | async es6_export({ esbuild }) { method es6_import_to_iife (line 6276) | async es6_import_to_iife({ esbuild }) { method es6_import_star_to_iife (line 6281) | async es6_import_star_to_iife({ esbuild }) { method es6_export_to_iife (line 6286) | async es6_export_to_iife({ esbuild }) { method es6_export_star_to_iife (line 6292) | async es6_export_star_to_iife({ esbuild }) { method es6_export_star_as_to_iife (line 6298) | async es6_export_star_as_to_iife({ esbuild }) { method es6_import_to_cjs (line 6304) | async es6_import_to_cjs({ esbuild }) { method es6_import_star_to_cjs (line 6309) | async es6_import_star_to_cjs({ esbuild }) { method es6_export_to_cjs (line 6314) | async es6_export_to_cjs({ esbuild }) { method es6_export_star_to_cjs (line 6321) | async es6_export_star_to_cjs({ esbuild }) { method es6_export_star_as_to_cjs (line 6328) | async es6_export_star_as_to_cjs({ esbuild }) { method es6_import_to_esm (line 6335) | async es6_import_to_esm({ esbuild }) { method es6_import_star_to_esm (line 6340) | async es6_import_star_to_esm({ esbuild }) { method es6_export_to_esm (line 6345) | async es6_export_to_esm({ esbuild }) { method es6_export_star_to_esm (line 6350) | async es6_export_star_to_esm({ esbuild }) { method es6_export_star_as_to_esm (line 6355) | async es6_export_star_as_to_esm({ esbuild }) { method iifeGlobalName (line 6360) | async iifeGlobalName({ esbuild }) { method iifeGlobalNameCompound (line 6368) | async iifeGlobalNameCompound({ esbuild }) { method iifeGlobalNameString (line 6376) | async iifeGlobalNameString({ esbuild }) { method iifeGlobalNameUnicodeEscape (line 6384) | async iifeGlobalNameUnicodeEscape({ esbuild }) { method iifeGlobalNameUnicodeNoEscape (line 6394) | async iifeGlobalNameUnicodeNoEscape({ esbuild }) { method iifeGlobalNameUnicodeEscapeNoLogicalAssignment (line 6404) | async iifeGlobalNameUnicodeEscapeNoLogicalAssignment({ esbuild }) { method iifeGlobalNameUnicodeNoEscapeNoLogicalAssignment (line 6416) | async iifeGlobalNameUnicodeNoEscapeNoLogicalAssignment({ esbuild }) { method iifeGlobalNameThis (line 6429) | async iifeGlobalNameThis({ esbuild }) { method iifeGlobalNameImportMeta (line 6438) | async iifeGlobalNameImportMeta({ esbuild }) { method jsx (line 6445) | async jsx({ esbuild }) { method jsxTransform (line 6450) | async jsxTransform({ esbuild }) { method jsxPreserve (line 6455) | async jsxPreserve({ esbuild }) { method jsxRuntimeAutomatic (line 6460) | async jsxRuntimeAutomatic({ esbuild }) { method jsxDev (line 6465) | async jsxDev({ esbuild }) { method jsxImportSource (line 6470) | async jsxImportSource({ esbuild }) { method jsxSideEffects (line 6475) | async jsxSideEffects({ esbuild }) { method ts (line 6480) | async ts({ esbuild }) { method tsx (line 6485) | async tsx({ esbuild }) { method minify (line 6490) | async minify({ esbuild }) { method keepConsole (line 6495) | async keepConsole({ esbuild }) { method dropConsole (line 6500) | async dropConsole({ esbuild }) { method keepDebugger (line 6554) | async keepDebugger({ esbuild }) { method dropDebugger (line 6559) | async dropDebugger({ esbuild }) { method defineProcessEnvNodeEnv (line 6564) | async defineProcessEnvNodeEnv({ esbuild }) { method defineBuiltInConstants (line 6586) | async defineBuiltInConstants({ esbuild }) { method defineArray (line 6592) | async defineArray({ esbuild }) { method defineThis (line 6598) | async defineThis({ esbuild }) { method defineImportMetaESM (line 6606) | async defineImportMetaESM({ esbuild }) { method defineImportMetaIIFE (line 6614) | async defineImportMetaIIFE({ esbuild }) { method defineIdentifierVsStringWarningIssue466Transform (line 6619) | async defineIdentifierVsStringWarningIssue466Transform({ esbuild }) { method defineIdentifierVsStringWarningIssue466Build (line 6633) | async defineIdentifierVsStringWarningIssue466Build({ esbuild }) { method defineQuotedPropertyNameTransform (line 6647) | async defineQuotedPropertyNameTransform({ esbuild }) { method defineQuotedPropertyNameBuild (line 6677) | async defineQuotedPropertyNameBuild({ esbuild }) { method defineBigInt (line 6686) | async defineBigInt({ esbuild }) { method json (line 6691) | async json({ esbuild }) { method jsonMinified (line 6696) | async jsonMinified({ esbuild }) { method jsonESM (line 6703) | async jsonESM({ esbuild }) { method jsonInvalidIdentifierStart (line 6708) | async jsonInvalidIdentifierStart({ esbuild }) { method text (line 6714) | async text({ esbuild }) { method textESM (line 6719) | async textESM({ esbuild }) { method base64 (line 6724) | async base64({ esbuild }) { method dataurl (line 6729) | async dataurl({ esbuild }) { method sourceMapTrueWithName (line 6740) | async sourceMapTrueWithName({ esbuild }) { method sourceMapLinkedWithName (line 6746) | async sourceMapLinkedWithName({ esbuild }) { method sourceMapExternalWithName (line 6755) | async sourceMapExternalWithName({ esbuild }) { method sourceMapInlineWithName (line 6761) | async sourceMapInlineWithName({ esbuild }) { method sourceMapBothWithName (line 6769) | async sourceMapBothWithName({ esbuild }) { method sourceMapRoot (line 6777) | async sourceMapRoot({ esbuild }) { method numericLiteralPrinting (line 6783) | async numericLiteralPrinting({ esbuild }) { method tryCatchScopeMerge (line 6799) | async tryCatchScopeMerge({ esbuild }) { method nestedFunctionHoist (line 6820) | async nestedFunctionHoist({ esbuild }) { method nestedFunctionHoistBefore (line 6838) | async nestedFunctionHoistBefore({ esbuild }) { method nestedFunctionHoistAfter (line 6857) | async nestedFunctionHoistAfter({ esbuild }) { method nestedFunctionShadowBefore (line 6876) | async nestedFunctionShadowBefore({ esbuild }) { method nestedFunctionShadowAfter (line 6895) | async nestedFunctionShadowAfter({ esbuild }) { method sourceMapControlCharacterEscapes (line 6914) | async sourceMapControlCharacterEscapes({ esbuild }) { method transformLegalCommentsJS (line 6927) | async transformLegalCommentsJS({ esbuild }) { method transformLegalCommentsCSS (line 6948) | async transformLegalCommentsCSS({ esbuild }) { method tsDecorators (line 6969) | async tsDecorators({ esbuild }) { method pureCallPrint (line 7010) | async pureCallPrint({ esbuild }) { method pureCallConsoleLog (line 7018) | async pureCallConsoleLog({ esbuild }) { method pureImportMeta (line 7026) | async pureImportMeta({ esbuild }) { method nameCollisionEvalRename (line 7034) | async nameCollisionEvalRename({ esbuild }) { method nameCollisionEvalMinify (line 7050) | async nameCollisionEvalMinify({ esbuild }) { method singleUseExpressionSubstitution (line 7066) | async singleUseExpressionSubstitution({ esbuild }) { method platformNode (line 7111) | async platformNode({ esbuild }) { method dynamicImportString (line 7121) | async dynamicImportString({ esbuild }) { method dynamicImportStringES6 (line 7126) | async dynamicImportStringES6({ esbuild }) { method dynamicImportStringES5 (line 7132) | async dynamicImportStringES5({ esbuild }) { method dynamicImportStringES5Minify (line 7138) | async dynamicImportStringES5Minify({ esbuild }) { method dynamicImportStringNode12_19 (line 7144) | async dynamicImportStringNode12_19({ esbuild }) { method dynamicImportStringNode12_20 (line 7150) | async dynamicImportStringNode12_20({ esbuild }) { method dynamicImportStringNode13 (line 7155) | async dynamicImportStringNode13({ esbuild }) { method dynamicImportStringNode13_1 (line 7161) | async dynamicImportStringNode13_1({ esbuild }) { method dynamicImportStringNode13_2 (line 7167) | async dynamicImportStringNode13_2({ esbuild }) { method dynamicImportExpression (line 7172) | async dynamicImportExpression({ esbuild }) { method dynamicImportExpressionES6 (line 7177) | async dynamicImportExpressionES6({ esbuild }) { method dynamicImportExpressionES5 (line 7183) | async dynamicImportExpressionES5({ esbuild }) { method dynamicImportExpressionES5Minify (line 7189) | async dynamicImportExpressionES5Minify({ esbuild }) { method classStaticBlocks (line 7195) | async classStaticBlocks({ esbuild }) { method keepNamesUnsupported (line 7201) | async keepNamesUnsupported({ esbuild }) { method inlineScript (line 7221) | async inlineScript({ esbuild }) { method inlineStyle (line 7249) | async inlineStyle({ esbuild }) { method typeofEqualsUndefinedTarget (line 7278) | async typeofEqualsUndefinedTarget({ esbuild }) { method caseInsensitiveTarget (line 7287) | async caseInsensitiveTarget({ esbuild }) { method propertyAccessBugWorkaroundForWebKit (line 7292) | async propertyAccessBugWorkaroundForWebKit({ esbuild }) { method multipleEngineTargets (line 7319) | async multipleEngineTargets({ esbuild }) { method multipleEngineTargetsNotSupported (line 7335) | async multipleEngineTargetsNotSupported({ esbuild }) { method supported (line 7345) | async supported({ esbuild }) { method regExpFeatures (line 7383) | async regExpFeatures({ esbuild }) { function registerClassPrivateTests (line 7428) | function registerClassPrivateTests(target) { method formatMessages (line 7503) | async formatMessages({ esbuild }) { method analyzeMetafile (line 7517) | async analyzeMetafile({ esbuild }) { method defaultExport (line 7626) | async defaultExport({ esbuild }) { method buildSync (line 7633) | async buildSync({ esbuild, testDir }) { method buildSyncOutputFiles (line 7643) | async buildSyncOutputFiles({ esbuild, testDir }) { method transformSyncJSMap (line 7657) | async transformSyncJSMap({ esbuild }) { method transformSyncJSMapNoContent (line 7670) | async transformSyncJSMapNoContent({ esbuild }) { method transformSyncCSS (line 7682) | async transformSyncCSS({ esbuild }) { method transformSyncWithNonString (line 7688) | async transformSyncWithNonString({ esbuild }) { method transformSync100x (line 7697) | async transformSync100x({ esbuild }) { method buildSyncThrow (line 7704) | async buildSyncThrow({ esbuild, testDir }) { method transformThrow (line 7723) | async transformThrow({ esbuild }) { method formatMessagesSync (line 7735) | async formatMessagesSync({ esbuild }) { method analyzeMetafileSync (line 7747) | async analyzeMetafileSync({ esbuild }) { method testIncrementalChildProcessExit (line 7797) | async testIncrementalChildProcessExit({ testDir, esbuild }) { method testWatchStdoutChildProcess (line 7841) | async testWatchStdoutChildProcess({ testDir, esbuild }) { method startStop (line 7944) | async startStop({ esbuild }) { function assertSourceMap (line 7963) | async function assertSourceMap(jsSourceMap, source) { function main (line 7971) | async function main() { FILE: scripts/node-unref-tests.js function tests (line 9) | async function tests() { function runTests (line 73) | function runTests() { function startChildProcess (line 83) | function startChildProcess() { FILE: scripts/parse-ts-files.js function walkDir (line 11) | function walkDir(root, cb) { FILE: scripts/plugin-tests.js function fetch (line 16) | function fetch(host, port, path) { function fetchUntilSuccessOrTimeout (line 36) | function fetchUntilSuccessOrTimeout(host, port, path) { method noPluginsWithBuildSync (line 62) | async noPluginsWithBuildSync({ esbuild }) { method emptyArray (line 80) | async emptyArray({ esbuild, testDir }) { method emptyArrayWithBuildSync (line 95) | async emptyArrayWithBuildSync({ esbuild, testDir }) { method invalidRegExp (line 110) | async invalidRegExp({ esbuild }) { method caseInsensitiveRegExp (line 148) | async caseInsensitiveRegExp({ esbuild, testDir }) { method pluginMissingName (line 190) | async pluginMissingName({ esbuild }) { method pluginMissingSetup (line 209) | async pluginMissingSetup({ esbuild }) { method badPluginProperty (line 228) | async badPluginProperty({ esbuild }) { method badPluginOnResolveProperty (line 249) | async badPluginOnResolveProperty({ esbuild }) { method badPluginOnLoadProperty (line 307) | async badPluginOnLoadProperty({ esbuild }) { method modifyInitialOptions (line 371) | async modifyInitialOptions({ esbuild, testDir }) { method modifyInitialOptionsAsync (line 391) | async modifyInitialOptionsAsync({ esbuild, testDir }) { method basicLoader (line 412) | async basicLoader({ esbuild, testDir }) { method basicResolver (line 440) | async basicResolver({ esbuild, testDir }) { method fibonacciResolverMemoized (line 468) | async fibonacciResolverMemoized({ esbuild, testDir }) { method fibonacciResolverNotMemoized (line 501) | async fibonacciResolverNotMemoized({ esbuild, testDir }) { method resolversCalledInSequence (line 534) | async resolversCalledInSequence({ esbuild, testDir }) { method loadersCalledInSequence (line 589) | async loadersCalledInSequence({ esbuild, testDir }) { method httpRelative (line 644) | async httpRelative({ esbuild, testDir }) { method rewriteExternalWithNamespace (line 680) | async rewriteExternalWithNamespace({ esbuild, testDir }) { method rewriteExternalWithoutNamespace (line 705) | async rewriteExternalWithoutNamespace({ esbuild, testDir }) { method rewriteExternalWithFileNamespace (line 730) | async rewriteExternalWithFileNamespace({ esbuild, testDir }) { method resolveDirInFileModule (line 765) | async resolveDirInFileModule({ esbuild, testDir }) { method resolveWithSideEffectsFalse (line 800) | async resolveWithSideEffectsFalse({ esbuild, testDir }) { method noResolveDirInFileModule (line 874) | async noResolveDirInFileModule({ esbuild, testDir }) { method resolveDirInVirtualModule (line 909) | async resolveDirInVirtualModule({ esbuild, testDir }) { method noResolveDirInVirtualModule (line 940) | async noResolveDirInVirtualModule({ esbuild, testDir }) { method webAssembly (line 981) | async webAssembly({ esbuild, testDir }) { method virtualEntryPoints (line 1024) | async virtualEntryPoints({ esbuild, testDir }) { method entryPointFileNamespace (line 1054) | async entryPointFileNamespace({ esbuild, testDir }) { method stdinImporter (line 1073) | async stdinImporter({ esbuild, testDir }) { method stdinImporterResolveDir (line 1103) | async stdinImporterResolveDir({ esbuild, testDir }) { method stdinAbsoluteImporterResolveDir (line 1134) | async stdinAbsoluteImporterResolveDir({ esbuild, testDir }) { method stdinRelative (line 1165) | async stdinRelative({ esbuild, testDir }) { method stdinRelativeResolveDir (line 1194) | async stdinRelativeResolveDir({ esbuild, testDir }) { method externalRequire (line 1224) | async externalRequire({ esbuild, testDir }) { method newlineInPath (line 1261) | async newlineInPath({ esbuild }) { method newlineInNamespace (line 1288) | async newlineInNamespace({ esbuild }) { method transformUndefinedDetailForError (line 1315) | async transformUndefinedDetailForError({ esbuild }) { method transformUndefinedDetailForWarning (line 1340) | async transformUndefinedDetailForWarning({ esbuild }) { method buildUndefinedDetailForError (line 1365) | async buildUndefinedDetailForError({ esbuild }) { method buildUndefinedDetailForWarning (line 1394) | async buildUndefinedDetailForWarning({ esbuild }) { method specificDetailForOnResolvePluginThrowError (line 1423) | async specificDetailForOnResolvePluginThrowError({ esbuild }) { method specificDetailForOnLoadPluginThrowError (line 1449) | async specificDetailForOnLoadPluginThrowError({ esbuild }) { method specificDetailForOnResolvePluginReturnError (line 1476) | async specificDetailForOnResolvePluginReturnError({ esbuild }) { method specificDetailForOnResolvePluginReturnWarning (line 1552) | async specificDetailForOnResolvePluginReturnWarning({ esbuild }) { method specificDetailForOnLoadPluginReturnError (line 1625) | async specificDetailForOnLoadPluginReturnError({ esbuild }) { method specificDetailForOnLoadPluginReturnWarning (line 1702) | async specificDetailForOnLoadPluginReturnWarning({ esbuild }) { method pluginDataResolveToLoad (line 1774) | async pluginDataResolveToLoad({ esbuild }) { method pluginDataResolveToLoadNested (line 1797) | async pluginDataResolveToLoadNested({ esbuild }) { method pluginDataLoadToResolve (line 1826) | async pluginDataLoadToResolve({ esbuild }) { method resolveKindEntryPoint (line 1851) | async resolveKindEntryPoint({ esbuild }) { method resolveKindImportStmt (line 1873) | async resolveKindImportStmt({ esbuild }) { method resolveKindRequireCall (line 1899) | async resolveKindRequireCall({ esbuild }) { method resolveKindDynamicImport (line 1925) | async resolveKindDynamicImport({ esbuild }) { method resolveKindRequireResolve (line 1951) | async resolveKindRequireResolve({ esbuild }) { method resolveKindAtImport (line 1978) | async resolveKindAtImport({ esbuild }) { method resolveKindComposesFrom (line 2004) | async resolveKindComposesFrom({ esbuild }) { method resolveKindURLToken (line 2030) | async resolveKindURLToken({ esbuild }) { method warnIfUnusedNoWarning (line 2056) | async warnIfUnusedNoWarning({ esbuild }) { method onResolvePreserveOriginalEntryPointNameIssue945 (line 2089) | async onResolvePreserveOriginalEntryPointNameIssue945({ esbuild, testDir... method dynamicImportDuplicateChunkIssue1099 (line 2110) | async dynamicImportDuplicateChunkIssue1099({ esbuild, testDir }) { method fileLoaderCustomNamespaceIssue1404 (line 2144) | async fileLoaderCustomNamespaceIssue1404({ esbuild, testDir }) { method esbuildProperty (line 2177) | async esbuildProperty({ esbuild }) { method onResolveSuffixWithoutPath (line 2194) | async onResolveSuffixWithoutPath({ esbuild, testDir }) { method onResolveInvalidPathSuffix (line 2213) | async onResolveInvalidPathSuffix({ esbuild }) { method onResolveWithInternalOnLoadAndQuerySuffix (line 2232) | async onResolveWithInternalOnLoadAndQuerySuffix({ testDir, esbuild }) { method onLoadWithInternalOnResolveAndQuerySuffix (line 2287) | async onLoadWithInternalOnResolveAndQuerySuffix({ testDir, esbuild }) { method externalSideEffectsFalse (line 2336) | async externalSideEffectsFalse({ esbuild }) { method callResolveTooEarlyError (line 2364) | async callResolveTooEarlyError({ esbuild }) { method callResolveTooLateError (line 2382) | async callResolveTooLateError({ esbuild }) { method callResolveBadKindError (line 2402) | async callResolveBadKindError({ esbuild }) { method callResolveUserOptionsExternal (line 2423) | async callResolveUserOptionsExternal({ esbuild, testDir }) { method callResolveBuiltInHandler (line 2447) | async callResolveBuiltInHandler({ esbuild, testDir }) { method callResolvePluginHandler (line 2470) | async callResolvePluginHandler({ esbuild, testDir }) { method injectWithVirtualFile (line 2505) | async injectWithVirtualFile({ esbuild, testDir }) { method tsconfigRawAffectsVirtualFiles (line 2527) | async tsconfigRawAffectsVirtualFiles({ esbuild }) { method importAttributesOnResolve (line 2551) | async importAttributesOnResolve({ esbuild }) { method importAttributesOnLoad (line 2590) | async importAttributesOnLoad({ esbuild }) { method importAttributesOnLoadGlob (line 2627) | async importAttributesOnLoadGlob({ esbuild, testDir }) { method importAttributesResolve (line 2659) | async importAttributesResolve({ esbuild }) { method internalCrashIssue3634 (line 2703) | async internalCrashIssue3634({ esbuild }) { method sourceMapNamespacePrefixIssue4078 (line 2722) | async sourceMapNamespacePrefixIssue4078({ esbuild, testDir }) { method setup (line 2770) | setup(build) { method pluginWithWatchMode (line 2779) | async pluginWithWatchMode({ esbuild, testDir }) { method pluginWithWatchFiles (line 2836) | async pluginWithWatchFiles({ esbuild, testDir }) { method pluginWithWatchDir (line 2898) | async pluginWithWatchDir({ esbuild, testDir }) { method onStartCallback (line 2957) | async onStartCallback({ esbuild, testDir }) { method onStartCallbackWithDelay (line 3033) | async onStartCallbackWithDelay({ esbuild }) { method onEndCallback (line 3063) | async onEndCallback({ esbuild, testDir }) { method onEndCallbackMutateContents (line 3150) | async onEndCallbackMutateContents({ esbuild, testDir }) { method onStartOnEndWatchMode (line 3188) | async onStartOnEndWatchMode({ esbuild, testDir }) { method pluginServeWriteTrueOnEnd (line 3271) | async pluginServeWriteTrueOnEnd({ esbuild, testDir }) { method pluginServeWriteFalseOnEnd (line 3320) | async pluginServeWriteFalseOnEnd({ esbuild, testDir }) { method pluginOnDisposeAfterSuccessfulBuild (line 3372) | async pluginOnDisposeAfterSuccessfulBuild({ esbuild, testDir }) { method pluginOnDisposeAfterFailedBuild (line 3390) | async pluginOnDisposeAfterFailedBuild({ esbuild, testDir }) { method pluginOnDisposeWithUnusedContext (line 3414) | async pluginOnDisposeWithUnusedContext({ esbuild, testDir }) { method pluginOnDisposeWithRebuild (line 3433) | async pluginOnDisposeWithRebuild({ esbuild, testDir }) { function main (line 3465) | async function main() { FILE: scripts/register-test.js method fromMainThread (line 36) | async fromMainThread() { method fromChildThread (line 44) | async fromChildThread({ testDir }) { function main (line 75) | async function main() { FILE: scripts/terser-tests.js function main (line 14) | async function main() { function test_file (line 54) | async function test_file(esbuild, file) { function test_case (line 70) | async function test_case(esbuild, test) { function tmpl (line 206) | function tmpl() { function as_toplevel (line 210) | function as_toplevel(input, mangle_options) { function parse_test (line 224) | function parse_test(file) { function make_code (line 362) | function make_code(ast, options) { function evaluate (line 368) | function evaluate(code) { FILE: scripts/test-yarnpnp.js constant ESBUILD_BINARY_PATH (line 6) | const ESBUILD_BINARY_PATH = esbuild.buildBinary() function run (line 9) | function run(command) { function modTime (line 14) | function modTime(file) { function reinstallYarnIfNeeded (line 18) | function reinstallYarnIfNeeded() { function runTests (line 60) | function runTests() { FILE: scripts/test262-async.js function main (line 19) | async function main() { FILE: scripts/test262.js function findFiles (line 194) | function findFiles() { function checkTransformAPI (line 217) | async function checkTransformAPI({ esbuild, file, content, yaml }) { function checkBuildAPI (line 280) | async function checkBuildAPI({ esbuild, file, content, yaml }) { function main (line 403) | async function main() { function forEachInParallel (line 474) | function forEachInParallel(items, batchSize, callback) { function createHarnessForTest (line 523) | function createHarnessForTest(yaml) { function runCodeInHarness (line 537) | async function runCodeInHarness(yaml, code, importDir) { function printError (line 611) | function printError(file, error) { FILE: scripts/ts-type-tests.js function main (line 387) | async function main() { FILE: scripts/uglify-tests.js constant SKIP (line 10) | const SKIP = {}; function main (line 15) | async function main() { function test_file (line 56) | async function test_file(esbuild, file) { function test_case (line 79) | async function test_case(esbuild, test, basename) { function evaluate (line 334) | function evaluate(code) { function make_code (line 339) | function make_code(ast, options) { function parse_test (line 345) | function parse_test(file) { function run_code (line 458) | function run_code(code, toplevel) { function tmpl (line 465) | function tmpl() { function to_toplevel (line 469) | function to_toplevel(input, mangle_options) { FILE: scripts/verify-source-map.js function check (line 761) | async function check(kind, testCase, toSearch, { outfile, flags, entryPo... function checkNames (line 942) | async function checkNames(kind, testCase, { outfile, flags, entryPoints,... function main (line 1084) | async function main() { FILE: scripts/wasm-tests.js method serveTest (line 8) | serveTest({ testDir, esbuildPathWASM }) { method basicStdinTest (line 24) | basicStdinTest({ testDir, esbuildPathWASM }) { method stdinOutfileTest (line 41) | stdinOutfileTest({ testDir, esbuildPathWASM }) { method stdinStdoutUnicodeTest (line 60) | stdinStdoutUnicodeTest({ testDir, esbuildPathWASM }) { method stdinOutfileUnicodeTest (line 77) | stdinOutfileUnicodeTest({ testDir, esbuildPathWASM }) { method stdoutLargeTest (line 96) | stdoutLargeTest({ testDir, esbuildPathNative, esbuildPathWASM }) { method outfileLargeTest (line 123) | outfileLargeTest({ testDir, esbuildPathNative, esbuildPathWASM }) { method outfileNestedTest (line 156) | outfileNestedTest({ testDir, esbuildPathWASM }) { method metafileNestedTest (line 175) | metafileNestedTest({ testDir, esbuildPathWASM }) { method importRelativeFileTest (line 200) | importRelativeFileTest({ testDir, esbuildPathWASM }) { method importAbsoluteFileTest (line 220) | importAbsoluteFileTest({ testDir, esbuildPathWASM }) { method zipFile (line 239) | zipFile({ testDir, esbuildPathWASM }) { method nodePathsReaddirEINVAL (line 329) | nodePathsReaddirEINVAL({ testDir, esbuildPathWASM }) { function runTest (line 349) | function runTest({ testDir, esbuildPathNative, esbuildPathWASM, test }) { function main (line 360) | async function main() {