tsrun 0.1.23

A TypeScript interpreter designed for embedding in applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
//! Object built-in methods

use crate::error::JsError;
use crate::interpreter::Interpreter;
use crate::interpreter::builtins::proxy::{
    is_proxy, proxy_define_property, proxy_get_own_property_descriptor, proxy_get_prototype_of,
    proxy_is_extensible, proxy_own_keys, proxy_prevent_extensions, proxy_set_prototype_of,
};
use crate::prelude::{String, ToString, Vec, format, vec};
use crate::value::{
    CheapClone, ExoticObject, Guarded, JsObjectRef, JsString, JsValue, Property, PropertyKey,
};

/// Initialize Object.prototype with hasOwnProperty, toString, valueOf, isPrototypeOf methods.
/// The prototype object must already exist in `interp.object_prototype`.
pub fn init_object_prototype(interp: &mut Interpreter) {
    let proto = interp.object_prototype.clone();

    interp.register_method(&proto, "hasOwnProperty", object_has_own_property, 1);
    interp.register_method(&proto, "isPrototypeOf", object_is_prototype_of, 1);
    interp.register_method(&proto, "toString", object_to_string, 0);
    interp.register_method(&proto, "toLocaleString", object_to_locale_string, 0);
    interp.register_method(&proto, "valueOf", object_value_of, 0);
}

/// Create Object constructor with static methods (keys, values, entries, assign, etc.)
pub fn create_object_constructor(interp: &mut Interpreter) -> JsObjectRef {
    let constructor = interp.create_native_function("Object", object_constructor, 1);

    // Property enumeration
    interp.register_method(&constructor, "keys", object_keys, 1);
    interp.register_method(&constructor, "values", object_values, 1);
    interp.register_method(&constructor, "entries", object_entries, 1);

    // Object manipulation
    interp.register_method(&constructor, "assign", object_assign, 2);
    interp.register_method(&constructor, "fromEntries", object_from_entries, 1);
    interp.register_method(&constructor, "create", object_create, 1);
    interp.register_method(&constructor, "groupBy", object_group_by, 2);

    // Property checking
    interp.register_method(&constructor, "hasOwn", object_has_own, 2);

    // Freezing/sealing/extensibility
    interp.register_method(&constructor, "freeze", object_freeze, 1);
    interp.register_method(&constructor, "isFrozen", object_is_frozen, 1);
    interp.register_method(&constructor, "seal", object_seal, 1);
    interp.register_method(&constructor, "isSealed", object_is_sealed, 1);
    interp.register_method(
        &constructor,
        "preventExtensions",
        object_prevent_extensions,
        1,
    );
    interp.register_method(&constructor, "isExtensible", object_is_extensible, 1);

    // Comparison
    interp.register_method(&constructor, "is", object_is, 2);

    // Property descriptors
    interp.register_method(
        &constructor,
        "getOwnPropertyDescriptor",
        object_get_own_property_descriptor,
        2,
    );
    interp.register_method(
        &constructor,
        "getOwnPropertyNames",
        object_get_own_property_names,
        1,
    );
    interp.register_method(
        &constructor,
        "getOwnPropertySymbols",
        object_get_own_property_symbols,
        1,
    );
    interp.register_method(
        &constructor,
        "getOwnPropertyDescriptors",
        object_get_own_property_descriptors,
        1,
    );
    interp.register_method(&constructor, "defineProperty", object_define_property, 3);
    interp.register_method(
        &constructor,
        "defineProperties",
        object_define_properties,
        2,
    );

    // Prototype manipulation
    interp.register_method(&constructor, "getPrototypeOf", object_get_prototype_of, 1);
    interp.register_method(&constructor, "setPrototypeOf", object_set_prototype_of, 2);

    // Set constructor.prototype = Object.prototype
    let proto_key = PropertyKey::String(interp.intern("prototype"));
    constructor
        .borrow_mut()
        .set_property(proto_key, JsValue::Object(interp.object_prototype.clone()));

    // Set Object.prototype.constructor = Object
    let constructor_key = PropertyKey::String(interp.intern("constructor"));
    interp
        .object_prototype
        .borrow_mut()
        .set_property(constructor_key, JsValue::Object(constructor.clone()));

    constructor
}

/// Object constructor - wraps primitives in their respective wrapper objects
pub fn object_constructor(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let value = args.first().cloned().unwrap_or(JsValue::Undefined);
    match value {
        JsValue::Null | JsValue::Undefined => {
            // Return a new plain object
            let guard = interp.heap.create_guard();
            let obj = interp.create_object(&guard);
            Ok(Guarded::with_guard(JsValue::Object(obj), guard))
        }
        JsValue::Object(_) => {
            // Return the object as-is
            Ok(Guarded::unguarded(value))
        }
        JsValue::Boolean(b) => {
            // Create Boolean wrapper object
            let guard = interp.heap.create_guard();
            let obj = interp.create_object(&guard);
            obj.borrow_mut().prototype = Some(interp.boolean_prototype.clone());
            obj.borrow_mut().exotic = ExoticObject::Boolean(b);
            Ok(Guarded::with_guard(JsValue::Object(obj), guard))
        }
        JsValue::Number(n) => {
            // Create Number wrapper object
            let guard = interp.heap.create_guard();
            let obj = interp.create_object(&guard);
            obj.borrow_mut().prototype = Some(interp.number_prototype.clone());
            obj.borrow_mut().exotic = ExoticObject::Number(n);
            Ok(Guarded::with_guard(JsValue::Object(obj), guard))
        }
        JsValue::String(ref s) => {
            // Create String wrapper object
            let guard = interp.heap.create_guard();
            let obj = interp.create_object(&guard);
            obj.borrow_mut().prototype = Some(interp.string_prototype.clone());
            obj.borrow_mut().exotic = ExoticObject::StringObj(s.clone());
            // Also set length property for string wrappers
            let len = s.len();
            let length_key = PropertyKey::String(interp.intern("length"));
            obj.borrow_mut()
                .set_property(length_key, JsValue::Number(len as f64));
            Ok(Guarded::with_guard(JsValue::Object(obj), guard))
        }
        JsValue::Symbol(_) => {
            // Symbols cannot be wrapped with Object() - this should throw TypeError in strict mode
            // but for now we return an ordinary object
            let guard = interp.heap.create_guard();
            let obj = interp.create_object(&guard);
            Ok(Guarded::with_guard(JsValue::Object(obj), guard))
        }
    }
}

