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
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
package Torello.Browser;

import java.util.*;
import javax.json.*;
import javax.json.stream.*;
import java.io.*;

import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.util.function.Function;

import Torello.Java.Additional.*;
import Torello.Java.JSON.*;

import static Torello.Java.JSON.JFlag.*;

import Torello.Java.StrCmpr;
import Torello.JavaDoc.StaticFunctional;
import Torello.JavaDoc.JDHeaderBackgroundImg;
import Torello.JavaDoc.Excuse;

/**
 * <SPAN CLASS=COPIEDJDK><B><CODE>[No Description Provided by Google]</CODE></B></SPAN>
 * 
 * <EMBED CLASS='external-html' DATA-FILE-ID=CODE_GEN_NOTE>
 */
@StaticFunctional(Excused={"counter"}, Excuses={Excuse.CONFIGURATION})
@JDHeaderBackgroundImg(EmbedTagFileID="WOOD_PLANK_NOTE")
public class Profiler
{
    // ********************************************************************************************
    // ********************************************************************************************
    // Class Header Stuff
    // ********************************************************************************************
    // ********************************************************************************************


    // No Pubic Constructors
    private Profiler () { }

    // These two Vector's are used by all the "Methods" exported by this class.  java.lang.reflect
    // is used to generate the JSON String's.  It saves thousands of lines of Auto-Generated Code.
    private static final Map<String, Vector<String>>    parameterNames = new HashMap<>();
    private static final Map<String, Vector<Class<?>>>  parameterTypes = new HashMap<>();

    // Some Methods do not take any parameters - for instance all the "enable()" and "disable()"
    // I simply could not get ride of RAW-TYPES and UNCHECKED warnings... so there are now,
    // offically, two empty-vectors.  One for String's, and the other for Classes.

    private static final Vector<String>     EMPTY_VEC_STR = new Vector<>();
    private static final Vector<Class<?>>   EMPTY_VEC_CLASS = new Vector<>();

    static
    {
        for (Method m : Profiler.class.getMethods())
        {
            // This doesn't work!  The parameter names are all "arg0" ... "argN"
            // It works for java.lang.reflect.Field, BUT NOT java.lang.reflect.Parameter!
            //
            // Vector<String> parameterNamesList = new Vector<>(); -- NOPE!

            Vector<Class<?>> parameterTypesList = new Vector<>();
        
            for (Parameter p : m.getParameters()) parameterTypesList.add(p.getType());

            parameterTypes.put(
                m.getName(),
                (parameterTypesList.size() > 0) ? parameterTypesList : EMPTY_VEC_CLASS
            );
        }
    }

    static
    {
        Vector<String> v = null;

        parameterNames.put("disable", EMPTY_VEC_STR);

        parameterNames.put("enable", EMPTY_VEC_STR);

        parameterNames.put("getBestEffortCoverage", EMPTY_VEC_STR);

        v = new Vector<String>(1);
        parameterNames.put("setSamplingInterval", v);
        Collections.addAll(v, new String[]
        { "interval", });

        parameterNames.put("start", EMPTY_VEC_STR);

        v = new Vector<String>(3);
        parameterNames.put("startPreciseCoverage", v);
        Collections.addAll(v, new String[]
        { "callCount", "detailed", "allowTriggeredUpdates", });

        parameterNames.put("startTypeProfile", EMPTY_VEC_STR);

        parameterNames.put("stop", EMPTY_VEC_STR);

        parameterNames.put("stopPreciseCoverage", EMPTY_VEC_STR);

        parameterNames.put("stopTypeProfile", EMPTY_VEC_STR);

        parameterNames.put("takePreciseCoverage", EMPTY_VEC_STR);

        parameterNames.put("takeTypeProfile", EMPTY_VEC_STR);
    }


    // ********************************************************************************************
    // ********************************************************************************************
    // Types - Static Inner Classes
    // ********************************************************************************************
    // ********************************************************************************************

