github.com/evanw/esbuild/internal/js_ast.Scope.Kind (field)

19 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1519: 	Kind      ScopeKind

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L1021: 		Kind:     kind,
		js_parser.go#L1045: 		if scope.Parent.Kind != js_ast.ScopeFunctionArgs {
		js_parser.go#L1261: 		(scope.Kind == js_ast.ScopeEntry || scope.Kind == js_ast.ScopeFunctionBody ||
		js_parser.go#L1342: 	if !scope.Kind.StopsHoisting() {
		js_parser.go#L1403: 				if s.Kind == js_ast.ScopeWith {
		js_parser.go#L1419: 						(existingSymbol.Kind.IsFunction() && (s.Kind == js_ast.ScopeEntry || s.Kind == js_ast.ScopeFunctionBody)) {
		js_parser.go#L1450: 				if s.Kind.StopsHoisting() {
		js_parser.go#L6271: 	for !scope.Kind.StopsHoisting() {
		js_parser.go#L6290: 	if order.loc != loc || order.scope.Kind != kind {
		js_parser.go#L6294: 			order.scope.Kind, order.loc.Start))
		js_parser.go#L6317: 		if s.Kind == js_ast.ScopeWith {
		js_parser.go#L6360: 	for s := p.currentScope; s != nil && !s.Kind.StopsHoisting(); s = s.Parent {
		js_parser.go#L6361: 		if s.Kind == js_ast.ScopeLabel && name == p.symbols[s.LabelRef.InnerIndex].OriginalName {
		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() {
		js_parser.go#L8905: 	if p.currentScope.Kind == js_ast.ScopeFunctionArgs {