pub fn object_keys(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let arg = args.first().cloned().unwrap_or(JsValue::Undefined);

    // ES2015+: Convert to object (primitives get boxed, null/undefined throw)
    let to_obj_guarded = interp.to_object(arg)?;
    let obj_ref = match &to_obj_guarded.value {
        JsValue::Object(obj) => obj.cheap_clone(),
        _ => return Err(JsError::internal_error("to_object returned non-object")),
    };
    // Keep to_obj_guarded alive while we use obj_ref
    let _guard = to_obj_guarded;

    // Use proxy trap if it's a proxy - ownKeys trap returns all keys
    if is_proxy(&obj_ref) {
        // Call ownKeys trap and filter for enumerable string keys
        let Guarded {
            value: keys_result, ..
        } = proxy_own_keys(interp, obj_ref)?;
        // Filter for enumerable string keys only (not symbols)
        if let JsValue::Object(keys_arr) = keys_result {
            let keys_ref = keys_arr.borrow();
            if let Some(elements) = keys_ref.array_elements() {
                let string_keys: Vec<JsValue> = elements
                    .iter()
                    .filter(|k| matches!(k, JsValue::String(_)))
                    .cloned()
                    .collect();
                drop(keys_ref);
                let guard = interp.heap.create_guard();
                let arr = interp.create_array_from(&guard, string_keys);
                return Ok(Guarded::with_guard(JsValue::Object(arr), guard));
            }
        }
        // Fallback to empty array
        let guard = interp.heap.create_guard();
        let arr = interp.create_array_from(&guard, vec![]);
        return Ok(Guarded::with_guard(JsValue::Object(arr), guard));
    }

    let keys: Vec<JsValue> = {
        let obj = obj_ref.borrow();

        // For enums, get keys from EnumData
        if let ExoticObject::Enum(ref data) = obj.exotic {
            data.keys()
                .into_iter()
                .filter(|k| !k.is_symbol())
                .map(|k| JsValue::String(JsString::from(k.to_string())))
                .collect()
        } else if let ExoticObject::Array { ref elements } = obj.exotic {
            // For arrays, include numeric indices first (0, 1, 2, ...), then other enumerable properties
            let len = elements.len();
            let mut result: Vec<JsValue> = (0..len)
                .map(|i| JsValue::String(JsString::from(i.to_string())))
                .collect();
            // Add any other enumerable string properties (like "length" is not enumerable)
            // Skip numeric index keys since they're already covered above
            for (key, prop) in obj.properties.iter() {
                if prop.enumerable() && !key.is_symbol() {
                    // Skip if this is a numeric index that's already covered by elements
                    let is_covered_index = match key {
                        PropertyKey::Index(idx) => (*idx as usize) < len,
                        PropertyKey::String(s) => {
                            if let Ok(idx) = s.as_str().parse::<usize>() {
                                idx < len
                            } else {
                                false
                            }
                        }
                        PropertyKey::Symbol(_) => false,
                    };
                    if !is_covered_index {
                        result.push(JsValue::String(JsString::from(key.to_string())));
                    }
                }
            }
            result
        } else {
            // Standard object - get from properties
            // Only include enumerable string keys, not symbols
            obj.properties
                .iter()
                .filter(|(key, prop)| prop.enumerable() && !key.is_symbol())
                .map(|(key, _)| JsValue::String(JsString::from(key.to_string())))
                .collect()
        }
    };

    let guard = interp.heap.create_guard();
    let arr = interp.create_array_from(&guard, keys);
    Ok(Guarded::with_guard(JsValue::Object(arr), guard))
}

pub fn object_values(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);
    let JsValue::Object(obj_ref) = obj else {
        return Err(JsError::type_error("Object.values requires an object"));
    };

    let values: Vec<JsValue> = {
        let obj = obj_ref.borrow();

        // For enums, get values from EnumData
        if let ExoticObject::Enum(ref data) = obj.exotic {
            data.values()
        } else {
            // Standard object - get from properties
            // Only include enumerable string keys, not symbols
            obj.properties
                .iter()
                .filter(|(key, prop)| prop.enumerable() && !key.is_symbol())
                .map(|(_, prop)| prop.value.clone())
                .collect()
        }
    };

    let guard = interp.heap.create_guard();
    let arr = interp.create_array_from(&guard, values);
    Ok(Guarded::with_guard(JsValue::Object(arr), guard))
}

pub fn object_entries(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);
    let JsValue::Object(obj_ref) = obj else {
        return Err(JsError::type_error("Object.entries requires an object"));
    };

    // Collect key-value pairs first to release the borrow
    let pairs: Vec<(String, JsValue)> = {
        let obj = obj_ref.borrow();

        // For enums, get entries from EnumData
        if let ExoticObject::Enum(ref data) = obj.exotic {
            data.entries()
        } else {
            // Standard object - get from properties
            // Only include enumerable string keys, not symbols
            obj.properties
                .iter()
                .filter(|(key, prop)| prop.enumerable() && !key.is_symbol())
                .map(|(key, prop)| (key.to_string(), prop.value.clone()))
                .collect()
        }
    };

    // Use single guard for all entry arrays
    let guard = interp.heap.create_guard();
    let mut entries: Vec<JsValue> = Vec::with_capacity(pairs.len());
    for (key, value) in pairs {
        let arr =
            interp.create_array_from(&guard, vec![JsValue::String(JsString::from(key)), value]);
        entries.push(JsValue::Object(arr));
    }

    let result = interp.create_array_from(&guard, entries);
    Ok(Guarded::with_guard(JsValue::Object(result), guard))
}

