github.com/evanw/esbuild/internal/js_ast.SLocal.IsExport (field)
28 uses
github.com/evanw/esbuild/internal/js_ast (current package)
js_ast.go#L1149: IsExport bool
github.com/evanw/esbuild/internal/bundler
linker.go#L1466: IsExport: true,
linker.go#L3199: if shouldStripExports && s.IsExport {
linker.go#L3202: clone.IsExport = false
linker.go#L3261: if before.Kind == after.Kind && before.IsExport == after.IsExport {
linker.go#L4398: if s.IsExport {
github.com/evanw/esbuild/internal/js_parser
js_parser.go#L3988: IsExport: opts.isExport,
js_parser.go#L5404: IsExport: opts.isExport,
js_parser.go#L5426: IsExport: opts.isExport,
js_parser.go#L6101: IsExport: true,
js_parser.go#L6641: if prevS, ok := prevStmt.Data.(*js_ast.SLocal); ok && prevS.Kind == js_ast.LocalVar && s.IsExport == prevS.IsExport {
js_parser.go#L6757: if prevS, ok := prevStmt.Data.(*js_ast.SLocal); ok && s.Kind == prevS.Kind && s.IsExport == prevS.IsExport {
js_parser.go#L6934: if s2, ok := prevStmt.Data.(*js_ast.SLocal); ok && s2.Kind == js_ast.LocalVar && !s2.IsExport {
js_parser.go#L6940: if s2, ok := prevStmt.Data.(*js_ast.SLocal); ok && s2.Kind == js_ast.LocalVar && !s2.IsExport {
js_parser.go#L8198: if s.IsExport && p.enclosingNamespaceArgRef != nil {
js_parser.go#L8679: if local.IsExport {
js_parser.go#L12001: if s.IsExport {
js_parser.go#L12009: if s.WasTSImportEquals && !s.IsExport {
js_parser_lower.go#L2182: IsExport: kind == classKindExportStmt,
ts_parser.go#L875: IsExport: opts.isExport,
ts_parser.go#L915: if local, ok := stmt.Data.(*js_ast.SLocal); ok && local.WasTSImportEquals && !local.IsExport {
ts_parser.go#L994: IsExport: isExport,
github.com/evanw/esbuild/internal/js_printer
js_printer.go#L2690: p.printDeclStmt(s.IsExport, "const", s.Decls)
js_printer.go#L2692: p.printDeclStmt(s.IsExport, "let", s.Decls)
js_printer.go#L2694: p.printDeclStmt(s.IsExport, "var", s.Decls)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |