1
+ /* eslint-disable no-console */
1
2
const DEBUG = true
2
3
3
4
function logDebug ( ...messages : unknown [ ] ) : void {
@@ -235,7 +236,11 @@ function processCompleteProperty({ key, content }: { key?: string, content: stri
235
236
return null
236
237
237
238
const fullContent = content . join ( ' ' ) . trim ( )
238
- const valueContent = fullContent . substring ( fullContent . indexOf ( ':' ) + 1 ) . trim ( )
239
+ const colonIndex = fullContent . indexOf ( ':' )
240
+ if ( colonIndex === - 1 )
241
+ return null
242
+
243
+ const valueContent = fullContent . substring ( colonIndex + 1 ) . trim ( )
239
244
240
245
// Handle nested objects
241
246
if ( valueContent . startsWith ( '{' ) ) {
@@ -346,7 +351,7 @@ function inferElementType(element: string): string {
346
351
}
347
352
348
353
// Handle numbers
349
- if ( ! isNaN ( Number ( element ) ) ) {
354
+ if ( ! Number . isNaN ( Number ( element ) ) ) {
350
355
return element // Use literal type for numbers
351
356
}
352
357
@@ -389,7 +394,7 @@ function inferFunctionType(func: string): string {
389
394
if ( returnStatement . startsWith ( '\'' ) || returnStatement . startsWith ( '"' ) ) {
390
395
returnType = 'string'
391
396
}
392
- else if ( ! isNaN ( Number ( returnStatement ) ) ) {
397
+ else if ( ! Number . isNaN ( Number ( returnStatement ) ) ) {
393
398
returnType = 'number'
394
399
}
395
400
else if ( returnStatement === 'true' || returnStatement === 'false' ) {
@@ -451,92 +456,6 @@ function parseObjectLiteral(objStr: string): PropertyInfo[] {
451
456
return extractObjectProperties ( [ content ] )
452
457
}
453
458
454
- function processValue ( key : string , value : string ) : PropertyInfo {
455
- // Clean the value
456
- const cleanValue = value . replace ( / , \s * $ / , '' ) . trim ( )
457
-
458
- // Handle array literals
459
- if ( cleanValue . startsWith ( '[' ) ) {
460
- return {
461
- key,
462
- value : cleanValue ,
463
- type : inferArrayType ( cleanValue ) ,
464
- }
465
- }
466
-
467
- // Handle object literals
468
- if ( cleanValue . startsWith ( '{' ) ) {
469
- const props = parseObjectLiteral ( cleanValue )
470
- return {
471
- key,
472
- value : cleanValue ,
473
- type : formatObjectType ( props ) ,
474
- nested : props ,
475
- }
476
- }
477
-
478
- // Handle function literals
479
- if ( cleanValue . includes ( '=>' ) || cleanValue . startsWith ( 'function' ) ) {
480
- return {
481
- key,
482
- value : cleanValue ,
483
- type : inferFunctionType ( cleanValue ) ,
484
- }
485
- }
486
-
487
- // Handle string literals
488
- if ( cleanValue . startsWith ( '\'' ) || cleanValue . startsWith ( '"' ) ) {
489
- const stringContent = cleanValue . slice ( 1 , - 1 )
490
- return {
491
- key,
492
- value : cleanValue ,
493
- type : `'${ stringContent } '` ,
494
- }
495
- }
496
-
497
- // Handle number literals
498
- if ( ! isNaN ( Number ( cleanValue ) ) ) {
499
- return {
500
- key,
501
- value : cleanValue ,
502
- type : cleanValue , // Use literal type
503
- }
504
- }
505
-
506
- // Handle boolean literals
507
- if ( cleanValue === 'true' || cleanValue === 'false' ) {
508
- return {
509
- key,
510
- value : cleanValue ,
511
- type : cleanValue , // Use literal type
512
- }
513
- }
514
-
515
- // Handle known function references
516
- if ( cleanValue === 'console.log' ) {
517
- return {
518
- key,
519
- value : cleanValue ,
520
- type : '(...args: any[]) => void' ,
521
- }
522
- }
523
-
524
- // Handle potentially undefined references
525
- if ( cleanValue . includes ( '.' ) ) {
526
- return {
527
- key,
528
- value : cleanValue ,
529
- type : 'unknown' ,
530
- }
531
- }
532
-
533
- return {
534
- key,
535
- value : cleanValue ,
536
- type : 'any' ,
537
- }
538
- }
539
-
540
459
function processSimpleValue ( key : string , value : string ) : PropertyInfo {
541
460
// Clean the value first - remove trailing commas and whitespace
542
461
const cleanValue = value . replace ( / , \s * $ / , '' ) . trim ( )
@@ -552,7 +471,7 @@ function processSimpleValue(key: string, value: string): PropertyInfo {
552
471
}
553
472
554
473
// Numbers
555
- if ( ! isNaN ( Number ( cleanValue ) ) ) {
474
+ if ( ! Number . isNaN ( Number ( cleanValue ) ) ) {
556
475
return {
557
476
key,
558
477
value : cleanValue ,
@@ -586,53 +505,6 @@ function processSimpleValue(key: string, value: string): PropertyInfo {
586
505
}
587
506
}
588
507
589
- function processCompleteProperty ( { key, content } : { key ?: string , content : string [ ] } ) : PropertyInfo | null {
590
- if ( ! key )
591
- return null
592
-
593
- const fullContent = content . join ( ' ' ) . trim ( )
594
- const colonIndex = fullContent . indexOf ( ':' )
595
- if ( colonIndex === - 1 )
596
- return null
597
-
598
- const valueContent = fullContent . substring ( colonIndex + 1 ) . trim ( )
599
-
600
- // Handle nested objects
601
- if ( valueContent . startsWith ( '{' ) ) {
602
- const nestedContent = extractNestedContent ( valueContent , '{' , '}' )
603
- if ( nestedContent ) {
604
- const nestedProps = extractObjectProperties ( nestedContent . split ( ',' ) . map ( line => line . trim ( ) ) )
605
- return {
606
- key,
607
- value : valueContent ,
608
- type : formatNestedType ( nestedProps ) ,
609
- nested : nestedProps ,
610
- }
611
- }
612
- }
613
-
614
- // Handle arrays
615
- if ( valueContent . startsWith ( '[' ) ) {
616
- return {
617
- key,
618
- value : valueContent ,
619
- type : inferArrayType ( valueContent ) ,
620
- }
621
- }
622
-
623
- // Handle functions
624
- if ( isFunction ( valueContent ) ) {
625
- return {
626
- key,
627
- value : valueContent ,
628
- type : 'Function' ,
629
- }
630
- }
631
-
632
- // Handle other types
633
- return processSimpleValue ( key , valueContent )
634
- }
635
-
636
508
function formatNestedType ( properties : PropertyInfo [ ] ) : string {
637
509
if ( properties . length === 0 )
638
510
return 'Object'
@@ -717,7 +589,7 @@ function extractPropertyInfo(key: string, value: string, originalLines: string[]
717
589
}
718
590
719
591
// Handle numbers
720
- if ( ! isNaN ( Number ( value ) ) ) {
592
+ if ( ! Number . isNaN ( Number ( value ) ) ) {
721
593
return {
722
594
key,
723
595
value,
0 commit comments