pub fn object_assign(
    _interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let target = args.first().cloned().unwrap_or(JsValue::Undefined);
    let JsValue::Object(target_ref) = target.clone() else {
        return Err(JsError::type_error(
            "Object.assign requires an object target",
        ));
    };

    for source in args.iter().skip(1) {
        if let JsValue::Object(src_ref) = source {
            let src = src_ref.borrow();
            for (key, prop) in src.properties.iter() {
                if prop.enumerable() {
                    target_ref
                        .borrow_mut()
                        .set_property(key.clone(), prop.value.clone());
                }
            }
        }
    }

    // Target was passed in by caller, so it's already owned - no guard needed
    Ok(Guarded::unguarded(target))
}

pub fn object_from_entries(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let iterable = args.first().cloned().unwrap_or(JsValue::Undefined);

    let JsValue::Object(arr) = iterable else {
        return Err(JsError::type_error(
            "Object.fromEntries requires an iterable",
        ));
    };

    // Guard the input array to prevent GC from collecting it during iteration
    let _arr_guard = interp.guard_value(&JsValue::Object(arr.clone()));

    // Create result object with guard - key interning may trigger GC
    let result_guard = interp.heap.create_guard();
    let result = interp.create_object(&result_guard);

    let length = arr
        .borrow()
        .array_length()
        .ok_or_else(|| JsError::type_error("Object.fromEntries requires an array-like"))?;

    for i in 0..length {
        let entry = arr
            .borrow()
            .get_property(&PropertyKey::Index(i))
            .unwrap_or(JsValue::Undefined);
        if let JsValue::Object(entry_ref) = entry {
            let entry_borrow = entry_ref.borrow();
            if entry_borrow.is_array() {
                let key = entry_borrow
                    .get_property(&PropertyKey::Index(0))
                    .unwrap_or(JsValue::Undefined);
                let value = entry_borrow
                    .get_property(&PropertyKey::Index(1))
                    .unwrap_or(JsValue::Undefined);
                drop(entry_borrow);
                let key_str = interp.to_js_string(&key).to_string();
                let interned_key = interp.property_key(&key_str);
                result.borrow_mut().set_property(interned_key, value);
            }
        }
    }

    Ok(Guarded::with_guard(JsValue::Object(result), result_guard))
}

pub fn object_has_own(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);
    let key = args.get(1).cloned().unwrap_or(JsValue::Undefined);

    let JsValue::Object(obj_ref) = obj else {
        return Ok(Guarded::unguarded(JsValue::Boolean(false)));
    };

    let key_str = interp.to_js_string(&key).to_string();
    let interned_key = interp.property_key(&key_str);

    let borrowed = obj_ref.borrow();
    let has = if let ExoticObject::Enum(ref data) = borrowed.exotic {
        // For enums, check EnumData
        data.has_property(&interned_key)
    } else {
        // Standard object - check properties
        borrowed.properties.contains_key(&interned_key)
    };
    Ok(Guarded::unguarded(JsValue::Boolean(has)))
}

pub fn object_create(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let proto = args.first().cloned().unwrap_or(JsValue::Undefined);
    let properties = args.get(1).cloned();

    let result_guard = interp.heap.create_guard();
    let result = interp.create_object(&result_guard);

    // Set prototype (or null)
    match proto {
        JsValue::Null => {
            // No prototype - object won't have hasOwnProperty etc.
            let mut obj = result.borrow_mut();
            obj.prototype = None;
            obj.null_prototype = true;
        }
        JsValue::Object(proto_ref) => {
            result.borrow_mut().prototype = Some(proto_ref);
            // Establish GC ownership so prototype isn't collected
        }
        _ => {
            return Err(JsError::type_error(
                "Object prototype may only be an Object or null",
            ));
        }
    }

    // If properties argument is provided and not undefined, define properties
    if let Some(props) = properties
        && !matches!(props, JsValue::Undefined)
    {
        let JsValue::Object(props_ref) = props else {
            return Err(JsError::type_error(
                "Property descriptors must be an object",
            ));
        };

        // Pre-intern descriptor property keys
        let value_key = PropertyKey::String(interp.intern("value"));
        let writable_key = PropertyKey::String(interp.intern("writable"));
        let enumerable_key = PropertyKey::String(interp.intern("enumerable"));
        let configurable_key = PropertyKey::String(interp.intern("configurable"));
        let get_key = PropertyKey::String(interp.intern("get"));
        let set_key = PropertyKey::String(interp.intern("set"));

        // Iterate over all properties in the descriptor object
        let prop_keys: Vec<PropertyKey> = {
            let props_borrowed = props_ref.borrow();
            props_borrowed.properties.keys().cloned().collect()
        };

        for key in prop_keys {
            let descriptor = {
                let props_borrowed = props_ref.borrow();
                props_borrowed
                    .get_property(&key)
                    .unwrap_or(JsValue::Undefined)
            };

            let JsValue::Object(desc_ref) = descriptor else {
                continue; // Skip non-object descriptors
            };

            // Get descriptor properties
            let desc_borrowed = desc_ref.borrow();
            let value = desc_borrowed
                .get_property(&value_key)
                .unwrap_or(JsValue::Undefined);
            let writable = desc_borrowed
                .get_property(&writable_key)
                .map(|v| v.to_boolean())
                .unwrap_or(false);
            let enumerable = desc_borrowed
                .get_property(&enumerable_key)
                .map(|v| v.to_boolean())
                .unwrap_or(false);
            let configurable = desc_borrowed
                .get_property(&configurable_key)
                .map(|v| v.to_boolean())
                .unwrap_or(false);

            // Check for getter/setter
            let getter = desc_borrowed.get_property(&get_key);
            let setter = desc_borrowed.get_property(&set_key);
            drop(desc_borrowed);

            let is_accessor = getter.is_some() || setter.is_some();

            if is_accessor {
                // Accessor descriptor
                let getter_ref = match getter {
                    Some(JsValue::Object(g)) => Some(g),
                    _ => None,
                };
                let setter_ref = match setter {
                    Some(JsValue::Object(s)) => Some(s),
                    _ => None,
                };
                let mut prop = Property::accessor(getter_ref, setter_ref);
                prop.set_enumerable(enumerable);
                prop.set_configurable(configurable);
                result.borrow_mut().define_property(key, prop);
            } else {
                // Data descriptor
                let prop = Property::with_attributes(value, writable, enumerable, configurable);
                result.borrow_mut().define_property(key, prop);
            }
        }
    }

    Ok(Guarded::with_guard(JsValue::Object(result), result_guard))
}

