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

19 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1114: type SImport struct {
		js_ast.go#L1191: func (*SImport) isStmt()        {}

	github.com/evanw/esbuild/internal/bundler
		linker.go#L994: 					crossChunkPrefixStmts = append(crossChunkPrefixStmts, js_ast.Stmt{Data: &js_ast.SImport{
		linker.go#L1000: 					crossChunkPrefixStmts = append(crossChunkPrefixStmts, js_ast.Stmt{Data: &js_ast.SImport{
		linker.go#L2888: 		if s, ok := part.Stmts[0].Data.(*js_ast.SImport); ok {
		linker.go#L3054: 		case *js_ast.SImport:
		linker.go#L3077: 							stmt.Data = &js_ast.SImport{
		linker.go#L3130: 					stmt.Data = &js_ast.SImport{
		linker.go#L3155: 				stmt.Data = &js_ast.SImport{
		linker.go#L3593: 						case *js_ast.SImport:
		linker.go#L4385: 			case *js_ast.SImport:

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L5737: 		stmt := js_ast.SImport{}
		js_parser.go#L7965: 	case *js_ast.SImport:
		js_parser.go#L8036: 					js_ast.Stmt{Loc: stmt.Loc, Data: &js_ast.SImport{
		js_parser.go#L11708: 		case *js_ast.SImport:
		js_parser.go#L12146: 		case *js_ast.SImport:
		js_parser.go#L12799: 			case *js_ast.SImport, *js_ast.SExportFrom, *js_ast.SExportStar:
		js_parser.go#L13031: 		Stmts: []js_ast.Stmt{{Data: &js_ast.SImport{

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2885: 	case *js_ast.SImport: