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

10 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L1526: 	LabelRef        Ref

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L1024: 		LabelRef: js_ast.InvalidRef,
		js_parser.go#L6361: 		if s.Kind == js_ast.ScopeLabel && name == p.symbols[s.LabelRef.InnerIndex].OriginalName {
		js_parser.go#L6363: 			p.recordUsage(s.LabelRef)
		js_parser.go#L6364: 			ref = s.LabelRef
		js_parser.go#L8153: 		p.currentScope.LabelRef = ref
		js_parser.go#L12984: 		if scope.LabelRef != js_ast.InvalidRef {
		js_parser.go#L12985: 			symbol := &p.symbols[scope.LabelRef.InnerIndex]

	github.com/evanw/esbuild/internal/renamer
		renamer.go#L277: 	if scope.LabelRef != js_ast.InvalidRef {
		renamer.go#L278: 		symbol := &symbols[scope.LabelRef.InnerIndex]