pub fn object_freeze(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    if let JsValue::Object(obj_ref) = &obj {
        let mut obj_mut = obj_ref.borrow_mut();
        obj_mut.frozen = true;
        obj_mut.extensible = false; // Frozen objects are not extensible
        // Mark all properties as non-writable and non-configurable
        for (_, prop) in obj_mut.properties.iter_mut() {
            prop.set_writable(false);
            prop.set_configurable(false);
        }
    }

    // Return with guard to protect the object until caller stores it
    // This is necessary because the object might have been created inline
    // (e.g., Object.freeze({a: 1})) and the caller's arg guards will drop
    // before the returned value is used
    let guard = interp.guard_value(&obj);
    Ok(Guarded { value: obj, guard })
}

pub fn object_is_frozen(
    _interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    let is_frozen = match obj {
        JsValue::Object(obj_ref) => obj_ref.borrow().frozen,
        _ => true, // Non-objects are considered frozen
    };

    Ok(Guarded::unguarded(JsValue::Boolean(is_frozen)))
}

pub fn object_seal(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    if let JsValue::Object(obj_ref) = &obj {
        let mut obj_mut = obj_ref.borrow_mut();
        obj_mut.sealed = true;
        obj_mut.extensible = false; // Sealed objects are not extensible
        // Mark all properties as non-configurable (but still writable)
        for (_, prop) in obj_mut.properties.iter_mut() {
            prop.set_configurable(false);
        }
    }

    // Return with guard to protect the object until caller stores it
    let guard = interp.guard_value(&obj);
    Ok(Guarded { value: obj, guard })
}

pub fn object_is_sealed(
    _interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    let is_sealed = match obj {
        JsValue::Object(obj_ref) => obj_ref.borrow().sealed,
        _ => true, // Non-objects are considered sealed
    };

    Ok(Guarded::unguarded(JsValue::Boolean(is_sealed)))
}

// Object.prototype methods

pub fn object_has_own_property(
    interp: &mut Interpreter,
    this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let JsValue::Object(obj) = this else {
        return Ok(Guarded::unguarded(JsValue::Boolean(false)));
    };

    let arg = args.first().cloned().unwrap_or(JsValue::Undefined);

    // Handle symbol arguments directly
    let key = if let JsValue::Symbol(ref sym) = arg {
        PropertyKey::Symbol(sym.clone())
    } else {
        let prop_name = interp.to_js_string(&arg).to_string();
        interp.property_key(&prop_name)
    };

    let obj_ref = obj.borrow();
    let has_prop = if let ExoticObject::Enum(ref data) = obj_ref.exotic {
        // For enums, check EnumData
        data.has_property(&key)
    } else if let ExoticObject::Array { ref elements } = obj_ref.exotic {
        // For arrays, check if key is a valid array index
        match &key {
            PropertyKey::Index(index) => {
                // Direct numeric index - check if within bounds
                (*index as usize) < elements.len()
            }
            PropertyKey::String(key_str) => {
                // Try to parse as integer index
                if let Ok(index) = key_str.as_str().parse::<usize>() {
                    // Check if index is within bounds
                    index < elements.len()
                } else {
                    // Non-numeric key - check regular properties
                    obj_ref.properties.contains_key(&key)
                }
            }
            PropertyKey::Symbol(_) => {
                // Symbol key - check regular properties
                obj_ref.properties.contains_key(&key)
            }
        }
    } else {
        // Standard object - check properties
        obj_ref.properties.contains_key(&key)
    };
    Ok(Guarded::unguarded(JsValue::Boolean(has_prop)))
}

/// Object.prototype.isPrototypeOf
/// Returns true if this object is in the prototype chain of the given value.
pub fn object_is_prototype_of(
    _interp: &mut Interpreter,
    this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    // Get the this object
    let JsValue::Object(this_obj) = this else {
        // this is not an object - can't be in any prototype chain
        return Ok(Guarded::unguarded(JsValue::Boolean(false)));
    };

    // Get the argument - if not an object, return false
    let arg = args.first().cloned().unwrap_or(JsValue::Undefined);
    let JsValue::Object(mut check_obj) = arg else {
        // Primitives don't have prototype chains (in this context)
        return Ok(Guarded::unguarded(JsValue::Boolean(false)));
    };

    // Walk up the prototype chain of check_obj, looking for this_obj
    loop {
        let proto = check_obj.borrow().prototype.clone();
        match proto {
            Some(p) => {
                // Compare by pointer equality using associated function
                if crate::gc::Gc::ptr_eq(&this_obj, &p) {
                    return Ok(Guarded::unguarded(JsValue::Boolean(true)));
                }
                check_obj = p;
            }
            None => {
                // Reached the end of the chain
                return Ok(Guarded::unguarded(JsValue::Boolean(false)));
            }
        }
    }
}

