11import type { Mapping } from '@volar/language-core' ;
2- import { computed , Unstable } from 'alien-signals' ;
2+ import { computed , unstable } from 'alien-signals' ;
33import { generateScript } from '../codegen/script' ;
44import { generateTemplate } from '../codegen/template' ;
55import { parseScriptRanges } from '../parsers/scriptRanges' ;
@@ -95,7 +95,7 @@ function createTsx(
9595 ? parseScriptSetupRanges ( ts , _sfc . scriptSetup . ast , vueCompilerOptions . get ( ) )
9696 : undefined
9797 ) ;
98- const scriptSetupBindingNames = Unstable . computedSet (
98+ const scriptSetupBindingNames = unstable . computedSet (
9999 computed ( ( ) => {
100100 const newNames = new Set < string > ( ) ;
101101 const bindings = scriptSetupRanges . get ( ) ?. bindings ;
@@ -107,7 +107,7 @@ function createTsx(
107107 return newNames ;
108108 } )
109109 ) ;
110- const scriptSetupImportComponentNames = Unstable . computedSet (
110+ const scriptSetupImportComponentNames = unstable . computedSet (
111111 computed ( ( ) => {
112112 const newNames = new Set < string > ( ) ;
113113 const bindings = scriptSetupRanges . get ( ) ?. bindings ;
@@ -126,7 +126,7 @@ function createTsx(
126126 return newNames ;
127127 } )
128128 ) ;
129- const destructuredPropNames = Unstable . computedSet (
129+ const destructuredPropNames = unstable . computedSet (
130130 computed ( ( ) => {
131131 const newNames = new Set ( scriptSetupRanges . get ( ) ?. defineProps ?. destructured ) ;
132132 const rest = scriptSetupRanges . get ( ) ?. defineProps ?. destructuredRest ;
@@ -136,7 +136,7 @@ function createTsx(
136136 return newNames ;
137137 } )
138138 ) ;
139- const templateRefNames = Unstable . computedSet (
139+ const templateRefNames = unstable . computedSet (
140140 computed ( ( ) => {
141141 const newNames = new Set (
142142 scriptSetupRanges . get ( ) ?. useTemplateRef
0 commit comments