@@ -1779,29 +1779,29 @@ export interface A{
17791779 } ) ;
17801780 } ) ;
17811781
1782- it ( 'should get the range of an unknown type as undefined ' , async ( ) => {
1782+ it ( 'should get the range of an unknown type as wildcard ' , async ( ) => {
17831783 expect ( await getFieldRange ( 'fieldA: unknown' , { } ) )
1784- . toEqual ( { type : 'undefined ' } ) ;
1784+ . toEqual ( { type : 'wildcard ' } ) ;
17851785 } ) ;
17861786
17871787 it ( 'should get the range of an undefined type as undefined' , async ( ) => {
17881788 expect ( await getFieldRange ( 'fieldA: undefined' , { } ) )
17891789 . toEqual ( { type : 'undefined' } ) ;
17901790 } ) ;
17911791
1792- it ( 'should get the range of an any type as undefined ' , async ( ) => {
1792+ it ( 'should get the range of an any type as wildcard ' , async ( ) => {
17931793 expect ( await getFieldRange ( 'fieldA: any' , { } ) )
1794- . toEqual ( { type : 'undefined ' } ) ;
1794+ . toEqual ( { type : 'wildcard ' } ) ;
17951795 } ) ;
17961796
1797- it ( 'should get the range of an void type as undefined ' , async ( ) => {
1797+ it ( 'should get the range of an void type as wildcard ' , async ( ) => {
17981798 expect ( await getFieldRange ( 'fieldA: void' , { } ) )
1799- . toEqual ( { type : 'undefined ' } ) ;
1799+ . toEqual ( { type : 'wildcard ' } ) ;
18001800 } ) ;
18011801
1802- it ( 'should get the range of a null type as undefined ' , async ( ) => {
1802+ it ( 'should get the range of a null type as wildcard ' , async ( ) => {
18031803 expect ( await getFieldRange ( 'fieldA: null' , { } ) )
1804- . toEqual ( { type : 'undefined ' } ) ;
1804+ . toEqual ( { type : 'wildcard ' } ) ;
18051805 } ) ;
18061806
18071807 it ( 'should get the range of a union type of two raw types' , async ( ) => {
0 commit comments