/// Object.prototype.toString
/// Returns "[object Type]" based on the internal [[Class]] of the value.
/// Per ES spec, this checks for Symbol.toStringTag on objects first.
pub fn object_to_string(
    _interp: &mut Interpreter,
    this: JsValue,
    _args: &[JsValue],
) -> Result<Guarded, JsError> {
    let tag = match &this {
        JsValue::Undefined => "Undefined",
        JsValue::Null => "Null",
        JsValue::Boolean(_) => "Boolean",
        JsValue::Number(_) => "Number",
        JsValue::String(_) => "String",
        JsValue::Symbol(_) => "Symbol",
        JsValue::Object(obj) => {
            let obj_ref = obj.borrow();
            // TODO: Check for Symbol.toStringTag property first
            match &obj_ref.exotic {
                ExoticObject::Array { .. } => "Array",
                ExoticObject::Function(_) => "Function",
                ExoticObject::Ordinary => "Object",
                ExoticObject::Map { .. } => "Map",
                ExoticObject::Set { .. } => "Set",
                ExoticObject::Date { .. } => "Date",
                ExoticObject::RegExp { .. } => "RegExp",
                ExoticObject::Generator(_) | ExoticObject::BytecodeGenerator(_) => "Generator",
                ExoticObject::Promise(_) => "Promise",
                ExoticObject::Environment(_) => "Object",
                ExoticObject::Enum(_) => "Object",
                ExoticObject::Proxy(_) => "Object",
                ExoticObject::Boolean(_) => "Boolean",
                ExoticObject::Number(_) => "Number",
                ExoticObject::StringObj(_) => "String",
                ExoticObject::Symbol(_) => "Symbol",
                ExoticObject::RawJSON(_) => "Object", // RawJSON objects are ordinary objects
                ExoticObject::PendingOrder { .. } => "Object", // PendingOrder markers are objects
            }
        }
    };

    Ok(Guarded::unguarded(JsValue::String(JsString::from(
        format!("[object {}]", tag),
    ))))
}

pub fn object_value_of(
    _interp: &mut Interpreter,
    this: JsValue,
    _args: &[JsValue],
) -> Result<Guarded, JsError> {
    // Returns the object itself, which is already owned by caller
    Ok(Guarded::unguarded(this))
}

/// Object.prototype.toLocaleString()
/// Simply calls this.toString() per the spec.
/// For the base Object.prototype, this just calls toString.
pub fn object_to_locale_string(
    interp: &mut Interpreter,
    this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    // The default toLocaleString just calls toString
    // Other types (Number, Date, Array) may override with locale-specific behavior
    object_to_string(interp, this, args)
}

/// Object.getOwnPropertyDescriptor(obj, prop)
pub fn object_get_own_property_descriptor(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);
    let prop = args.get(1).cloned().unwrap_or(JsValue::Undefined);

    // ES2015+: Convert to object (primitives get boxed, null/undefined throw)
    let to_obj_guarded = interp.to_object(obj)?;
    let obj_ref = match &to_obj_guarded.value {
        JsValue::Object(obj) => obj.cheap_clone(),
        _ => return Err(JsError::internal_error("to_object returned non-object")),
    };
    // Keep to_obj_guarded alive while we use obj_ref
    let _guard = to_obj_guarded;

    let key = PropertyKey::from_value(&prop);

    // Use proxy trap if it's a proxy
    if is_proxy(&obj_ref) {
        return proxy_get_own_property_descriptor(interp, obj_ref, &key);
    }

    let obj_borrowed = obj_ref.borrow();

    // Use get_property_descriptor which handles exotic properties (function name/length, array elements, etc.)
    if let Some((property, in_prototype)) = obj_borrowed.get_property_descriptor(&key) {
        // Only return descriptor if it's an own property (not from prototype)
        if in_prototype {
            return Ok(Guarded::unguarded(JsValue::Undefined));
        }

        // Check if the key is "name" or "length" on a function - those are own properties
        // Pre-intern all descriptor property keys
        let get_key = PropertyKey::String(interp.intern("get"));
        let set_key = PropertyKey::String(interp.intern("set"));
        let value_key = PropertyKey::String(interp.intern("value"));
        let writable_key = PropertyKey::String(interp.intern("writable"));
        let enumerable_key = PropertyKey::String(interp.intern("enumerable"));
        let configurable_key = PropertyKey::String(interp.intern("configurable"));

        // Create a descriptor object
        let desc_guard = interp.heap.create_guard();
        let desc = interp.create_object(&desc_guard);
        {
            let mut desc_ref = desc.borrow_mut();

            if property.is_accessor() {
                // Accessor descriptor
                if let Some(getter) = property.getter() {
                    desc_ref.set_property(get_key, JsValue::Object(getter.clone()));
                } else {
                    desc_ref.set_property(get_key, JsValue::Undefined);
                }
                if let Some(setter) = property.setter() {
                    desc_ref.set_property(set_key, JsValue::Object(setter.clone()));
                } else {
                    desc_ref.set_property(set_key, JsValue::Undefined);
                }
            } else {
                // Data descriptor
                desc_ref.set_property(value_key, property.value.clone());
                desc_ref.set_property(writable_key, JsValue::Boolean(property.writable()));
            }

            desc_ref.set_property(enumerable_key, JsValue::Boolean(property.enumerable()));
            desc_ref.set_property(configurable_key, JsValue::Boolean(property.configurable()));
        }
        Ok(Guarded::with_guard(JsValue::Object(desc), desc_guard))
    } else {
        Ok(Guarded::unguarded(JsValue::Undefined))
    }
}

/// Object.getOwnPropertyNames(obj)
pub fn object_get_own_property_names(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    // ES2015+: Convert to object (primitives get boxed, null/undefined throw)
    let to_obj_guarded = interp.to_object(obj)?;
    let obj_ref = match &to_obj_guarded.value {
        JsValue::Object(obj) => obj.cheap_clone(),
        _ => return Err(JsError::internal_error("to_object returned non-object")),
    };
    // Keep to_obj_guarded alive while we use obj_ref
    let _guard = to_obj_guarded;

    // Filter out symbol keys - getOwnPropertyNames only returns string keys
    let names: Vec<JsValue> = obj_ref
        .borrow()
        .properties
        .keys()
        .filter(|key| !key.is_symbol())
        .map(|key| JsValue::String(JsString::from(key.to_string())))
        .collect();

    let guard = interp.heap.create_guard();
    let arr = interp.create_array_from(&guard, names);
    Ok(Guarded::with_guard(JsValue::Object(arr), guard))
}

