Skip to content

Commit 79ef86f

Browse files
authored
Mark binder as pure to tree shake in typingsInstaller (#53107)
1 parent 9c7f43d commit 79ef86f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/binder.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ function initFlowNode<T extends FlowNode>(node: T) {
488488
return node;
489489
}
490490

491-
const binder = createBinder();
491+
const binder = /* @__PURE__ */ createBinder();
492492

493493
/** @internal */
494494
export function bindSourceFile(file: SourceFile, options: CompilerOptions) {

0 commit comments

Comments
 (0)