Skip to content

Commit 2f95b81

Browse files
committed
fix: rename duplicated unique symbols identifiers
1 parent feeabe9 commit 2f95b81

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/match/preprocess.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,8 @@ type MatchSplittedConjunction<
230230
CollapseNegativesFromConjunction<Left, Splitted['not'], AST>
231231
>
232232

233-
declare const LeftIsAny: unique symbol
234-
export type LeftIsAny = typeof LeftIsAny
233+
declare const _LeftIsAny: unique symbol
234+
export type LeftIsAny = typeof _LeftIsAny
235235

236236
// TODO: extract inferredNodes too
237237
// TODO: change Acc default value accordingly

src/match/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ export type PickNode<T, AST> = [T] extends [any]
5555
? Extract<AST, { type: T }>
5656
: never
5757

58-
declare const AttrValueIsUnsafeToIntersect: unique symbol
59-
export type AttrValueIsUnsafeToIntersect = typeof AttrValueIsUnsafeToIntersect
58+
declare const _AttrValueIsUnsafeToIntersect: unique symbol
59+
export type AttrValueIsUnsafeToIntersect = typeof _AttrValueIsUnsafeToIntersect
6060

6161
export type TryToParseAttrValue<T> = T extends 'true'
6262
? true

0 commit comments

Comments
 (0)