/// Object.getOwnPropertySymbols(obj)
pub fn object_get_own_property_symbols(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    // ES2015+: Convert to object (primitives get boxed, null/undefined throw)
    let to_obj_guarded = interp.to_object(obj)?;
    let obj_ref = match &to_obj_guarded.value {
        JsValue::Object(obj) => obj.cheap_clone(),
        _ => return Err(JsError::internal_error("to_object returned non-object")),
    };
    // Keep to_obj_guarded alive while we use obj_ref
    let _guard = to_obj_guarded;

    // Return only symbol keys
    let symbols: Vec<JsValue> = obj_ref
        .borrow()
        .properties
        .keys()
        .filter_map(|key| {
            if let PropertyKey::Symbol(s) = key {
                Some(JsValue::Symbol(s.clone()))
            } else {
                None
            }
        })
        .collect();

    let guard = interp.heap.create_guard();
    let arr = interp.create_array_from(&guard, symbols);
    Ok(Guarded::with_guard(JsValue::Object(arr), guard))
}

/// Object.defineProperty(obj, prop, descriptor)
pub fn object_define_property(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);
    let prop = args.get(1).cloned().unwrap_or(JsValue::Undefined);
    let descriptor = args.get(2).cloned().unwrap_or(JsValue::Undefined);

    let JsValue::Object(obj_ref) = obj.clone() else {
        return Err(JsError::type_error(
            "Object.defineProperty requires an object",
        ));
    };

    let JsValue::Object(ref desc_ref) = descriptor else {
        return Err(JsError::type_error("Property descriptor must be an object"));
    };

    let key = PropertyKey::from_value(&prop);

    // Use proxy trap if it's a proxy
    if is_proxy(&obj_ref) {
        proxy_define_property(interp, obj_ref, key, descriptor)?;
        return Ok(Guarded::unguarded(obj));
    }

    // Pre-intern descriptor property keys
    let value_key = PropertyKey::String(interp.intern("value"));
    let writable_key = PropertyKey::String(interp.intern("writable"));
    let enumerable_key = PropertyKey::String(interp.intern("enumerable"));
    let configurable_key = PropertyKey::String(interp.intern("configurable"));
    let get_key = PropertyKey::String(interp.intern("get"));
    let set_key = PropertyKey::String(interp.intern("set"));

    // Get descriptor properties
    let desc_borrowed = desc_ref.borrow();
    let value = desc_borrowed
        .get_property(&value_key)
        .unwrap_or(JsValue::Undefined);
    let writable = desc_borrowed
        .get_property(&writable_key)
        .map(|v| v.to_boolean())
        .unwrap_or(false);
    let enumerable = desc_borrowed
        .get_property(&enumerable_key)
        .map(|v| v.to_boolean())
        .unwrap_or(false);
    let configurable = desc_borrowed
        .get_property(&configurable_key)
        .map(|v| v.to_boolean())
        .unwrap_or(false);

    // Check for getter/setter
    let getter = desc_borrowed.get_property(&get_key);
    let setter = desc_borrowed.get_property(&set_key);
    drop(desc_borrowed);

    let is_accessor = getter.is_some() || setter.is_some();

    if is_accessor {
        // Accessor descriptor
        let getter_ref = match getter {
            Some(JsValue::Object(g)) => Some(g),
            _ => None,
        };
        let setter_ref = match setter {
            Some(JsValue::Object(s)) => Some(s),
            _ => None,
        };
        let mut prop = Property::accessor(getter_ref, setter_ref);
        prop.set_enumerable(enumerable);
        prop.set_configurable(configurable);
        obj_ref.borrow_mut().define_property(key, prop);
    } else {
        // Data descriptor
        // For arrays with numeric index keys, also update the elements storage
        let mut obj = obj_ref.borrow_mut();

        // Check if this is an array and the key is a numeric index
        if let ExoticObject::Array { ref mut elements } = obj.exotic {
            let maybe_index = match &key {
                PropertyKey::Index(idx) => Some(*idx as usize),
                PropertyKey::String(key_str) => key_str.as_str().parse::<usize>().ok(),
                PropertyKey::Symbol(_) => None,
            };

            if let Some(index) = maybe_index {
                // Extend array if needed
                while elements.len() <= index {
                    elements.push(JsValue::Undefined);
                }
                // Set the value at this index
                if let Some(elem) = elements.get_mut(index) {
                    *elem = value.clone();
                }
            }
        }

        // Also set as property for correct descriptor behavior
        let prop = Property::with_attributes(value, writable, enumerable, configurable);
        obj.define_property(key, prop);
    }

    // Object was passed in by caller, already owned - no guard needed
    Ok(Guarded::unguarded(obj))
}

