-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbcd.json
4012 lines (4012 loc) · 176 KB
/
bcd.json
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
{
"javascript.builtins.Array": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.concat": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/concat",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.copyWithin": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/copyWithin",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.entries": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/entries",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.every": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/every",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.fill": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/fill",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.filter": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/filter",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.find": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/find",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.findIndex": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.flat": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/flat",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.flatMap": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/flatMap",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.forEach": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.from": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/from",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.includes": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/includes",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.indexOf": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/indexOf",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.isArray": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.join": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/join",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.keys": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/keys",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.lastIndexOf": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/lastIndexOf",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.length": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/length",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.map": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/map",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.of": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/of",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.pop": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/pop",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.push": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/push",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.reduce": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/reduce",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.reduceRight": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/reduceRight",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.reverse": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/reverse",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.shift": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/shift",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.slice": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/slice",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.some": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/some",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.sort": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/sort",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.splice": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/splice",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.toLocaleString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/toLocaleString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.toLocaleString.locales": {
"mdn_url": "",
"mdn_desc": "Optional <code>locales</code> parameter",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.toLocaleString.options": {
"mdn_url": "",
"mdn_desc": "Optional <code>options</code> parameter",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.toSource": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/toSource",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.toString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/toString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.unshift": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/unshift",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.values": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/values",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.@@iterator": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/@@iterator",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.@@species": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/@@species",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.Array.@@unscopables": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/@@unscopables",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Array.json"
},
"javascript.builtins.ArrayBuffer": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer",
"mdn_desc": "",
"bcd_file": "javascript/builtins/ArrayBuffer.json"
},
"javascript.builtins.ArrayBuffer.new_required": {
"mdn_url": "",
"mdn_desc": "<code>ArrayBuffer()</code> without <code>new</code> throws",
"bcd_file": "javascript/builtins/ArrayBuffer.json"
},
"javascript.builtins.ArrayBuffer.byteLength": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength",
"mdn_desc": "",
"bcd_file": "javascript/builtins/ArrayBuffer.json"
},
"javascript.builtins.ArrayBuffer.isView": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView",
"mdn_desc": "",
"bcd_file": "javascript/builtins/ArrayBuffer.json"
},
"javascript.builtins.ArrayBuffer.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/ArrayBuffer.json"
},
"javascript.builtins.ArrayBuffer.slice": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/slice",
"mdn_desc": "",
"bcd_file": "javascript/builtins/ArrayBuffer.json"
},
"javascript.builtins.ArrayBuffer.transfer": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/transfer",
"mdn_desc": "",
"bcd_file": "javascript/builtins/ArrayBuffer.json"
},
"javascript.builtins.ArrayBuffer.@@species": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/@@species",
"mdn_desc": "",
"bcd_file": "javascript/builtins/ArrayBuffer.json"
},
"javascript.builtins.AsyncFunction": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/AsyncFunction",
"mdn_desc": "",
"bcd_file": "javascript/builtins/AsyncFunction.json"
},
"javascript.builtins.AsyncFunction.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/AsyncFunction/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/AsyncFunction.json"
},
"javascript.builtins.Atomics": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.add": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/add",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.and": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/and",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.compareExchange": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/compareExchange",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.exchange": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/exchange",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.isLockFree": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/isLockFree",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.load": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/load",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.notify": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/notify",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.or": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/or",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.store": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/store",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.sub": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/sub",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.wait": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/wait",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Atomics.xor": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Atomics/xor",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Atomics.json"
},
"javascript.builtins.Boolean": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Boolean.json"
},
"javascript.builtins.Boolean.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Boolean.json"
},
"javascript.builtins.Boolean.toSource": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toSource",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Boolean.json"
},
"javascript.builtins.Boolean.toString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean/toString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Boolean.json"
},
"javascript.builtins.Boolean.valueOf": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean/valueOf",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Boolean.json"
},
"javascript.builtins.DataView": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.new_required": {
"mdn_url": "",
"mdn_desc": "<code>DataView()</code> without <code>new</code> throws",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.sharedarraybuffer_support": {
"mdn_url": "",
"mdn_desc": "<code>SharedArrayBuffer</code> accepted as buffer",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.buffer": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/buffer",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.buffer.sharedarraybuffer_support": {
"mdn_url": "",
"mdn_desc": "<code>SharedArrayBuffer</code> accepted as buffer",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.byteLength": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/byteLength",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.byteOffset": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/byteOffset",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.getFloat32": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/getFloat32",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.getFloat64": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/getFloat64",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.getInt16": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt16",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.getInt32": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt32",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.getInt8": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt8",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.getUint16": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint16",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.getUint32": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint32",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.getUint8": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint8",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.setFloat32": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/setFloat32",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.setFloat64": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/setFloat64",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.setInt16": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt16",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.setInt32": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt32",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.setInt8": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt8",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.setUint16": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint16",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.setUint32": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint32",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.setUint8": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint8",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.DataView.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/DataView/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/DataView.json"
},
"javascript.builtins.Date": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.@@toPrimitive": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/@@toPrimitive",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.UTC": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/UTC",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getDate": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getDate",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getDay": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getDay",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getFullYear": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getFullYear",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getHours": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getHours",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getMilliseconds": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getMilliseconds",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getMinutes": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getMinutes",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getMonth": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getMonth",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getSeconds": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getSeconds",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getTime": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getTime",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getTimezoneOffset": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getTimezoneOffset",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getUTCDate": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDate",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getUTCDay": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCDay",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getUTCFullYear": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCFullYear",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getUTCHours": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCHours",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getUTCMilliseconds": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMilliseconds",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getUTCMinutes": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMinutes",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getUTCMonth": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCMonth",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.getUTCSeconds": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.now": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/now",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.parse": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/parse",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.parse.iso_8601": {
"mdn_url": "",
"mdn_desc": "ISO 8601 format",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.prototype.ordinary_object": {
"mdn_url": "",
"mdn_desc": "Ordinary object (ES2015)",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setDate": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setDate",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setFullYear": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setFullYear",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setHours": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setHours",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setMilliseconds": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setMilliseconds",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setMinutes": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setMinutes",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setMonth": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setMonth",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setSeconds": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setSeconds",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setTime": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setTime",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setUTCDate": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCDate",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setUTCFullYear": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCFullYear",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setUTCHours": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCHours",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setUTCMilliseconds": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMilliseconds",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setUTCMinutes": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMinutes",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setUTCMonth": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCMonth",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.setUTCSeconds": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/setUTCSeconds",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toDateString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toDateString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toISOString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toJSON": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toJSON",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleDateString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleDateString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleDateString.locales": {
"mdn_url": "",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleDateString.options": {
"mdn_url": "",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleDateString.iana_time_zone_names": {
"mdn_url": "",
"mdn_desc": "IANA time zone names in <code>timeZone</code> option",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleString.locales": {
"mdn_url": "",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleString.options": {
"mdn_url": "",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleString.iana_time_zone_names": {
"mdn_url": "",
"mdn_desc": "IANA time zone names in <code>timeZone</code> option",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleTimeString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleTimeString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleTimeString.locales": {
"mdn_url": "",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleTimeString.options": {
"mdn_url": "",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toLocaleTimeString.iana_time_zone_names": {
"mdn_url": "",
"mdn_desc": "IANA time zone names in <code>timeZone</code> option",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toSource": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toSource",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toTimeString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toTimeString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.toUTCString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/toUTCString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Date.valueOf": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date/valueOf",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Date.json"
},
"javascript.builtins.Error": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.columnNumber": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/columnNumber",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.fileName": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/fileName",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.lineNumber": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/lineNumber",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.message": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/message",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.name": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/name",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.stack": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/stack",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.toSource": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/toSource",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.Error.toString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error/toString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Error.json"
},
"javascript.builtins.EvalError": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/EvalError",
"mdn_desc": "",
"bcd_file": "javascript/builtins/EvalError.json"
},
"javascript.builtins.Float32Array": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Float32Array",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Float32Array.json"
},
"javascript.builtins.Float32Array.new_required": {
"mdn_url": "",
"mdn_desc": "<code>Float32Array()</code> without <code>new</code> throws",
"bcd_file": "javascript/builtins/Float32Array.json"
},
"javascript.builtins.Float32Array.iterable_in_constructor": {
"mdn_url": "",
"mdn_desc": "Iterable in constructor",
"bcd_file": "javascript/builtins/Float32Array.json"
},
"javascript.builtins.Float32Array.constructor_without_arguments": {
"mdn_url": "",
"mdn_desc": "Constructor without arguments",
"bcd_file": "javascript/builtins/Float32Array.json"
},
"javascript.builtins.Float64Array": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Float64Array",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Float64Array.json"
},
"javascript.builtins.Float64Array.new_required": {
"mdn_url": "",
"mdn_desc": "<code>Float64Array()</code> without <code>new</code> throws",
"bcd_file": "javascript/builtins/Float64Array.json"
},
"javascript.builtins.Float64Array.iterable_in_constructor": {
"mdn_url": "",
"mdn_desc": "Iterable in constructor",
"bcd_file": "javascript/builtins/Float64Array.json"
},
"javascript.builtins.Float64Array.constructor_without_arguments": {
"mdn_url": "",
"mdn_desc": "Constructor without arguments",
"bcd_file": "javascript/builtins/Float64Array.json"
},
"javascript.builtins.Function": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.caller": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/caller",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.displayName": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/displayName",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.length": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/length",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.length.configurable_true": {
"mdn_url": "",
"mdn_desc": "Configurable: true",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.name": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/name",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.name.configurable_true": {
"mdn_url": "",
"mdn_desc": "Configurable: true",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.name.inferred_names": {
"mdn_url": "",
"mdn_desc": "Inferred names on anonymous functions",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.apply": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/apply",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.apply.generic_arrays_as_arguments": {
"mdn_url": "",
"mdn_desc": "ES 5.1: generic array-like object as <code>arguments</code>",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.bind": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/bind",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.call": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/call",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.toSource": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/toSource",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.toString": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function/toString",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Function.toString.toString_revision": {
"mdn_url": "",
"mdn_desc": "Support of <a href='http://tc39.github.io/Function-prototype-toString-revision/'>toString revision</a>",
"bcd_file": "javascript/builtins/Function.json"
},
"javascript.builtins.Generator": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Generator",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Generator.json"
},
"javascript.builtins.Generator.next": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Generator/next",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Generator.json"
},
"javascript.builtins.Generator.return": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Generator/return",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Generator.json"
},
"javascript.builtins.Generator.throw": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Generator/throw",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Generator.json"
},
"javascript.builtins.GeneratorFunction": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction",
"mdn_desc": "",
"bcd_file": "javascript/builtins/GeneratorFunction.json"
},
"javascript.builtins.GeneratorFunction.prototype": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/GeneratorFunction/prototype",
"mdn_desc": "",
"bcd_file": "javascript/builtins/GeneratorFunction.json"
},
"javascript.builtins.Int16Array": {
"mdn_url": "https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Int16Array",
"mdn_desc": "",
"bcd_file": "javascript/builtins/Int16Array.json"
},
"javascript.builtins.Int16Array.new_required": {
"mdn_url": "",
"mdn_desc": "<code>Int16Array()</code> without <code>new</code> throws",
"bcd_file": "javascript/builtins/Int16Array.json"
},
"javascript.builtins.Int16Array.iterable_in_constructor": {
"mdn_url": "",
"mdn_desc": "Iterable in constructor",
"bcd_file": "javascript/builtins/Int16Array.json"