@@ -210,7 +210,8 @@ export function generateImports(state: ProcessingState): string[] {
210
210
const processContent = ( content : string ) => {
211
211
// Track used values - now includes both function calls and references
212
212
const valueRegex = / \b ( [ a - z _ $ ] [ \w $ ] * ) \s * (?: [ ( , ; } ) \s ] | $ ) / gi
213
- let match
213
+ let match : any
214
+ // eslint-disable-next-line no-cond-assign
214
215
while ( ( match = valueRegex . exec ( content ) ) !== null ) {
215
216
const [ , value ] = match
216
217
if ( state . availableValues . has ( value ) ) {
@@ -913,14 +914,10 @@ export interface TypeReference {
913
914
* Extract complete function signature handling multi-line declarations
914
915
*/
915
916
export function extractFunctionSignature ( declaration : string ) : FunctionSignature {
916
- console . log ( '\n[Function Signature Extraction]' )
917
- console . log ( 'Input declaration:' , declaration )
918
-
919
917
// Check if the main function declaration is async
920
918
// Only match 'async' at the start of the declaration before 'function'
921
919
const isAsync = / ^ e x p o r t \s + a s y n c \s + f u n c t i o n / . test ( declaration )
922
920
|| / ^ a s y n c \s + f u n c t i o n / . test ( declaration )
923
- console . log ( 'Is async:' , isAsync )
924
921
925
922
// Remove export keyword and clean up whitespace
926
923
const cleanDeclaration = declaration
@@ -929,48 +926,39 @@ export function extractFunctionSignature(declaration: string): FunctionSignature
929
926
. replace ( / ^ f u n c t i o n \s + / , '' )
930
927
. trim ( )
931
928
932
- console . log ( 'Cleaned declaration:' , cleanDeclaration )
933
-
934
929
// Extract complete generic section with improved regex
935
930
const genericsRegex = / ^ ( [ a - z _ $ ] [ \w $ ] * ) \s * ( < [ ^ ( ] + > ) / i
936
931
const genericsMatch = cleanDeclaration . match ( genericsRegex )
937
- console . log ( 'Generics match:' , genericsMatch )
938
932
939
933
// Process generics if found
940
934
let generics = ''
941
935
let nameFromGenerics = ''
942
936
if ( genericsMatch ) {
943
937
nameFromGenerics = genericsMatch [ 1 ]
944
938
generics = genericsMatch [ 2 ]
945
- console . log ( 'Raw generics:' , generics )
946
939
}
947
940
948
941
// Remove generics for further parsing
949
942
const withoutGenerics = cleanDeclaration
950
943
. replace ( genericsRegex , nameFromGenerics )
951
- console . log ( 'Declaration without generics:' , withoutGenerics )
952
944
953
945
// Extract function name (use the one we got from generics match if available)
954
946
const name = nameFromGenerics || withoutGenerics . match ( / ^ ( [ ^ ( < \s ] + ) / ) ?. [ 1 ] || ''
955
- console . log ( 'Extracted name:' , name )
956
947
957
948
// Extract parameters section
958
949
const paramsMatch = withoutGenerics . match ( / \( ( [ \s \S ] * ?) \) (? = \s * : ) / )
959
950
let params = paramsMatch ? paramsMatch [ 1 ] . trim ( ) : ''
960
- console . log ( 'Raw parameters:' , params )
961
951
962
952
// Clean up parameters while preserving generic references
963
953
params = cleanParameters ( params )
964
- console . log ( 'Cleaned parameters:' , params )
965
954
966
955
// Extract return type
956
+ // eslint-disable-next-line regexp/no-super-linear-backtracking
967
957
const returnTypeMatch = withoutGenerics . match ( / \) \s * : \s * ( [ \s \S ] + ?) (? = \{ | $ ) / )
968
958
let returnType = returnTypeMatch ? returnTypeMatch [ 1 ] . trim ( ) : 'void'
969
- console . log ( 'Raw return type:' , returnType )
970
959
971
960
// Clean up return type
972
961
returnType = normalizeType ( returnType )
973
- console . log ( 'Normalized return type:' , returnType )
974
962
975
963
const result = {
976
964
name,
@@ -980,7 +968,6 @@ export function extractFunctionSignature(declaration: string): FunctionSignature
980
968
generics,
981
969
}
982
970
983
- console . log ( 'Final signature:' , result )
984
971
return result
985
972
}
986
973
@@ -992,9 +979,6 @@ export function processFunctionDeclaration(
992
979
usedTypes : Set < string > ,
993
980
isExported = true ,
994
981
) : string {
995
- console . log ( '\n[Process Function Declaration]' )
996
- console . log ( 'Input declaration:' , declaration )
997
-
998
982
const {
999
983
name,
1000
984
params,
@@ -1005,7 +989,6 @@ export function processFunctionDeclaration(
1005
989
1006
990
// Track all used types including generics
1007
991
trackUsedTypes ( `${ generics } ${ params } ${ returnType } ` , usedTypes )
1008
- console . log ( 'Tracked types:' , Array . from ( usedTypes ) )
1009
992
1010
993
// Build declaration string
1011
994
const parts = [
@@ -1029,7 +1012,6 @@ export function processFunctionDeclaration(
1029
1012
. replace ( / \s { 2 , } / g, ' ' )
1030
1013
. trim ( )
1031
1014
1032
- console . log ( 'Final declaration:' , result )
1033
1015
return result
1034
1016
}
1035
1017
@@ -1078,8 +1060,9 @@ function normalizeType(type: string): string {
1078
1060
export function trackUsedTypes ( content : string , usedTypes : Set < string > ) : void {
1079
1061
// Track type references in generics, parameters, and return types
1080
1062
const typePattern = / (?: t y p e o f \s + ) ? ( [ A - Z ] \w * (?: < [ ^ > ] + > ) ? ) | e x t e n d s \s + ( [ A - Z ] \w * (?: < [ ^ > ] + > ) ? ) / g
1081
- let match
1063
+ let match : any
1082
1064
1065
+ // eslint-disable-next-line no-cond-assign
1083
1066
while ( ( match = typePattern . exec ( content ) ) !== null ) {
1084
1067
const type = match [ 1 ] || match [ 2 ]
1085
1068
if ( type ) {
@@ -1090,9 +1073,9 @@ export function trackUsedTypes(content: string, usedTypes: Set<string>): void {
1090
1073
1091
1074
// Process generic parameters
1092
1075
if ( genericParams . length > 0 ) {
1093
- genericParams . forEach ( ( param ) => {
1076
+ genericParams . forEach ( ( param : any ) => {
1094
1077
const nestedTypes = param . split ( / [ , \s ] / )
1095
- nestedTypes . forEach ( ( t ) => {
1078
+ nestedTypes . forEach ( ( t : any ) => {
1096
1079
if ( / ^ [ A - Z ] / . test ( t ) )
1097
1080
usedTypes . add ( t )
1098
1081
} )
0 commit comments