/// Object.defineProperties(obj, props)
/// Define multiple properties at once
pub fn object_define_properties(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);
    let props = args.get(1).cloned().unwrap_or(JsValue::Undefined);

    let JsValue::Object(obj_ref) = obj.clone() else {
        return Err(JsError::type_error(
            "Object.defineProperties requires an object",
        ));
    };

    let JsValue::Object(props_ref) = props else {
        return Err(JsError::type_error(
            "Property descriptors must be an object",
        ));
    };

    // Pre-intern descriptor property keys
    let value_key = PropertyKey::String(interp.intern("value"));
    let writable_key = PropertyKey::String(interp.intern("writable"));
    let enumerable_key = PropertyKey::String(interp.intern("enumerable"));
    let configurable_key = PropertyKey::String(interp.intern("configurable"));
    let get_key = PropertyKey::String(interp.intern("get"));
    let set_key = PropertyKey::String(interp.intern("set"));

    // Iterate over all properties in the descriptor object
    let prop_keys: Vec<PropertyKey> = {
        let props_borrowed = props_ref.borrow();
        props_borrowed.properties.keys().cloned().collect()
    };

    for key in prop_keys {
        let descriptor = {
            let props_borrowed = props_ref.borrow();
            props_borrowed
                .get_property(&key)
                .unwrap_or(JsValue::Undefined)
        };

        let JsValue::Object(desc_ref) = descriptor else {
            continue; // Skip non-object descriptors
        };

        // Get descriptor properties
        let desc_borrowed = desc_ref.borrow();
        let value = desc_borrowed
            .get_property(&value_key)
            .unwrap_or(JsValue::Undefined);
        let writable = desc_borrowed
            .get_property(&writable_key)
            .map(|v| v.to_boolean())
            .unwrap_or(false);
        let enumerable = desc_borrowed
            .get_property(&enumerable_key)
            .map(|v| v.to_boolean())
            .unwrap_or(false);
        let configurable = desc_borrowed
            .get_property(&configurable_key)
            .map(|v| v.to_boolean())
            .unwrap_or(false);

        // Check for getter/setter
        let getter = desc_borrowed.get_property(&get_key);
        let setter = desc_borrowed.get_property(&set_key);
        drop(desc_borrowed);

        let is_accessor = getter.is_some() || setter.is_some();

        if is_accessor {
            // Accessor descriptor
            let getter_ref = match getter {
                Some(JsValue::Object(g)) => Some(g),
                _ => None,
            };
            let setter_ref = match setter {
                Some(JsValue::Object(s)) => Some(s),
                _ => None,
            };
            let mut prop = Property::accessor(getter_ref, setter_ref);
            prop.set_enumerable(enumerable);
            prop.set_configurable(configurable);
            obj_ref.borrow_mut().define_property(key, prop);
        } else {
            // Data descriptor
            let prop = Property::with_attributes(value, writable, enumerable, configurable);
            obj_ref.borrow_mut().define_property(key, prop);
        }
    }

    // Object was passed in by caller, already owned - no guard needed
    Ok(Guarded::unguarded(obj))
}

/// Object.getPrototypeOf(obj)
pub fn object_get_prototype_of(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    let JsValue::Object(obj_ref) = obj else {
        return Err(JsError::type_error(
            "Object.getPrototypeOf requires an object",
        ));
    };

    // Use proxy trap if it's a proxy
    if is_proxy(&obj_ref) {
        return proxy_get_prototype_of(interp, obj_ref);
    }

    let obj_borrowed = obj_ref.borrow();
    match &obj_borrowed.prototype {
        Some(proto) => Ok(Guarded::unguarded(JsValue::Object(proto.clone()))),
        None => Ok(Guarded::unguarded(JsValue::Null)),
    }
}

/// Object.setPrototypeOf(obj, proto)
pub fn object_set_prototype_of(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);
    let proto = args.get(1).cloned().unwrap_or(JsValue::Undefined);

    let JsValue::Object(obj_ref) = obj.clone() else {
        return Err(JsError::type_error(
            "Object.setPrototypeOf requires an object",
        ));
    };

    // Use proxy trap if it's a proxy
    if is_proxy(&obj_ref) {
        proxy_set_prototype_of(interp, obj_ref, proto)?;
        return Ok(Guarded::unguarded(obj));
    }

    let new_proto = match proto {
        JsValue::Object(p) => Some(p),
        JsValue::Null => None,
        _ => {
            return Err(JsError::type_error(
                "Object prototype may only be an Object or null",
            ));
        }
    };

    obj_ref.borrow_mut().prototype = new_proto;
    // Object was passed in by caller, already owned - no guard needed
    Ok(Guarded::unguarded(obj))
}

/// Object.is(value1, value2)
/// Uses SameValue algorithm which differs from === in handling of NaN and -0
pub fn object_is(
    _interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let value1 = args.first().cloned().unwrap_or(JsValue::Undefined);
    let value2 = args.get(1).cloned().unwrap_or(JsValue::Undefined);

    let result = same_value(&value1, &value2);
    Ok(Guarded::unguarded(JsValue::Boolean(result)))
}

/// SameValue algorithm (used by Object.is)
/// Different from strict equality (===) in that:
/// - NaN is equal to NaN
/// - +0 is NOT equal to -0
fn same_value(x: &JsValue, y: &JsValue) -> bool {
    match (x, y) {
        (JsValue::Undefined, JsValue::Undefined) => true,
        (JsValue::Null, JsValue::Null) => true,
        (JsValue::Boolean(a), JsValue::Boolean(b)) => a == b,
        (JsValue::Number(a), JsValue::Number(b)) => {
            // Handle NaN: NaN is equal to NaN
            if a.is_nan() && b.is_nan() {
                return true;
            }
            // Handle -0 vs +0: they are NOT equal
            if *a == 0.0 && *b == 0.0 {
                // Check sign bit: 1/0.0 = Infinity, 1/-0.0 = -Infinity
                return a.signum() == b.signum() || (a.is_nan() && b.is_nan());
            }
            a == b
        }
        (JsValue::String(a), JsValue::String(b)) => a == b,
        (JsValue::Symbol(a), JsValue::Symbol(b)) => a == b,
        (JsValue::Object(a), JsValue::Object(b)) => a == b,
        _ => false,
    }
}

/// Object.preventExtensions(obj)
/// Prevents new properties from being added to an object
pub fn object_prevent_extensions(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    if let JsValue::Object(obj_ref) = &obj {
        // Use proxy trap if it's a proxy
        if is_proxy(obj_ref) {
            proxy_prevent_extensions(interp, obj_ref.clone())?;
        } else {
            obj_ref.borrow_mut().extensible = false;
        }
    }

    // Return with guard to protect the object until caller stores it
    let guard = interp.guard_value(&obj);
    Ok(Guarded { value: obj, guard })
}

/// Object.isExtensible(obj)
/// Returns true if new properties can be added to the object
pub fn object_is_extensible(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    let is_extensible = match obj {
        JsValue::Object(ref obj_ref) if is_proxy(obj_ref) => {
            proxy_is_extensible(interp, obj_ref.clone())?
        }
        JsValue::Object(obj_ref) => obj_ref.borrow().extensible,
        _ => false, // Non-objects are not extensible
    };

    Ok(Guarded::unguarded(JsValue::Boolean(is_extensible)))
}