    /** Profile node. Holds callsite information, execution statistics and child nodes. */
    public static class ProfileNode
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, true, true, true, true, }; }
        
        /** Unique id of the node. */
        public final int id;
        
        /** Function location. */
        public final RunTime.CallFrame callFrame;
        
        /**
         * Number of samples where this node was on top of the call stack.
         * <BR />
         * <BR /><B>OPTIONAL</B>
         */
        public final Integer hitCount;
        
        /**
         * Child node ids.
         * <BR />
         * <BR /><B>OPTIONAL</B>
         */
        public final int[] children;
        
        /**
         * The reason of being not optimized. The function may be deoptimized or marked as don't
         * optimize.
         * <BR />
         * <BR /><B>OPTIONAL</B>
         */
        public final String deoptReason;
        
        /**
         * An array of source position ticks.
         * <BR />
         * <BR /><B>OPTIONAL</B>
         */
        public final Profiler.PositionTickInfo[] positionTicks;
        
        /**
         * Constructor
         *
         * @param id Unique id of the node.
         * 
         * @param callFrame Function location.
         * 
         * @param hitCount Number of samples where this node was on top of the call stack.
         * <BR /><B>OPTIONAL</B>
         * 
         * @param children Child node ids.
         * <BR /><B>OPTIONAL</B>
         * 
         * @param deoptReason 
         * The reason of being not optimized. The function may be deoptimized or marked as don't
         * optimize.
         * <BR /><B>OPTIONAL</B>
         * 
         * @param positionTicks An array of source position ticks.
         * <BR /><B>OPTIONAL</B>
         */
        public ProfileNode(
                int id, RunTime.CallFrame callFrame, Integer hitCount, int[] children, 
                String deoptReason, Profiler.PositionTickInfo[] positionTicks
            )
        {
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (callFrame == null) BRDPC.throwNPE("callFrame");
            
            this.id             = id;
            this.callFrame      = callFrame;
            this.hitCount       = hitCount;
            this.children       = children;
            this.deoptReason    = deoptReason;
            this.positionTicks  = positionTicks;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'ProfileNode'}.
         */
        public ProfileNode (JsonObject jo)
        {
            this.id             = ReadPrimJSON.getInt(jo, "id");
            this.callFrame      = ReadJSON.getObject(jo, "callFrame", RunTime.CallFrame.class, false, true);
            this.hitCount       = ReadBoxedJSON.getInteger(jo, "hitCount", true);
            this.children = (jo.getJsonArray("children") == null)
                ? null
                : ReadArrJSON.DimN.intArr(jo.getJsonArray("children"), -1, 0, null, int[].class);
        
            this.deoptReason    = ReadJSON.getString(jo, "deoptReason", true, false);
            this.positionTicks = (jo.getJsonArray("positionTicks") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("positionTicks"), null, 0, Profiler.PositionTickInfo[].class);
        
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            ProfileNode o = (ProfileNode) other;
        
            return
                    (this.id == o.id)
                &&  Objects.equals(this.callFrame, o.callFrame)
                &&  Objects.equals(this.hitCount, o.hitCount)
                &&  Arrays.equals(this.children, o.children)
                &&  Objects.equals(this.deoptReason, o.deoptReason)
                &&  Arrays.deepEquals(this.positionTicks, o.positionTicks);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    this.id
                +   this.callFrame.hashCode()
                +   Objects.hashCode(this.hitCount)
                +   Arrays.hashCode(this.children)
                +   Objects.hashCode(this.deoptReason)
                +   Arrays.deepHashCode(this.positionTicks);
        }
    }
    
    /** Profile. */
    public static class Profile
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, false, true, true, }; }
        
        /** The list of profile nodes. First item is the root node. */
        public final Profiler.ProfileNode[] nodes;
        
        /** Profiling start timestamp in microseconds. */
        public final Number startTime;
        
        /** Profiling end timestamp in microseconds. */
        public final Number endTime;
        
        /**
         * Ids of samples top nodes.
         * <BR />
         * <BR /><B>OPTIONAL</B>
         */
        public final int[] samples;
        
        /**
         * Time intervals between adjacent samples in microseconds. The first delta is relative to the
         * profile startTime.
         * <BR />
         * <BR /><B>OPTIONAL</B>
         */
        public final int[] timeDeltas;
        
        /**
         * Constructor
         *
         * @param nodes The list of profile nodes. First item is the root node.
         * 
         * @param startTime Profiling start timestamp in microseconds.
         * 
         * @param endTime Profiling end timestamp in microseconds.
         * 
         * @param samples Ids of samples top nodes.
         * <BR /><B>OPTIONAL</B>
         * 
         * @param timeDeltas 
         * Time intervals between adjacent samples in microseconds. The first delta is relative to the
         * profile startTime.
         * <BR /><B>OPTIONAL</B>
         */
        public Profile(
                Profiler.ProfileNode[] nodes, Number startTime, Number endTime, int[] samples, 
                int[] timeDeltas
            )
        {
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (nodes == null)     BRDPC.throwNPE("nodes");
            if (startTime == null) BRDPC.throwNPE("startTime");
            if (endTime == null)   BRDPC.throwNPE("endTime");
            
            this.nodes       = nodes;
            this.startTime   = startTime;
            this.endTime     = endTime;
            this.samples     = samples;
            this.timeDeltas  = timeDeltas;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'Profile'}.
         */
        public Profile (JsonObject jo)
        {
            this.nodes = (jo.getJsonArray("nodes") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("nodes"), null, 0, Profiler.ProfileNode[].class);
        
            this.startTime   = ReadNumberJSON.get(jo, "startTime", false, true);
            this.endTime     = ReadNumberJSON.get(jo, "endTime", false, true);
            this.samples = (jo.getJsonArray("samples") == null)
                ? null
                : ReadArrJSON.DimN.intArr(jo.getJsonArray("samples"), -1, 0, null, int[].class);
        
            this.timeDeltas = (jo.getJsonArray("timeDeltas") == null)
                ? null
                : ReadArrJSON.DimN.intArr(jo.getJsonArray("timeDeltas"), -1, 0, null, int[].class);
        
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            Profile o = (Profile) other;
        
            return
                    Arrays.deepEquals(this.nodes, o.nodes)
                &&  Objects.equals(this.startTime, o.startTime)
                &&  Objects.equals(this.endTime, o.endTime)
                &&  Arrays.equals(this.samples, o.samples)
                &&  Arrays.equals(this.timeDeltas, o.timeDeltas);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    Arrays.deepHashCode(this.nodes)
                +   Objects.hashCode(this.startTime)
                +   Objects.hashCode(this.endTime)
                +   Arrays.hashCode(this.samples)
                +   Arrays.hashCode(this.timeDeltas);
        }
    }
    
    /** Specifies a number of samples attributed to a certain source position. */
    public static class PositionTickInfo
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, }; }
        
        /** Source line number (1-based). */
        public final int line;
        
        /** Number of samples attributed to the source line. */
        public final int ticks;
        
        /**
         * Constructor
         *
         * @param line Source line number (1-based).
         * 
         * @param ticks Number of samples attributed to the source line.
         */
        public PositionTickInfo(int line, int ticks)
        {
            this.line   = line;
            this.ticks  = ticks;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'PositionTickInfo'}.
         */
        public PositionTickInfo (JsonObject jo)
        {
            this.line   = ReadPrimJSON.getInt(jo, "line");
            this.ticks  = ReadPrimJSON.getInt(jo, "ticks");
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            PositionTickInfo o = (PositionTickInfo) other;
        
            return
                    (this.line == o.line)
                &&  (this.ticks == o.ticks);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    this.line
                +   this.ticks;
        }
    }
    
    /** Coverage data for a source range. */
    public static class CoverageRange
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, false, }; }
        
        /** JavaScript script source offset for the range start. */
        public final int startOffset;
        
        /** JavaScript script source offset for the range end. */
        public final int endOffset;
        
        /** Collected execution count of the source range. */
        public final int count;
        
        /**
         * Constructor
         *
         * @param startOffset JavaScript script source offset for the range start.
         * 
         * @param endOffset JavaScript script source offset for the range end.
         * 
         * @param count Collected execution count of the source range.
         */
        public CoverageRange(int startOffset, int endOffset, int count)
        {
            this.startOffset  = startOffset;
            this.endOffset    = endOffset;
            this.count        = count;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'CoverageRange'}.
         */
        public CoverageRange (JsonObject jo)
        {
            this.startOffset  = ReadPrimJSON.getInt(jo, "startOffset");
            this.endOffset    = ReadPrimJSON.getInt(jo, "endOffset");
            this.count        = ReadPrimJSON.getInt(jo, "count");
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            CoverageRange o = (CoverageRange) other;
        
            return
                    (this.startOffset == o.startOffset)
                &&  (this.endOffset == o.endOffset)
                &&  (this.count == o.count);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    this.startOffset
                +   this.endOffset
                +   this.count;
        }
    }
    
    /** Coverage data for a JavaScript function. */
    public static class FunctionCoverage
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, false, }; }
        
        /** JavaScript function name. */
        public final String functionName;
        
        /** Source ranges inside the function with coverage data. */
        public final Profiler.CoverageRange[] ranges;
        
        /** Whether coverage data for this function has block granularity. */
        public final boolean isBlockCoverage;
        
        /**
         * Constructor
         *
         * @param functionName JavaScript function name.
         * 
         * @param ranges Source ranges inside the function with coverage data.
         * 
         * @param isBlockCoverage Whether coverage data for this function has block granularity.
         */
        public FunctionCoverage
            (String functionName, Profiler.CoverageRange[] ranges, boolean isBlockCoverage)
        {
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (functionName == null) BRDPC.throwNPE("functionName");
            if (ranges == null)       BRDPC.throwNPE("ranges");
            
            this.functionName     = functionName;
            this.ranges           = ranges;
            this.isBlockCoverage  = isBlockCoverage;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'FunctionCoverage'}.
         */
        public FunctionCoverage (JsonObject jo)
        {
            this.functionName     = ReadJSON.getString(jo, "functionName", false, true);
            this.ranges = (jo.getJsonArray("ranges") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("ranges"), null, 0, Profiler.CoverageRange[].class);
        
            this.isBlockCoverage  = ReadPrimJSON.getBoolean(jo, "isBlockCoverage");
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            FunctionCoverage o = (FunctionCoverage) other;
        
            return
                    Objects.equals(this.functionName, o.functionName)
                &&  Arrays.deepEquals(this.ranges, o.ranges)
                &&  (this.isBlockCoverage == o.isBlockCoverage);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    Objects.hashCode(this.functionName)
                +   Arrays.deepHashCode(this.ranges)
                +   (this.isBlockCoverage ? 1 : 0);
        }
    }
    
    /** Coverage data for a JavaScript script. */
    public static class ScriptCoverage
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, false, }; }
        
        /** JavaScript script id. */
        public final String scriptId;
        
        /** JavaScript script name or url. */
        public final String url;
        
        /** Functions contained in the script that has coverage data. */
        public final Profiler.FunctionCoverage[] functions;
        
        /**
         * Constructor
         *
         * @param scriptId JavaScript script id.
         * 
         * @param url JavaScript script name or url.
         * 
         * @param functions Functions contained in the script that has coverage data.
         */
        public ScriptCoverage
            (String scriptId, String url, Profiler.FunctionCoverage[] functions)
        {
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (scriptId == null)  BRDPC.throwNPE("scriptId");
            if (url == null)       BRDPC.throwNPE("url");
            if (functions == null) BRDPC.throwNPE("functions");
            
            this.scriptId   = scriptId;
            this.url        = url;
            this.functions  = functions;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'ScriptCoverage'}.
         */
        public ScriptCoverage (JsonObject jo)
        {
            this.scriptId   = ReadJSON.getString(jo, "scriptId", false, true);
            this.url        = ReadJSON.getString(jo, "url", false, true);
            this.functions = (jo.getJsonArray("functions") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("functions"), null, 0, Profiler.FunctionCoverage[].class);
        
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            ScriptCoverage o = (ScriptCoverage) other;
        
            return
                    Objects.equals(this.scriptId, o.scriptId)
                &&  Objects.equals(this.url, o.url)
                &&  Arrays.deepEquals(this.functions, o.functions);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    Objects.hashCode(this.scriptId)
                +   Objects.hashCode(this.url)
                +   Arrays.deepHashCode(this.functions);
        }
    }
    
    /**
     * Describes a type collected during runtime.
     * <BR />
     * <BR /><B>EXPERIMENTAL</B>
     */
    public static class TypeObject
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, }; }
        
        /** Name of a type collected with type profiling. */
        public final String name;
        
        /**
         * Constructor
         *
         * @param name Name of a type collected with type profiling.
         */
        public TypeObject(String name)
        {
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (name == null) BRDPC.throwNPE("name");
            
            this.name  = name;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'TypeObject'}.
         */
        public TypeObject (JsonObject jo)
        {
            this.name  = ReadJSON.getString(jo, "name", false, true);
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            TypeObject o = (TypeObject) other;
        
            return
                    Objects.equals(this.name, o.name);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    Objects.hashCode(this.name);
        }
    }
    
    /**
     * Source offset and types for a parameter or return value.
     * <BR />
     * <BR /><B>EXPERIMENTAL</B>
     */
    public static class TypeProfileEntry
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, }; }
        
        /** Source offset of the parameter or end of function for return values. */
        public final int offset;
        
        /** The types for this parameter or return value. */
        public final Profiler.TypeObject[] types;
        
        /**
         * Constructor
         *
         * @param offset Source offset of the parameter or end of function for return values.
         * 
         * @param types The types for this parameter or return value.
         */
        public TypeProfileEntry(int offset, Profiler.TypeObject[] types)
        {
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (types == null) BRDPC.throwNPE("types");
            
            this.offset  = offset;
            this.types   = types;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'TypeProfileEntry'}.
         */
        public TypeProfileEntry (JsonObject jo)
        {
            this.offset  = ReadPrimJSON.getInt(jo, "offset");
            this.types = (jo.getJsonArray("types") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("types"), null, 0, Profiler.TypeObject[].class);
        
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            TypeProfileEntry o = (TypeProfileEntry) other;
        
            return
                    (this.offset == o.offset)
                &&  Arrays.deepEquals(this.types, o.types);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    this.offset
                +   Arrays.deepHashCode(this.types);
        }
    }
    
    /**
     * Type profile data collected during runtime for a JavaScript script.
     * <BR />
     * <BR /><B>EXPERIMENTAL</B>
     */
    public static class ScriptTypeProfile
        extends BaseType
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, false, }; }
        
        /** JavaScript script id. */
        public final String scriptId;
        
        /** JavaScript script name or url. */
        public final String url;
        
        /** Type profile entries for parameters and return values of the functions in the script. */
        public final Profiler.TypeProfileEntry[] entries;
        
        /**
         * Constructor
         *
         * @param scriptId JavaScript script id.
         * 
         * @param url JavaScript script name or url.
         * 
         * @param entries Type profile entries for parameters and return values of the functions in the script.
         */
        public ScriptTypeProfile
            (String scriptId, String url, Profiler.TypeProfileEntry[] entries)
        {
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (scriptId == null) BRDPC.throwNPE("scriptId");
            if (url == null)      BRDPC.throwNPE("url");
            if (entries == null)  BRDPC.throwNPE("entries");
            
            this.scriptId  = scriptId;
            this.url       = url;
            this.entries   = entries;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'ScriptTypeProfile'}.
         */
        public ScriptTypeProfile (JsonObject jo)
        {
            this.scriptId  = ReadJSON.getString(jo, "scriptId", false, true);
            this.url       = ReadJSON.getString(jo, "url", false, true);
            this.entries = (jo.getJsonArray("entries") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("entries"), null, 0, Profiler.TypeProfileEntry[].class);
        
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            ScriptTypeProfile o = (ScriptTypeProfile) other;
        
            return
                    Objects.equals(this.scriptId, o.scriptId)
                &&  Objects.equals(this.url, o.url)
                &&  Arrays.deepEquals(this.entries, o.entries);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    Objects.hashCode(this.scriptId)
                +   Objects.hashCode(this.url)
                +   Arrays.deepHashCode(this.entries);
        }
    }
    
    /** <CODE>[No Description Provided by Google]</CODE> */
    public static class consoleProfileFinished
        extends BrowserEvent
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, false, true, }; }
        
        /** <CODE>[No Description Provided by Google]</CODE> */
        public final String id;
        
        /** Location of console.profileEnd(). */
        public final Debugger.Location location;
        
        /** <CODE>[No Description Provided by Google]</CODE> */
        public final Profiler.Profile profile;
        
        /**
         * Profile title passed as an argument to console.profile().
         * <BR />
         * <BR /><B>OPTIONAL</B>
         */
        public final String title;
        
        /**
         * Constructor
         *
         * @param id -
         * 
         * @param location Location of console.profileEnd().
         * 
         * @param profile -
         * 
         * @param title Profile title passed as an argument to console.profile().
         * <BR /><B>OPTIONAL</B>
         */
        public consoleProfileFinished
            (String id, Debugger.Location location, Profiler.Profile profile, String title)
        {
            super("Profiler", "consoleProfileFinished", 4);
            
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (id == null)       BRDPC.throwNPE("id");
            if (location == null) BRDPC.throwNPE("location");
            if (profile == null)  BRDPC.throwNPE("profile");
            
            this.id        = id;
            this.location  = location;
            this.profile   = profile;
            this.title     = title;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'consoleProfileFinished'}.
         */
        public consoleProfileFinished (JsonObject jo)
        {
            super("Profiler", "consoleProfileFinished", 4);
        
            this.id        = ReadJSON.getString(jo, "id", false, true);
            this.location  = ReadJSON.getObject(jo, "location", Debugger.Location.class, false, true);
            this.profile   = ReadJSON.getObject(jo, "profile", Profiler.Profile.class, false, true);
            this.title     = ReadJSON.getString(jo, "title", true, false);
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            consoleProfileFinished o = (consoleProfileFinished) other;
        
            return
                    Objects.equals(this.id, o.id)
                &&  Objects.equals(this.location, o.location)
                &&  Objects.equals(this.profile, o.profile)
                &&  Objects.equals(this.title, o.title);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    Objects.hashCode(this.id)
                +   this.location.hashCode()
                +   this.profile.hashCode()
                +   Objects.hashCode(this.title);
        }
    }
    
    /** Sent when new profile recording is started using console.profile() call. */
    public static class consoleProfileStarted
        extends BrowserEvent
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, true, }; }
        
        /** <CODE>[No Description Provided by Google]</CODE> */
        public final String id;
        
        /** Location of console.profile(). */
        public final Debugger.Location location;
        
        /**
         * Profile title passed as an argument to console.profile().
         * <BR />
         * <BR /><B>OPTIONAL</B>
         */
        public final String title;
        
        /**
         * Constructor
         *
         * @param id -
         * 
         * @param location Location of console.profile().
         * 
         * @param title Profile title passed as an argument to console.profile().
         * <BR /><B>OPTIONAL</B>
         */
        public consoleProfileStarted(String id, Debugger.Location location, String title)
        {
            super("Profiler", "consoleProfileStarted", 3);
            
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (id == null)       BRDPC.throwNPE("id");
            if (location == null) BRDPC.throwNPE("location");
            
            this.id        = id;
            this.location  = location;
            this.title     = title;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'consoleProfileStarted'}.
         */
        public consoleProfileStarted (JsonObject jo)
        {
            super("Profiler", "consoleProfileStarted", 3);
        
            this.id        = ReadJSON.getString(jo, "id", false, true);
            this.location  = ReadJSON.getObject(jo, "location", Debugger.Location.class, false, true);
            this.title     = ReadJSON.getString(jo, "title", true, false);
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            consoleProfileStarted o = (consoleProfileStarted) other;
        
            return
                    Objects.equals(this.id, o.id)
                &&  Objects.equals(this.location, o.location)
                &&  Objects.equals(this.title, o.title);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    Objects.hashCode(this.id)
                +   this.location.hashCode()
                +   Objects.hashCode(this.title);
        }
    }
    
    /**
     * Reports coverage delta since the last poll (either from an event like this, or from
     * <CODE>takePreciseCoverage</CODE> for the current isolate. May only be sent if precise code
     * coverage has been started. This event can be trigged by the embedder to, for example,
     * trigger collection of coverage data immediately at a certain point in time.
     * <BR />
     * <BR /><B>EXPERIMENTAL</B>
     */
    public static class preciseCoverageDeltaUpdate
        extends BrowserEvent
        implements java.io.Serializable
    {
        /** For Object Serialization.  java.io.Serializable */
        protected static final long serialVersionUID = 1;
        
        public boolean[] optionals()
        { return new boolean[] { false, false, false, }; }
        
        /** Monotonically increasing time (in seconds) when the coverage update was taken in the backend. */
        public final Number timestamp;
        
        /** Identifier for distinguishing coverage events. */
        public final String occasion;
        
        /** Coverage data for the current isolate. */
        public final Profiler.ScriptCoverage[] result;
        
        /**
         * Constructor
         *
         * @param timestamp Monotonically increasing time (in seconds) when the coverage update was taken in the backend.
         * 
         * @param occasion Identifier for distinguishing coverage events.
         * 
         * @param result Coverage data for the current isolate.
         */
        public preciseCoverageDeltaUpdate
            (Number timestamp, String occasion, Profiler.ScriptCoverage[] result)
        {
            super("Profiler", "preciseCoverageDeltaUpdate", 3);
            
            // Exception-Check(s) to ensure that if any parameters which are not declared as
            // 'Optional', but have a 'null' value anyway, that a NullPointerException shall throw.
            
            if (timestamp == null) BRDPC.throwNPE("timestamp");
            if (occasion == null)  BRDPC.throwNPE("occasion");
            if (result == null)    BRDPC.throwNPE("result");
            
            this.timestamp  = timestamp;
            this.occasion   = occasion;
            this.result     = result;
        }
        
        /**
         * JSON Object Constructor
         * @param jo A Json-Object having data about an instance of {@code 'preciseCoverageDeltaUpdate'}.
         */
        public preciseCoverageDeltaUpdate (JsonObject jo)
        {
            super("Profiler", "preciseCoverageDeltaUpdate", 3);
        
            this.timestamp  = ReadNumberJSON.get(jo, "timestamp", false, true);
            this.occasion   = ReadJSON.getString(jo, "occasion", false, true);
            this.result = (jo.getJsonArray("result") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("result"), null, 0, Profiler.ScriptCoverage[].class);
        
        }
        
        
        /** Checks whether {@code 'this'} equals an input Java-{@code Object} */
        public boolean equals(Object other)
        {
            if (other == null)                       return false;
            if (other.getClass() != this.getClass()) return false;
        
            preciseCoverageDeltaUpdate o = (preciseCoverageDeltaUpdate) other;
        
            return
                    Objects.equals(this.timestamp, o.timestamp)
                &&  Objects.equals(this.occasion, o.occasion)
                &&  Arrays.deepEquals(this.result, o.result);
        }
        
        /** Generates a Hash-Code for {@code 'this'} instance */
        public int hashCode()
        {
            return
                    Objects.hashCode(this.timestamp)
                +   Objects.hashCode(this.occasion)
                +   Arrays.deepHashCode(this.result);
        }
    }
    
    
    // Counter for keeping the WebSocket Request ID's distinct.
    private static int counter = 1;
    
    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Ret0}&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR />This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0}
     * {@code >} to ensure the Browser Function has run to completion.
     */
    public static Script<String, JsonObject, Ret0> disable()
    {
        final int          webSocketID = 4000000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("disable"),
            parameterNames.get("disable"),
            optionals, webSocketID,
            "Profiler.disable"
        );
        
        // This Remote Command does not have a Return-Value.
        return new Script<>
            (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues);
    }
    
    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Ret0}&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR />This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0}
     * {@code >} to ensure the Browser Function has run to completion.
     */
    public static Script<String, JsonObject, Ret0> enable()
    {
        final int          webSocketID = 4001000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("enable"),
            parameterNames.get("enable"),
            optionals, webSocketID,
            "Profiler.enable"
        );
        
        // This Remote Command does not have a Return-Value.
        return new Script<>
            (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues);
    }
    
    /**
     * Collect coverage data for the current isolate. The coverage data may be incomplete due to
     * garbage collection.
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Profiler.ScriptCoverage}[]&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec()}, and afterwards, a {@link Promise}<CODE>&lt;JsonObject,
     * {@link Profiler.ScriptCoverage}[]&gt;</CODE> will be returned.
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
      * may be retrieved.</I>
     *
     * <BR /><BR />This Browser Function <B STYLE='color: red'>returns</B>
     * <BR /><BR /><UL CLASS=JDUL>
     * <LI><CODE>{@link Profiler.ScriptCoverage}[] (<B>result</B></CODE>)
     *     <BR />Coverage data for the current isolate.
     * </LI>
     * </UL> */
    public static Script<String, JsonObject, Profiler.ScriptCoverage[]> getBestEffortCoverage()
    {
        final int          webSocketID = 4002000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("getBestEffortCoverage"),
            parameterNames.get("getBestEffortCoverage"),
            optionals, webSocketID,
            "Profiler.getBestEffortCoverage"
        );
        
        // 'JSON Binding' ... Converts Browser Response-JSON to 'Profiler.ScriptCoverage[]'
        Function<JsonObject, Profiler.ScriptCoverage[]> responseProcessor = (JsonObject jo) ->
            (jo.getJsonArray("result") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("result"), null, 0, Profiler.ScriptCoverage[].class);
        
        // Pass the 'defaultSender' to Script-Constructor
        // The sender that is used can be changed before executing script.
        return new Script<>(BRDPC.defaultSender, webSocketID, requestJSON, responseProcessor);
    }
    
    /**
     * Changes CPU profiler sampling interval. Must be called before CPU profiles recording started.
     * 
     * @param interval New sampling interval in microseconds.
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Ret0}&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR />This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0}
     * {@code >} to ensure the Browser Function has run to completion.
     */
    public static Script<String, JsonObject, Ret0> setSamplingInterval(int interval)
    {
        final int       webSocketID = 4003000 + counter++;
        final boolean[] optionals   = { false, };
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("setSamplingInterval"),
            parameterNames.get("setSamplingInterval"),
            optionals, webSocketID,
            "Profiler.setSamplingInterval",
            interval
        );
        
        // This Remote Command does not have a Return-Value.
        return new Script<>
            (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues);
    }
    
    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Ret0}&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR />This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0}
     * {@code >} to ensure the Browser Function has run to completion.
     */
    public static Script<String, JsonObject, Ret0> start()
    {
        final int          webSocketID = 4004000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("start"),
            parameterNames.get("start"),
            optionals, webSocketID,
            "Profiler.start"
        );
        
        // This Remote Command does not have a Return-Value.
        return new Script<>
            (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues);
    }
    
    /**
     * Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code
     * coverage may be incomplete. Enabling prevents running optimized code and resets execution
     * counters.
     * 
     * @param callCount Collect accurate call counts beyond simple 'covered' or 'not covered'.
     * <BR /><B>OPTIONAL</B>
     * 
     * @param detailed Collect block-based coverage.
     * <BR /><B>OPTIONAL</B>
     * 
     * @param allowTriggeredUpdates Allow the backend to send updates on its own initiative
     * <BR /><B>OPTIONAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * Number&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec()}, and afterwards, a {@link Promise}<CODE>&lt;JsonObject,
     * Number&gt;</CODE> will be returned.
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
      * may be retrieved.</I>
     *
     * <BR /><BR />This Browser Function <B STYLE='color: red'>returns</B>
     * <BR /><BR /><UL CLASS=JDUL>
     * <LI><CODE>Number (<B>timestamp</B></CODE>)
     *     <BR />Monotonically increasing time (in seconds) when the coverage update was taken in the backend.
     * </LI>
     * </UL> */
    public static Script<String, JsonObject, Number> startPreciseCoverage
        (Boolean callCount, Boolean detailed, Boolean allowTriggeredUpdates)
    {
        final int       webSocketID = 4005000 + counter++;
        final boolean[] optionals   = { true, true, true, };
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("startPreciseCoverage"),
            parameterNames.get("startPreciseCoverage"),
            optionals, webSocketID,
            "Profiler.startPreciseCoverage",
            callCount, detailed, allowTriggeredUpdates
        );
        
        // 'JSON Binding' ... Converts Browser Response-JSON to 'Number'
        Function<JsonObject, Number> responseProcessor = (JsonObject jo) ->
            ReadNumberJSON.get(jo, "timestamp", false, true);
        
        // Pass the 'defaultSender' to Script-Constructor
        // The sender that is used can be changed before executing script.
        return new Script<>(BRDPC.defaultSender, webSocketID, requestJSON, responseProcessor);
    }
    
    /**
     * Enable type profile.
     * <BR /><B>EXPERIMENTAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Ret0}&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR />This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0}
     * {@code >} to ensure the Browser Function has run to completion.
     */
    public static Script<String, JsonObject, Ret0> startTypeProfile()
    {
        final int          webSocketID = 4006000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("startTypeProfile"),
            parameterNames.get("startTypeProfile"),
            optionals, webSocketID,
            "Profiler.startTypeProfile"
        );
        
        // This Remote Command does not have a Return-Value.
        return new Script<>
            (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues);
    }
    
    /**
     * <CODE>[No Description Provided by Google]</CODE>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Profiler.Profile}&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec()}, and afterwards, a {@link Promise}<CODE>&lt;JsonObject,
     * {@link Profiler.Profile}&gt;</CODE> will be returned.
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
      * may be retrieved.</I>
     *
     * <BR /><BR />This Browser Function <B STYLE='color: red'>returns</B>
     * <BR /><BR /><UL CLASS=JDUL>
     * <LI><CODE>{@link Profiler.Profile} (<B>profile</B></CODE>)
     *     <BR />Recorded profile.
     * </LI>
     * </UL> */
    public static Script<String, JsonObject, Profiler.Profile> stop()
    {
        final int          webSocketID = 4007000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("stop"),
            parameterNames.get("stop"),
            optionals, webSocketID,
            "Profiler.stop"
        );
        
        // 'JSON Binding' ... Converts Browser Response-JSON to 'Profiler.Profile'
        Function<JsonObject, Profiler.Profile> responseProcessor = (JsonObject jo) ->
            ReadJSON.getObject(jo, "profile", Profiler.Profile.class, false, true);
        
        // Pass the 'defaultSender' to Script-Constructor
        // The sender that is used can be changed before executing script.
        return new Script<>(BRDPC.defaultSender, webSocketID, requestJSON, responseProcessor);
    }
    
    /**
     * Disable precise code coverage. Disabling releases unnecessary execution count records and allows
     * executing optimized code.
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Ret0}&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR />This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0}
     * {@code >} to ensure the Browser Function has run to completion.
     */
    public static Script<String, JsonObject, Ret0> stopPreciseCoverage()
    {
        final int          webSocketID = 4008000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("stopPreciseCoverage"),
            parameterNames.get("stopPreciseCoverage"),
            optionals, webSocketID,
            "Profiler.stopPreciseCoverage"
        );
        
        // This Remote Command does not have a Return-Value.
        return new Script<>
            (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues);
    }
    
    /**
     * Disable type profile. Disabling releases type profile data collected so far.
     * <BR /><B>EXPERIMENTAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Ret0}&gt;</CODE>
     *
     * <BR /><BR />This {@code Script} instance must be <B STYLE='color:red'>executed</B> before the
     * browser receives the invocation-request.
     *
     * <BR /><BR />This Browser-Function <I>does not have</I> a return-value.  You may choose to
     * <B STYLE='color: red'>await</B> the {@link Promise}{@code <JsonObject,} {@link Ret0}
     * {@code >} to ensure the Browser Function has run to completion.
     */
    public static Script<String, JsonObject, Ret0> stopTypeProfile()
    {
        final int          webSocketID = 4009000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("stopTypeProfile"),
            parameterNames.get("stopTypeProfile"),
            optionals, webSocketID,
            "Profiler.stopTypeProfile"
        );
        
        // This Remote Command does not have a Return-Value.
        return new Script<>
            (BRDPC.defaultSender, webSocketID, requestJSON, BRDPC.NoReturnValues);
    }
    
    /**
     * Collect coverage data for the current isolate, and resets execution counters. Precise code
     * coverage needs to have started.
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Ret2}&gt;</CODE>
     *
     * <BR /><BR />This {@link Script} may be <B STYLE='color:red'>executed</B> (using 
     * {@link Script#exec()}), and a {@link Promise} returned.
     *
     * <BR /><BR />When the {@code Promise} is <B STYLE='color: red'>awaited</B>
     * (using {@link Promise#await()}), the {@code Ret2} will subsequently
     * be returned from that call.
     * 
     * <BR /><BR />The <B STYLE='color: red'>returned</B> values are encapsulated
     * in an instance of <B>{@link Ret2}</B>
     *
     * <BR /><BR /><UL CLASS=JDUL>
     * <LI><CODE><B>Ret2.a:</B> {@link Profiler.ScriptCoverage}[] (<B>result</B>)</CODE>
     *     <BR />Coverage data for the current isolate.
     *     <BR /><BR /></LI>
     * <LI><CODE><B>Ret2.b:</B> Number (<B>timestamp</B>)</CODE>
     *     <BR />Monotonically increasing time (in seconds) when the coverage update was taken in the backend.
     *     </LI>
     * </UL>
     */
    public static Script<String, JsonObject, Ret2<Profiler.ScriptCoverage[], Number>> takePreciseCoverage()
    {
        final int          webSocketID = 4010000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("takePreciseCoverage"),
            parameterNames.get("takePreciseCoverage"),
            optionals, webSocketID,
            "Profiler.takePreciseCoverage"
        );
        
        // 'JSON Binding' ... Converts Browser Response-JSON into Java-Type 'Ret2'
        Function<JsonObject, Ret2<Profiler.ScriptCoverage[], Number>> 
            responseProcessor = (JsonObject jo) -> new Ret2<>(
                (jo.getJsonArray("result") == null)
                    ? null
                    : ReadArrJSON.DimN.objArr(jo.getJsonArray("result"), null, 0, Profiler.ScriptCoverage[].class),
                ReadNumberJSON.get(jo, "timestamp", false, true)
            );
        
        // Pass the 'defaultSender' to Script-Constructor
        // The sender that is used can be changed before executing script.
        return new Script<>(BRDPC.defaultSender, webSocketID, requestJSON, responseProcessor);
    }
    
    /**
     * Collect type profile.
     * <BR /><B>EXPERIMENTAL</B>
     * 
     * @return An instance of <CODE>{@link Script}&lt;String, {@link JsonObject},
     * {@link Profiler.ScriptTypeProfile}[]&gt;</CODE>
     * 
     * <BR /><BR />This <B>script</B> may be <B STYLE='color: red'>executed</B>, using
     * {@link Script#exec()}, and afterwards, a {@link Promise}<CODE>&lt;JsonObject,
     * {@link Profiler.ScriptTypeProfile}[]&gt;</CODE> will be returned.
     *
     * <BR /><BR />Finally, the <B>{@code Promise}</B> may be <B STYLE='color: red'>awaited</B>,
     * using {@link Promise#await()}, <I>and the returned result of this Browser Function may
      * may be retrieved.</I>
     *
     * <BR /><BR />This Browser Function <B STYLE='color: red'>returns</B>
     * <BR /><BR /><UL CLASS=JDUL>
     * <LI><CODE>{@link Profiler.ScriptTypeProfile}[] (<B>result</B></CODE>)
     *     <BR />Type profile for all scripts since startTypeProfile() was turned on.
     * </LI>
     * </UL> */
    public static Script<String, JsonObject, Profiler.ScriptTypeProfile[]> takeTypeProfile()
    {
        final int          webSocketID = 4011000 + counter++;
        final boolean[]    optionals   = new boolean[0];
        
        // Convert Method Parameters into JSON.  Build the JSON Request-Object (as a String)
        String requestJSON = WriteJSON.get(
            parameterTypes.get("takeTypeProfile"),
            parameterNames.get("takeTypeProfile"),
            optionals, webSocketID,
            "Profiler.takeTypeProfile"
        );
        
        // 'JSON Binding' ... Converts Browser Response-JSON to 'Profiler.ScriptTypeProfile[]'
        Function<JsonObject, Profiler.ScriptTypeProfile[]> responseProcessor = (JsonObject jo) ->
            (jo.getJsonArray("result") == null)
                ? null
                : ReadArrJSON.DimN.objArr(jo.getJsonArray("result"), null, 0, Profiler.ScriptTypeProfile[].class);
        
        // Pass the 'defaultSender' to Script-Constructor
        // The sender that is used can be changed before executing script.
        return new Script<>(BRDPC.defaultSender, webSocketID, requestJSON, responseProcessor);
    }
    
}