github.com/evanw/esbuild/internal/js_ast.ScopeKind.StopsHoisting (method)

7 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1509: func (kind ScopeKind) StopsHoisting() bool {

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L1342: 	if !scope.Kind.StopsHoisting() {
		js_parser.go#L1450: 				if s.Kind.StopsHoisting() {
		js_parser.go#L6271: 	for !scope.Kind.StopsHoisting() {
		js_parser.go#L6360: 	for s := p.currentScope; s != nil && !s.Kind.StopsHoisting(); s = s.Parent {
		js_parser.go#L6555: 			if !p.currentScope.Kind.StopsHoisting() && p.symbols[int(s.Fn.Name.Ref.InnerIndex)].Kind == js_ast.SymbolHoistedFunction {
		js_parser.go#L8729: 	for !scope.Kind.StopsHoisting() {