github.com/evanw/esbuild/internal/js_ast.Scope.RecursiveSetStrictMode (method)

6 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1551: func (s *Scope) RecursiveSetStrictMode(kind StrictModeKind) {
		js_ast.go#L1555: 			child.RecursiveSetStrictMode(kind)

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L8968: 	p.currentScope.RecursiveSetStrictMode(js_ast.ImplicitStrictModeClass)
		js_parser.go#L12873: 		p.moduleScope.RecursiveSetStrictMode(js_ast.ImplicitStrictModeImport)
		js_parser.go#L12875: 		p.moduleScope.RecursiveSetStrictMode(js_ast.ImplicitStrictModeExport)
		js_parser.go#L12877: 		p.moduleScope.RecursiveSetStrictMode(js_ast.ImplicitStrictModeTopLevelAwait)