/// Object.getOwnPropertyDescriptors(obj)
/// Returns an object containing all own property descriptors
pub fn object_get_own_property_descriptors(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let obj = args.first().cloned().unwrap_or(JsValue::Undefined);

    // ES2015+: Convert to object (primitives get boxed, null/undefined throw)
    let to_obj_guarded = interp.to_object(obj)?;
    let obj_ref = match &to_obj_guarded.value {
        JsValue::Object(obj) => obj.cheap_clone(),
        _ => return Err(JsError::internal_error("to_object returned non-object")),
    };
    // Keep to_obj_guarded alive while we use obj_ref
    let _guard = to_obj_guarded;

    // Pre-intern descriptor property keys
    let get_key = PropertyKey::String(interp.intern("get"));
    let set_key = PropertyKey::String(interp.intern("set"));
    let value_key = PropertyKey::String(interp.intern("value"));
    let writable_key = PropertyKey::String(interp.intern("writable"));
    let enumerable_key = PropertyKey::String(interp.intern("enumerable"));
    let configurable_key = PropertyKey::String(interp.intern("configurable"));

    // Collect all property keys first
    let prop_keys: Vec<PropertyKey> = {
        let obj_borrowed = obj_ref.borrow();
        obj_borrowed.properties.keys().cloned().collect()
    };

    // Create result object
    let result_guard = interp.heap.create_guard();
    let result = interp.create_object(&result_guard);

    for key in prop_keys {
        let property = {
            let obj_borrowed = obj_ref.borrow();
            obj_borrowed.get_own_property(&key).cloned()
        };

        if let Some(property) = property {
            // Create descriptor object for this property
            let desc = interp.create_object(&result_guard);
            {
                let mut desc_ref = desc.borrow_mut();

                if property.is_accessor() {
                    // Accessor descriptor
                    if let Some(getter) = property.getter() {
                        desc_ref.set_property(get_key.clone(), JsValue::Object(getter.clone()));
                    } else {
                        desc_ref.set_property(get_key.clone(), JsValue::Undefined);
                    }
                    if let Some(setter) = property.setter() {
                        desc_ref.set_property(set_key.clone(), JsValue::Object(setter.clone()));
                    } else {
                        desc_ref.set_property(set_key.clone(), JsValue::Undefined);
                    }
                } else {
                    // Data descriptor
                    desc_ref.set_property(value_key.clone(), property.value.clone());
                    desc_ref
                        .set_property(writable_key.clone(), JsValue::Boolean(property.writable()));
                }

                desc_ref.set_property(
                    enumerable_key.clone(),
                    JsValue::Boolean(property.enumerable()),
                );
                desc_ref.set_property(
                    configurable_key.clone(),
                    JsValue::Boolean(property.configurable()),
                );
            }

            result.borrow_mut().set_property(key, JsValue::Object(desc));
        }
    }

    Ok(Guarded::with_guard(JsValue::Object(result), result_guard))
}

/// Object.groupBy(items, callbackFn)
/// Groups elements of an iterable using a callback function.
/// Returns an object with null prototype where keys are group names and values are arrays.
pub fn object_group_by(
    interp: &mut Interpreter,
    _this: JsValue,
    args: &[JsValue],
) -> Result<Guarded, JsError> {
    let items = args.first().cloned().unwrap_or(JsValue::Undefined);
    let callback = args.get(1).cloned().unwrap_or(JsValue::Undefined);

    // Items must be iterable - for now we support arrays
    let JsValue::Object(items_ref) = items else {
        return Err(JsError::type_error("Object.groupBy requires an iterable"));
    };

    // Guard the inputs
    let guard = interp.heap.create_guard();
    guard.guard(items_ref.clone());
    if let JsValue::Object(cb_obj) = &callback {
        guard.guard(cb_obj.clone());
    }

    // Get array elements
    let elements: Vec<JsValue> = {
        let items_borrowed = items_ref.borrow();
        if let Some(elems) = items_borrowed.array_elements() {
            elems.to_vec()
        } else {
            return Err(JsError::type_error(
                "Object.groupBy requires an array-like object",
            ));
        }
    };

    // Create result object with null prototype
    let result = interp.create_object(&guard);
    {
        let mut result_ref = result.borrow_mut();
        result_ref.prototype = None;
        result_ref.null_prototype = true;
    }

    // Track groups as we build them - use Vec to preserve insertion order
    let mut group_keys: Vec<String> = Vec::new();
    let mut group_items: Vec<Vec<JsValue>> = Vec::new();

    // Iterate and group
    for (index, item) in elements.into_iter().enumerate() {
        // Guard the item in case callback triggers GC
        if let JsValue::Object(item_obj) = &item {
            guard.guard(item_obj.clone());
        }

        // Call the callback with (item, index)
        let key_result = interp.call_function(
            callback.clone(),
            JsValue::Undefined,
            &[item.clone(), JsValue::Number(index as f64)],
        )?;

        // Coerce key to string (property key)
        let key_str = interp.to_js_string(&key_result.value).to_string();

        // Find existing group or create new one
        let found_idx = group_keys.iter().position(|k| k == &key_str);

        match found_idx {
            Some(idx) => {
                if let Some(items_vec) = group_items.get_mut(idx) {
                    items_vec.push(item);
                }
            }
            None => {
                group_keys.push(key_str);
                group_items.push(vec![item]);
            }
        }
    }

    // Now create the arrays and set them on the result object
    for (key, items) in group_keys.into_iter().zip(group_items.into_iter()) {
        let arr = interp.create_array_from(&guard, items);
        let prop_key = PropertyKey::String(interp.intern(&key));
        result
            .borrow_mut()
            .set_property(prop_key, JsValue::Object(arr));
    }

    Ok(Guarded::with_guard(JsValue::Object(result), guard))
}