Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(775)

Side by Side Diff: tests/lib_strong/html/debugger_test.dart

Issue 2703263002: Custom formatter cleanup Fix case where displaying a class constructor generated unreadable huge ou… (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 /// Debugger custom formatter tests.
2 /// If the tests fail, paste the expected output into the [expectedGolden]
3 /// string literal in this file and audit the diff to ensure changes are
4 /// expected.
5 ///
6 /// Currently only DDC supports debugging objects with custom formatters
7 /// but it is reasonable to add support to Dart2JS in the future.
8 @JS()
9 library debugger_test;
10
11 import 'dart:html';
12 import 'package:js/js.dart';
13 import 'package:js/js_util.dart' as js_util;
14
15 import 'package:expect/minitest.dart';
16
17 class TestClass {
18 String name = 'test class';
19 int date;
20 static List<int> foo = [1, 2, 3, 4];
21 static String greeting = 'Hello world';
22 static Object bar = new Object();
23
24 static exampleStaticMethod(x) => x * 2;
25
26 TestClass(this.date);
27
28 String nameAndDate() => '$name on day $date';
29
30 int last(List<int> list) => list.last;
31
32 void addOne(String name) {
33 name = '${name}1';
34 }
35
36 get someInt => 42;
37 get someString => "Hello world";
38 get someObject => this;
39
40 Object returnObject() => bar;
41 }
42
43 @JS('Object.getOwnPropertyNames')
44 external List getOwnPropertyNames(obj);
45
46 @JS('devtoolsFormatters')
47 external List get _devtoolsFormatters;
48 List get devtoolsFormatters => _devtoolsFormatters;
49
50 @JS('JSON.stringify')
51 external stringify(value, [Function replacer, int space]);
52
53 // TODO(jacobr): this is only valid if the legacy library loader is used.
54 // We need a solution that works with all library loaders.
55 @JS('dart_library.import')
56 external importDartLibrary(String path);
57
58 // Replacer normalizes file names that could vary depending on the test runner.
59 // styles.
60 replacer(String key, value) {
61 // The values for keys with name 'object' may be arbitrary Dart nested
62 // Objects so are not safe to stringify.
63 if (key == 'object') return '<OBJECT>';
64 if (value is String) {
65 if (value.contains('dart_sdk.js')) return '<DART_SDK>';
66 if (new RegExp(r'[.](js|dart|html)').hasMatch(value)) return '<FILE>';
67 }
68 return value;
69 }
70
71 String format(value) {
72 // Avoid double-escaping strings.
73 if (value is String) return value;
74 return stringify(value, replacer, 4);
75 }
76
77 class FormattedObject {
78 FormattedObject(this.object, this.config);
79
80 Object object;
81 Object config;
82 }
83
84 /// Extract all object tags from a json ml expression to enable
85 /// calling the custom formatter on the extracted object tag.
86 List<FormattedObject> extractNestedFormattedObjects(json) {
87 var ret = <FormattedObject>[];
88 if (json is String || json is bool || json is num) return ret;
89 if (json is List) {
90 for (var e in json) {
91 ret.addAll(extractNestedFormattedObjects(e));
92 }
93 return ret;
94 }
95
96 for (var name in getOwnPropertyNames(json)) {
97 if (name == 'object') {
98 // Found a nested formatted object.
99 ret.add(new FormattedObject(js_util.getProperty(json, 'object'),
100 js_util.getProperty(json, 'config')));
101 return ret;
102 }
103 ret.addAll(extractNestedFormattedObjects(js_util.getProperty(json, name)));
104 }
105 return ret;
106 }
107
108 main() {
109 if (devtoolsFormatters == null) {
110 print("Warning: no devtools custom formatters specified. Skipping tests.");
111 return;
112 }
113 var _devtoolsFormatter = devtoolsFormatters.first;
114
115 var actual = new StringBuffer();
116
117 // Accumulate the entire expected custom formatted data as a single
118 // massive string buffer so it is simple to update expectations when
119 // modifying the formatting code.
120 // Otherwise a small formatting change would result in tweaking lots
121 // of expectations.
122 // The verify golden match test cases does the final comparison of golden
123 // to expected output.
124 addGolden(String name, value) {
125 actual.write('Test: $name\n'
126 'Value:\n'
127 '${format(value)}\n'
128 '-----------------------------------\n');
129 }
130
131 addFormatterGoldens(String name, object, [config]) {
132 addGolden(
133 '$name formatting header', _devtoolsFormatter.header(object, config));
134 addGolden('$name formatting body', _devtoolsFormatter.body(object, config));
135 }
136
137 // Include goldens for the nested [[class]] definition field.
138 addNestedFormatterGoldens(String name, obj) {
139 addGolden('$name instance header', _devtoolsFormatter.header(obj, null));
140 var body = _devtoolsFormatter.body(obj, null);
141 addGolden('$name instance body', body);
142
143 var nestedObjects = extractNestedFormattedObjects(body);
144 var clazz = nestedObjects.last;
145 // By convention assume last nested object is the [[class]] definition
146 // describing the object's static members and inheritance hierarchy
147 addFormatterGoldens('$name definition', clazz.object, clazz.config);
148 }
149
150 group('Iterable formatting', () {
151 var list = ['foo', 'bar', 'baz'];
152 var iterable = list.map((x) => x * 5);
153 addFormatterGoldens('List<String>', list);
154
155 var listOfObjects = <Object>[42, 'bar', true];
156
157 addNestedFormatterGoldens('List<Object>', listOfObjects);
158
159 var largeList = <int>[];
160 for (var i = 0; i < 200; ++i) {
161 largeList.add(i * 10);
162 }
163 addNestedFormatterGoldens('List<int> large', largeList);
164
165 addNestedFormatterGoldens('Iterable', iterable);
166
167 var s = new Set()..add("foo")..add(42)..add(true);
168 addNestedFormatterGoldens('Set', s);
169 });
170
171 group('Map formatting', () {
172 Map<String, int> foo = new Map();
173 foo = {'1': 2, 'x': 4, '5': 6};
174
175 addFormatterGoldens('Map<String, int>', foo);
176 test('hasBody', () {
177 expect(_devtoolsFormatter.hasBody(foo, null), isTrue);
178 });
179
180 Map<dynamic, dynamic> dynamicMap = new Map();
181 dynamicMap = {1: 2, 'x': 4, true: "truthy"};
182
183 addNestedFormatterGoldens('Map<dynamic, dynamic>', dynamicMap);
184 });
185
186 group('Function formatting', () {
187 adder(int a, int b) => a + b;
188
189 addFormatterGoldens('Function', adder);
190
191 test('hasBody', () {
192 expect(_devtoolsFormatter.hasBody(adder, null), isTrue);
193 });
194
195 addEventListener(String name, bool callback(Event e)) => null;
196
197 addFormatterGoldens('Function with functon arguments', addEventListener);
198
199 // Closure
200 addGolden('dart:html method', window.addEventListener);
201
202 // Get a reference to the JS constructor for a Dart class.
203 // This tracks a regression bug where overly verbose and confusing output
204 // was shown for this case.
205 var testClass = new TestClass(17);
206 var dartConstructor = js_util.getProperty(
207 js_util.getProperty(testClass, '__proto__'), 'constructor');
208 addFormatterGoldens('Raw reference to dart constructor', dartConstructor);
209 });
210
211 group('Object formatting', () {
212 var object = new Object();
213 addFormatterGoldens('Object', object);
214 test('hasBody', () {
215 expect(_devtoolsFormatter.hasBody(object, null), isTrue);
216 });
217 });
218
219 group('Type formatting', () {
220 addFormatterGoldens('Type TestClass', TestClass);
221 addFormatterGoldens('Type HttpRequest', HttpRequest);
222 });
223
224 group('JS interop object formatting', () {
225 var object = js_util.newObject();
226 js_util.setProperty(object, 'foo', 'bar');
227 // Make sure we don't apply the Dart custom formatter to JS interop objects.
228 expect(_devtoolsFormatter.header(object, null), isNull);
229 });
230
231 // We can only test library formatting when using the legacy package loader.
232 if (js_util.hasProperty(window, 'dart_library')) {
233 var libraryModule = importDartLibrary("lib/html/debugger_test");
234
235 addFormatterGoldens('Library Module', libraryModule);
236 }
237
238 group('StackTrace formatting', () {
239 StackTrace stack;
240 try {
241 throw new Error();
242 } catch (exception, stackTrace) {
243 stack = stackTrace;
244 }
245 addFormatterGoldens('StackTrace', stack);
246 test('hasBody', () {
247 expect(_devtoolsFormatter.hasBody(stack, null), isTrue);
248 });
249 });
250
251 group('Class formatting', () {
252 addNestedFormatterGoldens('TestClass', new TestClass(17));
253 addNestedFormatterGoldens('MouseEvent', new MouseEvent("click"));
254 // This is a good class to test as it has statics and a deep inheritance hei rarchy
255 addNestedFormatterGoldens('HttpRequest', new HttpRequest());
256 });
257
258 test('verify golden match', () {
259 // Warning: all other test groups must have run for this test to be meaningf ul
260 print("Actual:##############\n$actual\n#################");
261
262 expect(actual.toString().trim(), equals(expectedGolden.trim()));
263 });
264 }
265
266 /// The golden custom formatter output is placed at the bottom of the file
267 /// to simplify replacing the golden data when the custom formatter code is
268 /// changed.
269 final expectedGolden = r"""Test: List<String> formatting header
270 Value:
271 [
272 "span",
273 {
274 "style": "background-color: #d9edf7;"
275 },
276 "JSArray<String> length 3"
277 ]
278 -----------------------------------
279 Test: List<String> formatting body
280 Value:
281 [
282 "ol",
283 {
284 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
285 },
286 [
287 "li",
288 {
289 "style": "padding-left: 13px;"
290 },
291 [
292 "span",
293 {},
294 [
295 "span",
296 {
297 "style": "color: rgb(136, 19, 145); margin-right: -13px"
298 },
299 "0: "
300 ],
301 [
302 "span",
303 {
304 "style": "margin-left: 13px"
305 },
306 "foo"
307 ]
308 ]
309 ],
310 [
311 "li",
312 {
313 "style": "padding-left: 13px;"
314 },
315 [
316 "span",
317 {},
318 [
319 "span",
320 {
321 "style": "color: rgb(136, 19, 145); margin-right: -13px"
322 },
323 "1: "
324 ],
325 [
326 "span",
327 {
328 "style": "margin-left: 13px"
329 },
330 "bar"
331 ]
332 ]
333 ],
334 [
335 "li",
336 {
337 "style": "padding-left: 13px;"
338 },
339 [
340 "span",
341 {},
342 [
343 "span",
344 {
345 "style": "color: rgb(136, 19, 145); margin-right: -13px"
346 },
347 "2: "
348 ],
349 [
350 "span",
351 {
352 "style": "margin-left: 13px"
353 },
354 "baz"
355 ]
356 ]
357 ],
358 [
359 "li",
360 {
361 "style": "padding-left: 13px;"
362 },
363 [
364 "span",
365 {
366 "style": "color: rgb(136, 19, 145); margin-right: -13px"
367 },
368 "[[class]]: "
369 ],
370 [
371 "span",
372 {
373 "style": "margin-left: 13px"
374 },
375 [
376 "object",
377 {
378 "object": "<OBJECT>",
379 "config": {
380 "name": "asClass"
381 }
382 }
383 ]
384 ]
385 ]
386 ]
387 -----------------------------------
388 Test: List<Object> instance header
389 Value:
390 [
391 "span",
392 {
393 "style": "background-color: #d9edf7;"
394 },
395 "JSArray<Object> length 3"
396 ]
397 -----------------------------------
398 Test: List<Object> instance body
399 Value:
400 [
401 "ol",
402 {
403 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
404 },
405 [
406 "li",
407 {
408 "style": "padding-left: 13px;"
409 },
410 [
411 "span",
412 {},
413 [
414 "span",
415 {
416 "style": "color: rgb(136, 19, 145); margin-right: -13px"
417 },
418 "0: "
419 ],
420 [
421 "span",
422 {
423 "style": "margin-left: 13px"
424 },
425 "42"
426 ]
427 ]
428 ],
429 [
430 "li",
431 {
432 "style": "padding-left: 13px;"
433 },
434 [
435 "span",
436 {},
437 [
438 "span",
439 {
440 "style": "color: rgb(136, 19, 145); margin-right: -13px"
441 },
442 "1: "
443 ],
444 [
445 "span",
446 {
447 "style": "margin-left: 13px"
448 },
449 "bar"
450 ]
451 ]
452 ],
453 [
454 "li",
455 {
456 "style": "padding-left: 13px;"
457 },
458 [
459 "span",
460 {},
461 [
462 "span",
463 {
464 "style": "color: rgb(136, 19, 145); margin-right: -13px"
465 },
466 "2: "
467 ],
468 [
469 "span",
470 {
471 "style": "margin-left: 13px"
472 },
473 "true"
474 ]
475 ]
476 ],
477 [
478 "li",
479 {
480 "style": "padding-left: 13px;"
481 },
482 [
483 "span",
484 {
485 "style": "color: rgb(136, 19, 145); margin-right: -13px"
486 },
487 "[[class]]: "
488 ],
489 [
490 "span",
491 {
492 "style": "margin-left: 13px"
493 },
494 [
495 "object",
496 {
497 "object": "<OBJECT>",
498 "config": {
499 "name": "asClass"
500 }
501 }
502 ]
503 ]
504 ]
505 ]
506 -----------------------------------
507 Test: List<Object> definition formatting header
508 Value:
509 [
510 "span",
511 {
512 "style": "background-color: #d9edf7;"
513 },
514 "JSArray<Object> implements List<Object>, JSIndexable<Object>"
515 ]
516 -----------------------------------
517 Test: List<Object> definition formatting body
518 Value:
519 [
520 "ol",
521 {
522 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
523 },
524 [
525 "li",
526 {
527 "style": "padding-left: 13px;"
528 },
529 [
530 "span",
531 {},
532 [
533 "span",
534 {
535 "style": ""
536 },
537 "[[Static members]]"
538 ]
539 ]
540 ],
541 [
542 "li",
543 {
544 "style": "padding-left: 13px;"
545 },
546 [
547 "span",
548 {
549 "style": "color: rgb(136, 19, 145); margin-right: -13px"
550 },
551 "markFixedList: "
552 ],
553 [
554 "span",
555 {
556 "style": "margin-left: 13px"
557 },
558 [
559 "object",
560 {
561 "object": "<OBJECT>",
562 "config": {
563 "name": "none"
564 }
565 }
566 ]
567 ]
568 ],
569 [
570 "li",
571 {
572 "style": "padding-left: 13px;"
573 },
574 [
575 "span",
576 {
577 "style": "color: rgb(136, 19, 145); margin-right: -13px"
578 },
579 "markUnmodifiableList: "
580 ],
581 [
582 "span",
583 {
584 "style": "margin-left: 13px"
585 },
586 [
587 "object",
588 {
589 "object": "<OBJECT>",
590 "config": {
591 "name": "none"
592 }
593 }
594 ]
595 ]
596 ],
597 [
598 "li",
599 {
600 "style": "padding-left: 13px;"
601 },
602 [
603 "span",
604 {},
605 [
606 "span",
607 {
608 "style": ""
609 },
610 "[[Instance Methods]]"
611 ]
612 ]
613 ],
614 [
615 "li",
616 {
617 "style": "padding-left: 13px;"
618 },
619 [
620 "span",
621 {
622 "style": "color: rgb(136, 19, 145); margin-right: -13px"
623 },
624 "add: "
625 ],
626 [
627 "span",
628 {
629 "style": "margin-left: 13px"
630 },
631 [
632 "object",
633 {
634 "object": "<OBJECT>",
635 "config": {
636 "name": "none"
637 }
638 }
639 ]
640 ]
641 ],
642 [
643 "li",
644 {
645 "style": "padding-left: 13px;"
646 },
647 [
648 "span",
649 {
650 "style": "color: rgb(136, 19, 145); margin-right: -13px"
651 },
652 "addAll: "
653 ],
654 [
655 "span",
656 {
657 "style": "margin-left: 13px"
658 },
659 [
660 "object",
661 {
662 "object": "<OBJECT>",
663 "config": {
664 "name": "none"
665 }
666 }
667 ]
668 ]
669 ],
670 [
671 "li",
672 {
673 "style": "padding-left: 13px;"
674 },
675 [
676 "span",
677 {
678 "style": "color: rgb(136, 19, 145); margin-right: -13px"
679 },
680 "any: "
681 ],
682 [
683 "span",
684 {
685 "style": "margin-left: 13px"
686 },
687 [
688 "object",
689 {
690 "object": "<OBJECT>",
691 "config": {
692 "name": "none"
693 }
694 }
695 ]
696 ]
697 ],
698 [
699 "li",
700 {
701 "style": "padding-left: 13px;"
702 },
703 [
704 "span",
705 {
706 "style": "color: rgb(136, 19, 145); margin-right: -13px"
707 },
708 "asMap: "
709 ],
710 [
711 "span",
712 {
713 "style": "margin-left: 13px"
714 },
715 [
716 "object",
717 {
718 "object": "<OBJECT>",
719 "config": {
720 "name": "none"
721 }
722 }
723 ]
724 ]
725 ],
726 [
727 "li",
728 {
729 "style": "padding-left: 13px;"
730 },
731 [
732 "span",
733 {
734 "style": "color: rgb(136, 19, 145); margin-right: -13px"
735 },
736 "checkGrowable: "
737 ],
738 [
739 "span",
740 {
741 "style": "margin-left: 13px"
742 },
743 [
744 "object",
745 {
746 "object": "<OBJECT>",
747 "config": {
748 "name": "none"
749 }
750 }
751 ]
752 ]
753 ],
754 [
755 "li",
756 {
757 "style": "padding-left: 13px;"
758 },
759 [
760 "span",
761 {
762 "style": "color: rgb(136, 19, 145); margin-right: -13px"
763 },
764 "checkMutable: "
765 ],
766 [
767 "span",
768 {
769 "style": "margin-left: 13px"
770 },
771 [
772 "object",
773 {
774 "object": "<OBJECT>",
775 "config": {
776 "name": "none"
777 }
778 }
779 ]
780 ]
781 ],
782 [
783 "li",
784 {
785 "style": "padding-left: 13px;"
786 },
787 [
788 "span",
789 {
790 "style": "color: rgb(136, 19, 145); margin-right: -13px"
791 },
792 "clear: "
793 ],
794 [
795 "span",
796 {
797 "style": "margin-left: 13px"
798 },
799 [
800 "object",
801 {
802 "object": "<OBJECT>",
803 "config": {
804 "name": "none"
805 }
806 }
807 ]
808 ]
809 ],
810 [
811 "li",
812 {
813 "style": "padding-left: 13px;"
814 },
815 [
816 "span",
817 {
818 "style": "color: rgb(136, 19, 145); margin-right: -13px"
819 },
820 "contains: "
821 ],
822 [
823 "span",
824 {
825 "style": "margin-left: 13px"
826 },
827 [
828 "object",
829 {
830 "object": "<OBJECT>",
831 "config": {
832 "name": "none"
833 }
834 }
835 ]
836 ]
837 ],
838 [
839 "li",
840 {
841 "style": "padding-left: 13px;"
842 },
843 [
844 "span",
845 {
846 "style": "color: rgb(136, 19, 145); margin-right: -13px"
847 },
848 "elementAt: "
849 ],
850 [
851 "span",
852 {
853 "style": "margin-left: 13px"
854 },
855 [
856 "object",
857 {
858 "object": "<OBJECT>",
859 "config": {
860 "name": "none"
861 }
862 }
863 ]
864 ]
865 ],
866 [
867 "li",
868 {
869 "style": "padding-left: 13px;"
870 },
871 [
872 "span",
873 {
874 "style": "color: rgb(136, 19, 145); margin-right: -13px"
875 },
876 "every: "
877 ],
878 [
879 "span",
880 {
881 "style": "margin-left: 13px"
882 },
883 [
884 "object",
885 {
886 "object": "<OBJECT>",
887 "config": {
888 "name": "none"
889 }
890 }
891 ]
892 ]
893 ],
894 [
895 "li",
896 {
897 "style": "padding-left: 13px;"
898 },
899 [
900 "span",
901 {
902 "style": "color: rgb(136, 19, 145); margin-right: -13px"
903 },
904 "expand: "
905 ],
906 [
907 "span",
908 {
909 "style": "margin-left: 13px"
910 },
911 [
912 "object",
913 {
914 "object": "<OBJECT>",
915 "config": {
916 "name": "none"
917 }
918 }
919 ]
920 ]
921 ],
922 [
923 "li",
924 {
925 "style": "padding-left: 13px;"
926 },
927 [
928 "span",
929 {
930 "style": "color: rgb(136, 19, 145); margin-right: -13px"
931 },
932 "fillRange: "
933 ],
934 [
935 "span",
936 {
937 "style": "margin-left: 13px"
938 },
939 [
940 "object",
941 {
942 "object": "<OBJECT>",
943 "config": {
944 "name": "none"
945 }
946 }
947 ]
948 ]
949 ],
950 [
951 "li",
952 {
953 "style": "padding-left: 13px;"
954 },
955 [
956 "span",
957 {
958 "style": "color: rgb(136, 19, 145); margin-right: -13px"
959 },
960 "firstWhere: "
961 ],
962 [
963 "span",
964 {
965 "style": "margin-left: 13px"
966 },
967 [
968 "object",
969 {
970 "object": "<OBJECT>",
971 "config": {
972 "name": "none"
973 }
974 }
975 ]
976 ]
977 ],
978 [
979 "li",
980 {
981 "style": "padding-left: 13px;"
982 },
983 [
984 "span",
985 {
986 "style": "color: rgb(136, 19, 145); margin-right: -13px"
987 },
988 "fold: "
989 ],
990 [
991 "span",
992 {
993 "style": "margin-left: 13px"
994 },
995 [
996 "object",
997 {
998 "object": "<OBJECT>",
999 "config": {
1000 "name": "none"
1001 }
1002 }
1003 ]
1004 ]
1005 ],
1006 [
1007 "li",
1008 {
1009 "style": "padding-left: 13px;"
1010 },
1011 [
1012 "span",
1013 {
1014 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1015 },
1016 "forEach: "
1017 ],
1018 [
1019 "span",
1020 {
1021 "style": "margin-left: 13px"
1022 },
1023 [
1024 "object",
1025 {
1026 "object": "<OBJECT>",
1027 "config": {
1028 "name": "none"
1029 }
1030 }
1031 ]
1032 ]
1033 ],
1034 [
1035 "li",
1036 {
1037 "style": "padding-left: 13px;"
1038 },
1039 [
1040 "span",
1041 {
1042 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1043 },
1044 "getRange: "
1045 ],
1046 [
1047 "span",
1048 {
1049 "style": "margin-left: 13px"
1050 },
1051 [
1052 "object",
1053 {
1054 "object": "<OBJECT>",
1055 "config": {
1056 "name": "none"
1057 }
1058 }
1059 ]
1060 ]
1061 ],
1062 [
1063 "li",
1064 {
1065 "style": "padding-left: 13px;"
1066 },
1067 [
1068 "span",
1069 {
1070 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1071 },
1072 "indexOf: "
1073 ],
1074 [
1075 "span",
1076 {
1077 "style": "margin-left: 13px"
1078 },
1079 [
1080 "object",
1081 {
1082 "object": "<OBJECT>",
1083 "config": {
1084 "name": "none"
1085 }
1086 }
1087 ]
1088 ]
1089 ],
1090 [
1091 "li",
1092 {
1093 "style": "padding-left: 13px;"
1094 },
1095 [
1096 "span",
1097 {
1098 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1099 },
1100 "insert: "
1101 ],
1102 [
1103 "span",
1104 {
1105 "style": "margin-left: 13px"
1106 },
1107 [
1108 "object",
1109 {
1110 "object": "<OBJECT>",
1111 "config": {
1112 "name": "none"
1113 }
1114 }
1115 ]
1116 ]
1117 ],
1118 [
1119 "li",
1120 {
1121 "style": "padding-left: 13px;"
1122 },
1123 [
1124 "span",
1125 {
1126 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1127 },
1128 "insertAll: "
1129 ],
1130 [
1131 "span",
1132 {
1133 "style": "margin-left: 13px"
1134 },
1135 [
1136 "object",
1137 {
1138 "object": "<OBJECT>",
1139 "config": {
1140 "name": "none"
1141 }
1142 }
1143 ]
1144 ]
1145 ],
1146 [
1147 "li",
1148 {
1149 "style": "padding-left: 13px;"
1150 },
1151 [
1152 "span",
1153 {
1154 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1155 },
1156 "join: "
1157 ],
1158 [
1159 "span",
1160 {
1161 "style": "margin-left: 13px"
1162 },
1163 [
1164 "object",
1165 {
1166 "object": "<OBJECT>",
1167 "config": {
1168 "name": "none"
1169 }
1170 }
1171 ]
1172 ]
1173 ],
1174 [
1175 "li",
1176 {
1177 "style": "padding-left: 13px;"
1178 },
1179 [
1180 "span",
1181 {
1182 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1183 },
1184 "lastIndexOf: "
1185 ],
1186 [
1187 "span",
1188 {
1189 "style": "margin-left: 13px"
1190 },
1191 [
1192 "object",
1193 {
1194 "object": "<OBJECT>",
1195 "config": {
1196 "name": "none"
1197 }
1198 }
1199 ]
1200 ]
1201 ],
1202 [
1203 "li",
1204 {
1205 "style": "padding-left: 13px;"
1206 },
1207 [
1208 "span",
1209 {
1210 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1211 },
1212 "lastWhere: "
1213 ],
1214 [
1215 "span",
1216 {
1217 "style": "margin-left: 13px"
1218 },
1219 [
1220 "object",
1221 {
1222 "object": "<OBJECT>",
1223 "config": {
1224 "name": "none"
1225 }
1226 }
1227 ]
1228 ]
1229 ],
1230 [
1231 "li",
1232 {
1233 "style": "padding-left: 13px;"
1234 },
1235 [
1236 "span",
1237 {
1238 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1239 },
1240 "map: "
1241 ],
1242 [
1243 "span",
1244 {
1245 "style": "margin-left: 13px"
1246 },
1247 [
1248 "object",
1249 {
1250 "object": "<OBJECT>",
1251 "config": {
1252 "name": "none"
1253 }
1254 }
1255 ]
1256 ]
1257 ],
1258 [
1259 "li",
1260 {
1261 "style": "padding-left: 13px;"
1262 },
1263 [
1264 "span",
1265 {
1266 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1267 },
1268 "reduce: "
1269 ],
1270 [
1271 "span",
1272 {
1273 "style": "margin-left: 13px"
1274 },
1275 [
1276 "object",
1277 {
1278 "object": "<OBJECT>",
1279 "config": {
1280 "name": "none"
1281 }
1282 }
1283 ]
1284 ]
1285 ],
1286 [
1287 "li",
1288 {
1289 "style": "padding-left: 13px;"
1290 },
1291 [
1292 "span",
1293 {
1294 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1295 },
1296 "remove: "
1297 ],
1298 [
1299 "span",
1300 {
1301 "style": "margin-left: 13px"
1302 },
1303 [
1304 "object",
1305 {
1306 "object": "<OBJECT>",
1307 "config": {
1308 "name": "none"
1309 }
1310 }
1311 ]
1312 ]
1313 ],
1314 [
1315 "li",
1316 {
1317 "style": "padding-left: 13px;"
1318 },
1319 [
1320 "span",
1321 {
1322 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1323 },
1324 "removeAt: "
1325 ],
1326 [
1327 "span",
1328 {
1329 "style": "margin-left: 13px"
1330 },
1331 [
1332 "object",
1333 {
1334 "object": "<OBJECT>",
1335 "config": {
1336 "name": "none"
1337 }
1338 }
1339 ]
1340 ]
1341 ],
1342 [
1343 "li",
1344 {
1345 "style": "padding-left: 13px;"
1346 },
1347 [
1348 "span",
1349 {
1350 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1351 },
1352 "removeLast: "
1353 ],
1354 [
1355 "span",
1356 {
1357 "style": "margin-left: 13px"
1358 },
1359 [
1360 "object",
1361 {
1362 "object": "<OBJECT>",
1363 "config": {
1364 "name": "none"
1365 }
1366 }
1367 ]
1368 ]
1369 ],
1370 [
1371 "li",
1372 {
1373 "style": "padding-left: 13px;"
1374 },
1375 [
1376 "span",
1377 {
1378 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1379 },
1380 "removeRange: "
1381 ],
1382 [
1383 "span",
1384 {
1385 "style": "margin-left: 13px"
1386 },
1387 [
1388 "object",
1389 {
1390 "object": "<OBJECT>",
1391 "config": {
1392 "name": "none"
1393 }
1394 }
1395 ]
1396 ]
1397 ],
1398 [
1399 "li",
1400 {
1401 "style": "padding-left: 13px;"
1402 },
1403 [
1404 "span",
1405 {
1406 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1407 },
1408 "removeWhere: "
1409 ],
1410 [
1411 "span",
1412 {
1413 "style": "margin-left: 13px"
1414 },
1415 [
1416 "object",
1417 {
1418 "object": "<OBJECT>",
1419 "config": {
1420 "name": "none"
1421 }
1422 }
1423 ]
1424 ]
1425 ],
1426 [
1427 "li",
1428 {
1429 "style": "padding-left: 13px;"
1430 },
1431 [
1432 "span",
1433 {
1434 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1435 },
1436 "replaceRange: "
1437 ],
1438 [
1439 "span",
1440 {
1441 "style": "margin-left: 13px"
1442 },
1443 [
1444 "object",
1445 {
1446 "object": "<OBJECT>",
1447 "config": {
1448 "name": "none"
1449 }
1450 }
1451 ]
1452 ]
1453 ],
1454 [
1455 "li",
1456 {
1457 "style": "padding-left: 13px;"
1458 },
1459 [
1460 "span",
1461 {
1462 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1463 },
1464 "retainWhere: "
1465 ],
1466 [
1467 "span",
1468 {
1469 "style": "margin-left: 13px"
1470 },
1471 [
1472 "object",
1473 {
1474 "object": "<OBJECT>",
1475 "config": {
1476 "name": "none"
1477 }
1478 }
1479 ]
1480 ]
1481 ],
1482 [
1483 "li",
1484 {
1485 "style": "padding-left: 13px;"
1486 },
1487 [
1488 "span",
1489 {
1490 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1491 },
1492 "setAll: "
1493 ],
1494 [
1495 "span",
1496 {
1497 "style": "margin-left: 13px"
1498 },
1499 [
1500 "object",
1501 {
1502 "object": "<OBJECT>",
1503 "config": {
1504 "name": "none"
1505 }
1506 }
1507 ]
1508 ]
1509 ],
1510 [
1511 "li",
1512 {
1513 "style": "padding-left: 13px;"
1514 },
1515 [
1516 "span",
1517 {
1518 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1519 },
1520 "setRange: "
1521 ],
1522 [
1523 "span",
1524 {
1525 "style": "margin-left: 13px"
1526 },
1527 [
1528 "object",
1529 {
1530 "object": "<OBJECT>",
1531 "config": {
1532 "name": "none"
1533 }
1534 }
1535 ]
1536 ]
1537 ],
1538 [
1539 "li",
1540 {
1541 "style": "padding-left: 13px;"
1542 },
1543 [
1544 "span",
1545 {
1546 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1547 },
1548 "shuffle: "
1549 ],
1550 [
1551 "span",
1552 {
1553 "style": "margin-left: 13px"
1554 },
1555 [
1556 "object",
1557 {
1558 "object": "<OBJECT>",
1559 "config": {
1560 "name": "none"
1561 }
1562 }
1563 ]
1564 ]
1565 ],
1566 [
1567 "li",
1568 {
1569 "style": "padding-left: 13px;"
1570 },
1571 [
1572 "span",
1573 {
1574 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1575 },
1576 "singleWhere: "
1577 ],
1578 [
1579 "span",
1580 {
1581 "style": "margin-left: 13px"
1582 },
1583 [
1584 "object",
1585 {
1586 "object": "<OBJECT>",
1587 "config": {
1588 "name": "none"
1589 }
1590 }
1591 ]
1592 ]
1593 ],
1594 [
1595 "li",
1596 {
1597 "style": "padding-left: 13px;"
1598 },
1599 [
1600 "span",
1601 {
1602 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1603 },
1604 "skip: "
1605 ],
1606 [
1607 "span",
1608 {
1609 "style": "margin-left: 13px"
1610 },
1611 [
1612 "object",
1613 {
1614 "object": "<OBJECT>",
1615 "config": {
1616 "name": "none"
1617 }
1618 }
1619 ]
1620 ]
1621 ],
1622 [
1623 "li",
1624 {
1625 "style": "padding-left: 13px;"
1626 },
1627 [
1628 "span",
1629 {
1630 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1631 },
1632 "skipWhile: "
1633 ],
1634 [
1635 "span",
1636 {
1637 "style": "margin-left: 13px"
1638 },
1639 [
1640 "object",
1641 {
1642 "object": "<OBJECT>",
1643 "config": {
1644 "name": "none"
1645 }
1646 }
1647 ]
1648 ]
1649 ],
1650 [
1651 "li",
1652 {
1653 "style": "padding-left: 13px;"
1654 },
1655 [
1656 "span",
1657 {
1658 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1659 },
1660 "sort: "
1661 ],
1662 [
1663 "span",
1664 {
1665 "style": "margin-left: 13px"
1666 },
1667 [
1668 "object",
1669 {
1670 "object": "<OBJECT>",
1671 "config": {
1672 "name": "none"
1673 }
1674 }
1675 ]
1676 ]
1677 ],
1678 [
1679 "li",
1680 {
1681 "style": "padding-left: 13px;"
1682 },
1683 [
1684 "span",
1685 {
1686 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1687 },
1688 "sublist: "
1689 ],
1690 [
1691 "span",
1692 {
1693 "style": "margin-left: 13px"
1694 },
1695 [
1696 "object",
1697 {
1698 "object": "<OBJECT>",
1699 "config": {
1700 "name": "none"
1701 }
1702 }
1703 ]
1704 ]
1705 ],
1706 [
1707 "li",
1708 {
1709 "style": "padding-left: 13px;"
1710 },
1711 [
1712 "span",
1713 {
1714 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1715 },
1716 "take: "
1717 ],
1718 [
1719 "span",
1720 {
1721 "style": "margin-left: 13px"
1722 },
1723 [
1724 "object",
1725 {
1726 "object": "<OBJECT>",
1727 "config": {
1728 "name": "none"
1729 }
1730 }
1731 ]
1732 ]
1733 ],
1734 [
1735 "li",
1736 {
1737 "style": "padding-left: 13px;"
1738 },
1739 [
1740 "span",
1741 {
1742 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1743 },
1744 "takeWhile: "
1745 ],
1746 [
1747 "span",
1748 {
1749 "style": "margin-left: 13px"
1750 },
1751 [
1752 "object",
1753 {
1754 "object": "<OBJECT>",
1755 "config": {
1756 "name": "none"
1757 }
1758 }
1759 ]
1760 ]
1761 ],
1762 [
1763 "li",
1764 {
1765 "style": "padding-left: 13px;"
1766 },
1767 [
1768 "span",
1769 {
1770 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1771 },
1772 "toList: "
1773 ],
1774 [
1775 "span",
1776 {
1777 "style": "margin-left: 13px"
1778 },
1779 [
1780 "object",
1781 {
1782 "object": "<OBJECT>",
1783 "config": {
1784 "name": "none"
1785 }
1786 }
1787 ]
1788 ]
1789 ],
1790 [
1791 "li",
1792 {
1793 "style": "padding-left: 13px;"
1794 },
1795 [
1796 "span",
1797 {
1798 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1799 },
1800 "toSet: "
1801 ],
1802 [
1803 "span",
1804 {
1805 "style": "margin-left: 13px"
1806 },
1807 [
1808 "object",
1809 {
1810 "object": "<OBJECT>",
1811 "config": {
1812 "name": "none"
1813 }
1814 }
1815 ]
1816 ]
1817 ],
1818 [
1819 "li",
1820 {
1821 "style": "padding-left: 13px;"
1822 },
1823 [
1824 "span",
1825 {
1826 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1827 },
1828 "where: "
1829 ],
1830 [
1831 "span",
1832 {
1833 "style": "margin-left: 13px"
1834 },
1835 [
1836 "object",
1837 {
1838 "object": "<OBJECT>",
1839 "config": {
1840 "name": "none"
1841 }
1842 }
1843 ]
1844 ]
1845 ],
1846 [
1847 "li",
1848 {
1849 "style": "padding-left: 13px;"
1850 },
1851 [
1852 "span",
1853 {
1854 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1855 },
1856 "_get: "
1857 ],
1858 [
1859 "span",
1860 {
1861 "style": "margin-left: 13px"
1862 },
1863 [
1864 "object",
1865 {
1866 "object": "<OBJECT>",
1867 "config": {
1868 "name": "none"
1869 }
1870 }
1871 ]
1872 ]
1873 ],
1874 [
1875 "li",
1876 {
1877 "style": "padding-left: 13px;"
1878 },
1879 [
1880 "span",
1881 {
1882 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1883 },
1884 "_removeWhere: "
1885 ],
1886 [
1887 "span",
1888 {
1889 "style": "margin-left: 13px"
1890 },
1891 [
1892 "object",
1893 {
1894 "object": "<OBJECT>",
1895 "config": {
1896 "name": "none"
1897 }
1898 }
1899 ]
1900 ]
1901 ],
1902 [
1903 "li",
1904 {
1905 "style": "padding-left: 13px;"
1906 },
1907 [
1908 "span",
1909 {
1910 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1911 },
1912 "_set: "
1913 ],
1914 [
1915 "span",
1916 {
1917 "style": "margin-left: 13px"
1918 },
1919 [
1920 "object",
1921 {
1922 "object": "<OBJECT>",
1923 "config": {
1924 "name": "none"
1925 }
1926 }
1927 ]
1928 ]
1929 ],
1930 [
1931 "li",
1932 {
1933 "style": "padding-left: 13px;"
1934 },
1935 [
1936 "span",
1937 {
1938 "style": "color: rgb(136, 19, 145); margin-right: -13px"
1939 },
1940 "[[base class]]: "
1941 ],
1942 [
1943 "span",
1944 {
1945 "style": "margin-left: 13px"
1946 },
1947 [
1948 "object",
1949 {
1950 "object": "<OBJECT>",
1951 "config": {
1952 "name": "asClass"
1953 }
1954 }
1955 ]
1956 ]
1957 ]
1958 ]
1959 -----------------------------------
1960 Test: List<int> large instance header
1961 Value:
1962 [
1963 "span",
1964 {
1965 "style": "background-color: #d9edf7;"
1966 },
1967 "JSArray<int> length 200"
1968 ]
1969 -----------------------------------
1970 Test: List<int> large instance body
1971 Value:
1972 [
1973 "ol",
1974 {
1975 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
1976 },
1977 [
1978 "li",
1979 {
1980 "style": "padding-left: 13px;"
1981 },
1982 [
1983 "span",
1984 {
1985 "style": ""
1986 },
1987 [
1988 "object",
1989 {
1990 "object": "<OBJECT>",
1991 "config": {
1992 "name": "none"
1993 }
1994 }
1995 ]
1996 ]
1997 ],
1998 [
1999 "li",
2000 {
2001 "style": "padding-left: 13px;"
2002 },
2003 [
2004 "span",
2005 {
2006 "style": ""
2007 },
2008 [
2009 "object",
2010 {
2011 "object": "<OBJECT>",
2012 "config": {
2013 "name": "none"
2014 }
2015 }
2016 ]
2017 ]
2018 ],
2019 [
2020 "li",
2021 {
2022 "style": "padding-left: 13px;"
2023 },
2024 [
2025 "span",
2026 {
2027 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2028 },
2029 "[[class]]: "
2030 ],
2031 [
2032 "span",
2033 {
2034 "style": "margin-left: 13px"
2035 },
2036 [
2037 "object",
2038 {
2039 "object": "<OBJECT>",
2040 "config": {
2041 "name": "asClass"
2042 }
2043 }
2044 ]
2045 ]
2046 ]
2047 ]
2048 -----------------------------------
2049 Test: List<int> large definition formatting header
2050 Value:
2051 [
2052 "span",
2053 {
2054 "style": "background-color: #d9edf7;"
2055 },
2056 "JSArray<int> implements List<int>, JSIndexable<int>"
2057 ]
2058 -----------------------------------
2059 Test: List<int> large definition formatting body
2060 Value:
2061 [
2062 "ol",
2063 {
2064 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
2065 },
2066 [
2067 "li",
2068 {
2069 "style": "padding-left: 13px;"
2070 },
2071 [
2072 "span",
2073 {},
2074 [
2075 "span",
2076 {
2077 "style": ""
2078 },
2079 "[[Static members]]"
2080 ]
2081 ]
2082 ],
2083 [
2084 "li",
2085 {
2086 "style": "padding-left: 13px;"
2087 },
2088 [
2089 "span",
2090 {
2091 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2092 },
2093 "markFixedList: "
2094 ],
2095 [
2096 "span",
2097 {
2098 "style": "margin-left: 13px"
2099 },
2100 [
2101 "object",
2102 {
2103 "object": "<OBJECT>",
2104 "config": {
2105 "name": "none"
2106 }
2107 }
2108 ]
2109 ]
2110 ],
2111 [
2112 "li",
2113 {
2114 "style": "padding-left: 13px;"
2115 },
2116 [
2117 "span",
2118 {
2119 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2120 },
2121 "markUnmodifiableList: "
2122 ],
2123 [
2124 "span",
2125 {
2126 "style": "margin-left: 13px"
2127 },
2128 [
2129 "object",
2130 {
2131 "object": "<OBJECT>",
2132 "config": {
2133 "name": "none"
2134 }
2135 }
2136 ]
2137 ]
2138 ],
2139 [
2140 "li",
2141 {
2142 "style": "padding-left: 13px;"
2143 },
2144 [
2145 "span",
2146 {},
2147 [
2148 "span",
2149 {
2150 "style": ""
2151 },
2152 "[[Instance Methods]]"
2153 ]
2154 ]
2155 ],
2156 [
2157 "li",
2158 {
2159 "style": "padding-left: 13px;"
2160 },
2161 [
2162 "span",
2163 {
2164 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2165 },
2166 "add: "
2167 ],
2168 [
2169 "span",
2170 {
2171 "style": "margin-left: 13px"
2172 },
2173 [
2174 "object",
2175 {
2176 "object": "<OBJECT>",
2177 "config": {
2178 "name": "none"
2179 }
2180 }
2181 ]
2182 ]
2183 ],
2184 [
2185 "li",
2186 {
2187 "style": "padding-left: 13px;"
2188 },
2189 [
2190 "span",
2191 {
2192 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2193 },
2194 "addAll: "
2195 ],
2196 [
2197 "span",
2198 {
2199 "style": "margin-left: 13px"
2200 },
2201 [
2202 "object",
2203 {
2204 "object": "<OBJECT>",
2205 "config": {
2206 "name": "none"
2207 }
2208 }
2209 ]
2210 ]
2211 ],
2212 [
2213 "li",
2214 {
2215 "style": "padding-left: 13px;"
2216 },
2217 [
2218 "span",
2219 {
2220 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2221 },
2222 "any: "
2223 ],
2224 [
2225 "span",
2226 {
2227 "style": "margin-left: 13px"
2228 },
2229 [
2230 "object",
2231 {
2232 "object": "<OBJECT>",
2233 "config": {
2234 "name": "none"
2235 }
2236 }
2237 ]
2238 ]
2239 ],
2240 [
2241 "li",
2242 {
2243 "style": "padding-left: 13px;"
2244 },
2245 [
2246 "span",
2247 {
2248 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2249 },
2250 "asMap: "
2251 ],
2252 [
2253 "span",
2254 {
2255 "style": "margin-left: 13px"
2256 },
2257 [
2258 "object",
2259 {
2260 "object": "<OBJECT>",
2261 "config": {
2262 "name": "none"
2263 }
2264 }
2265 ]
2266 ]
2267 ],
2268 [
2269 "li",
2270 {
2271 "style": "padding-left: 13px;"
2272 },
2273 [
2274 "span",
2275 {
2276 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2277 },
2278 "checkGrowable: "
2279 ],
2280 [
2281 "span",
2282 {
2283 "style": "margin-left: 13px"
2284 },
2285 [
2286 "object",
2287 {
2288 "object": "<OBJECT>",
2289 "config": {
2290 "name": "none"
2291 }
2292 }
2293 ]
2294 ]
2295 ],
2296 [
2297 "li",
2298 {
2299 "style": "padding-left: 13px;"
2300 },
2301 [
2302 "span",
2303 {
2304 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2305 },
2306 "checkMutable: "
2307 ],
2308 [
2309 "span",
2310 {
2311 "style": "margin-left: 13px"
2312 },
2313 [
2314 "object",
2315 {
2316 "object": "<OBJECT>",
2317 "config": {
2318 "name": "none"
2319 }
2320 }
2321 ]
2322 ]
2323 ],
2324 [
2325 "li",
2326 {
2327 "style": "padding-left: 13px;"
2328 },
2329 [
2330 "span",
2331 {
2332 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2333 },
2334 "clear: "
2335 ],
2336 [
2337 "span",
2338 {
2339 "style": "margin-left: 13px"
2340 },
2341 [
2342 "object",
2343 {
2344 "object": "<OBJECT>",
2345 "config": {
2346 "name": "none"
2347 }
2348 }
2349 ]
2350 ]
2351 ],
2352 [
2353 "li",
2354 {
2355 "style": "padding-left: 13px;"
2356 },
2357 [
2358 "span",
2359 {
2360 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2361 },
2362 "contains: "
2363 ],
2364 [
2365 "span",
2366 {
2367 "style": "margin-left: 13px"
2368 },
2369 [
2370 "object",
2371 {
2372 "object": "<OBJECT>",
2373 "config": {
2374 "name": "none"
2375 }
2376 }
2377 ]
2378 ]
2379 ],
2380 [
2381 "li",
2382 {
2383 "style": "padding-left: 13px;"
2384 },
2385 [
2386 "span",
2387 {
2388 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2389 },
2390 "elementAt: "
2391 ],
2392 [
2393 "span",
2394 {
2395 "style": "margin-left: 13px"
2396 },
2397 [
2398 "object",
2399 {
2400 "object": "<OBJECT>",
2401 "config": {
2402 "name": "none"
2403 }
2404 }
2405 ]
2406 ]
2407 ],
2408 [
2409 "li",
2410 {
2411 "style": "padding-left: 13px;"
2412 },
2413 [
2414 "span",
2415 {
2416 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2417 },
2418 "every: "
2419 ],
2420 [
2421 "span",
2422 {
2423 "style": "margin-left: 13px"
2424 },
2425 [
2426 "object",
2427 {
2428 "object": "<OBJECT>",
2429 "config": {
2430 "name": "none"
2431 }
2432 }
2433 ]
2434 ]
2435 ],
2436 [
2437 "li",
2438 {
2439 "style": "padding-left: 13px;"
2440 },
2441 [
2442 "span",
2443 {
2444 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2445 },
2446 "expand: "
2447 ],
2448 [
2449 "span",
2450 {
2451 "style": "margin-left: 13px"
2452 },
2453 [
2454 "object",
2455 {
2456 "object": "<OBJECT>",
2457 "config": {
2458 "name": "none"
2459 }
2460 }
2461 ]
2462 ]
2463 ],
2464 [
2465 "li",
2466 {
2467 "style": "padding-left: 13px;"
2468 },
2469 [
2470 "span",
2471 {
2472 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2473 },
2474 "fillRange: "
2475 ],
2476 [
2477 "span",
2478 {
2479 "style": "margin-left: 13px"
2480 },
2481 [
2482 "object",
2483 {
2484 "object": "<OBJECT>",
2485 "config": {
2486 "name": "none"
2487 }
2488 }
2489 ]
2490 ]
2491 ],
2492 [
2493 "li",
2494 {
2495 "style": "padding-left: 13px;"
2496 },
2497 [
2498 "span",
2499 {
2500 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2501 },
2502 "firstWhere: "
2503 ],
2504 [
2505 "span",
2506 {
2507 "style": "margin-left: 13px"
2508 },
2509 [
2510 "object",
2511 {
2512 "object": "<OBJECT>",
2513 "config": {
2514 "name": "none"
2515 }
2516 }
2517 ]
2518 ]
2519 ],
2520 [
2521 "li",
2522 {
2523 "style": "padding-left: 13px;"
2524 },
2525 [
2526 "span",
2527 {
2528 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2529 },
2530 "fold: "
2531 ],
2532 [
2533 "span",
2534 {
2535 "style": "margin-left: 13px"
2536 },
2537 [
2538 "object",
2539 {
2540 "object": "<OBJECT>",
2541 "config": {
2542 "name": "none"
2543 }
2544 }
2545 ]
2546 ]
2547 ],
2548 [
2549 "li",
2550 {
2551 "style": "padding-left: 13px;"
2552 },
2553 [
2554 "span",
2555 {
2556 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2557 },
2558 "forEach: "
2559 ],
2560 [
2561 "span",
2562 {
2563 "style": "margin-left: 13px"
2564 },
2565 [
2566 "object",
2567 {
2568 "object": "<OBJECT>",
2569 "config": {
2570 "name": "none"
2571 }
2572 }
2573 ]
2574 ]
2575 ],
2576 [
2577 "li",
2578 {
2579 "style": "padding-left: 13px;"
2580 },
2581 [
2582 "span",
2583 {
2584 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2585 },
2586 "getRange: "
2587 ],
2588 [
2589 "span",
2590 {
2591 "style": "margin-left: 13px"
2592 },
2593 [
2594 "object",
2595 {
2596 "object": "<OBJECT>",
2597 "config": {
2598 "name": "none"
2599 }
2600 }
2601 ]
2602 ]
2603 ],
2604 [
2605 "li",
2606 {
2607 "style": "padding-left: 13px;"
2608 },
2609 [
2610 "span",
2611 {
2612 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2613 },
2614 "indexOf: "
2615 ],
2616 [
2617 "span",
2618 {
2619 "style": "margin-left: 13px"
2620 },
2621 [
2622 "object",
2623 {
2624 "object": "<OBJECT>",
2625 "config": {
2626 "name": "none"
2627 }
2628 }
2629 ]
2630 ]
2631 ],
2632 [
2633 "li",
2634 {
2635 "style": "padding-left: 13px;"
2636 },
2637 [
2638 "span",
2639 {
2640 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2641 },
2642 "insert: "
2643 ],
2644 [
2645 "span",
2646 {
2647 "style": "margin-left: 13px"
2648 },
2649 [
2650 "object",
2651 {
2652 "object": "<OBJECT>",
2653 "config": {
2654 "name": "none"
2655 }
2656 }
2657 ]
2658 ]
2659 ],
2660 [
2661 "li",
2662 {
2663 "style": "padding-left: 13px;"
2664 },
2665 [
2666 "span",
2667 {
2668 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2669 },
2670 "insertAll: "
2671 ],
2672 [
2673 "span",
2674 {
2675 "style": "margin-left: 13px"
2676 },
2677 [
2678 "object",
2679 {
2680 "object": "<OBJECT>",
2681 "config": {
2682 "name": "none"
2683 }
2684 }
2685 ]
2686 ]
2687 ],
2688 [
2689 "li",
2690 {
2691 "style": "padding-left: 13px;"
2692 },
2693 [
2694 "span",
2695 {
2696 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2697 },
2698 "join: "
2699 ],
2700 [
2701 "span",
2702 {
2703 "style": "margin-left: 13px"
2704 },
2705 [
2706 "object",
2707 {
2708 "object": "<OBJECT>",
2709 "config": {
2710 "name": "none"
2711 }
2712 }
2713 ]
2714 ]
2715 ],
2716 [
2717 "li",
2718 {
2719 "style": "padding-left: 13px;"
2720 },
2721 [
2722 "span",
2723 {
2724 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2725 },
2726 "lastIndexOf: "
2727 ],
2728 [
2729 "span",
2730 {
2731 "style": "margin-left: 13px"
2732 },
2733 [
2734 "object",
2735 {
2736 "object": "<OBJECT>",
2737 "config": {
2738 "name": "none"
2739 }
2740 }
2741 ]
2742 ]
2743 ],
2744 [
2745 "li",
2746 {
2747 "style": "padding-left: 13px;"
2748 },
2749 [
2750 "span",
2751 {
2752 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2753 },
2754 "lastWhere: "
2755 ],
2756 [
2757 "span",
2758 {
2759 "style": "margin-left: 13px"
2760 },
2761 [
2762 "object",
2763 {
2764 "object": "<OBJECT>",
2765 "config": {
2766 "name": "none"
2767 }
2768 }
2769 ]
2770 ]
2771 ],
2772 [
2773 "li",
2774 {
2775 "style": "padding-left: 13px;"
2776 },
2777 [
2778 "span",
2779 {
2780 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2781 },
2782 "map: "
2783 ],
2784 [
2785 "span",
2786 {
2787 "style": "margin-left: 13px"
2788 },
2789 [
2790 "object",
2791 {
2792 "object": "<OBJECT>",
2793 "config": {
2794 "name": "none"
2795 }
2796 }
2797 ]
2798 ]
2799 ],
2800 [
2801 "li",
2802 {
2803 "style": "padding-left: 13px;"
2804 },
2805 [
2806 "span",
2807 {
2808 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2809 },
2810 "reduce: "
2811 ],
2812 [
2813 "span",
2814 {
2815 "style": "margin-left: 13px"
2816 },
2817 [
2818 "object",
2819 {
2820 "object": "<OBJECT>",
2821 "config": {
2822 "name": "none"
2823 }
2824 }
2825 ]
2826 ]
2827 ],
2828 [
2829 "li",
2830 {
2831 "style": "padding-left: 13px;"
2832 },
2833 [
2834 "span",
2835 {
2836 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2837 },
2838 "remove: "
2839 ],
2840 [
2841 "span",
2842 {
2843 "style": "margin-left: 13px"
2844 },
2845 [
2846 "object",
2847 {
2848 "object": "<OBJECT>",
2849 "config": {
2850 "name": "none"
2851 }
2852 }
2853 ]
2854 ]
2855 ],
2856 [
2857 "li",
2858 {
2859 "style": "padding-left: 13px;"
2860 },
2861 [
2862 "span",
2863 {
2864 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2865 },
2866 "removeAt: "
2867 ],
2868 [
2869 "span",
2870 {
2871 "style": "margin-left: 13px"
2872 },
2873 [
2874 "object",
2875 {
2876 "object": "<OBJECT>",
2877 "config": {
2878 "name": "none"
2879 }
2880 }
2881 ]
2882 ]
2883 ],
2884 [
2885 "li",
2886 {
2887 "style": "padding-left: 13px;"
2888 },
2889 [
2890 "span",
2891 {
2892 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2893 },
2894 "removeLast: "
2895 ],
2896 [
2897 "span",
2898 {
2899 "style": "margin-left: 13px"
2900 },
2901 [
2902 "object",
2903 {
2904 "object": "<OBJECT>",
2905 "config": {
2906 "name": "none"
2907 }
2908 }
2909 ]
2910 ]
2911 ],
2912 [
2913 "li",
2914 {
2915 "style": "padding-left: 13px;"
2916 },
2917 [
2918 "span",
2919 {
2920 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2921 },
2922 "removeRange: "
2923 ],
2924 [
2925 "span",
2926 {
2927 "style": "margin-left: 13px"
2928 },
2929 [
2930 "object",
2931 {
2932 "object": "<OBJECT>",
2933 "config": {
2934 "name": "none"
2935 }
2936 }
2937 ]
2938 ]
2939 ],
2940 [
2941 "li",
2942 {
2943 "style": "padding-left: 13px;"
2944 },
2945 [
2946 "span",
2947 {
2948 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2949 },
2950 "removeWhere: "
2951 ],
2952 [
2953 "span",
2954 {
2955 "style": "margin-left: 13px"
2956 },
2957 [
2958 "object",
2959 {
2960 "object": "<OBJECT>",
2961 "config": {
2962 "name": "none"
2963 }
2964 }
2965 ]
2966 ]
2967 ],
2968 [
2969 "li",
2970 {
2971 "style": "padding-left: 13px;"
2972 },
2973 [
2974 "span",
2975 {
2976 "style": "color: rgb(136, 19, 145); margin-right: -13px"
2977 },
2978 "replaceRange: "
2979 ],
2980 [
2981 "span",
2982 {
2983 "style": "margin-left: 13px"
2984 },
2985 [
2986 "object",
2987 {
2988 "object": "<OBJECT>",
2989 "config": {
2990 "name": "none"
2991 }
2992 }
2993 ]
2994 ]
2995 ],
2996 [
2997 "li",
2998 {
2999 "style": "padding-left: 13px;"
3000 },
3001 [
3002 "span",
3003 {
3004 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3005 },
3006 "retainWhere: "
3007 ],
3008 [
3009 "span",
3010 {
3011 "style": "margin-left: 13px"
3012 },
3013 [
3014 "object",
3015 {
3016 "object": "<OBJECT>",
3017 "config": {
3018 "name": "none"
3019 }
3020 }
3021 ]
3022 ]
3023 ],
3024 [
3025 "li",
3026 {
3027 "style": "padding-left: 13px;"
3028 },
3029 [
3030 "span",
3031 {
3032 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3033 },
3034 "setAll: "
3035 ],
3036 [
3037 "span",
3038 {
3039 "style": "margin-left: 13px"
3040 },
3041 [
3042 "object",
3043 {
3044 "object": "<OBJECT>",
3045 "config": {
3046 "name": "none"
3047 }
3048 }
3049 ]
3050 ]
3051 ],
3052 [
3053 "li",
3054 {
3055 "style": "padding-left: 13px;"
3056 },
3057 [
3058 "span",
3059 {
3060 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3061 },
3062 "setRange: "
3063 ],
3064 [
3065 "span",
3066 {
3067 "style": "margin-left: 13px"
3068 },
3069 [
3070 "object",
3071 {
3072 "object": "<OBJECT>",
3073 "config": {
3074 "name": "none"
3075 }
3076 }
3077 ]
3078 ]
3079 ],
3080 [
3081 "li",
3082 {
3083 "style": "padding-left: 13px;"
3084 },
3085 [
3086 "span",
3087 {
3088 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3089 },
3090 "shuffle: "
3091 ],
3092 [
3093 "span",
3094 {
3095 "style": "margin-left: 13px"
3096 },
3097 [
3098 "object",
3099 {
3100 "object": "<OBJECT>",
3101 "config": {
3102 "name": "none"
3103 }
3104 }
3105 ]
3106 ]
3107 ],
3108 [
3109 "li",
3110 {
3111 "style": "padding-left: 13px;"
3112 },
3113 [
3114 "span",
3115 {
3116 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3117 },
3118 "singleWhere: "
3119 ],
3120 [
3121 "span",
3122 {
3123 "style": "margin-left: 13px"
3124 },
3125 [
3126 "object",
3127 {
3128 "object": "<OBJECT>",
3129 "config": {
3130 "name": "none"
3131 }
3132 }
3133 ]
3134 ]
3135 ],
3136 [
3137 "li",
3138 {
3139 "style": "padding-left: 13px;"
3140 },
3141 [
3142 "span",
3143 {
3144 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3145 },
3146 "skip: "
3147 ],
3148 [
3149 "span",
3150 {
3151 "style": "margin-left: 13px"
3152 },
3153 [
3154 "object",
3155 {
3156 "object": "<OBJECT>",
3157 "config": {
3158 "name": "none"
3159 }
3160 }
3161 ]
3162 ]
3163 ],
3164 [
3165 "li",
3166 {
3167 "style": "padding-left: 13px;"
3168 },
3169 [
3170 "span",
3171 {
3172 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3173 },
3174 "skipWhile: "
3175 ],
3176 [
3177 "span",
3178 {
3179 "style": "margin-left: 13px"
3180 },
3181 [
3182 "object",
3183 {
3184 "object": "<OBJECT>",
3185 "config": {
3186 "name": "none"
3187 }
3188 }
3189 ]
3190 ]
3191 ],
3192 [
3193 "li",
3194 {
3195 "style": "padding-left: 13px;"
3196 },
3197 [
3198 "span",
3199 {
3200 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3201 },
3202 "sort: "
3203 ],
3204 [
3205 "span",
3206 {
3207 "style": "margin-left: 13px"
3208 },
3209 [
3210 "object",
3211 {
3212 "object": "<OBJECT>",
3213 "config": {
3214 "name": "none"
3215 }
3216 }
3217 ]
3218 ]
3219 ],
3220 [
3221 "li",
3222 {
3223 "style": "padding-left: 13px;"
3224 },
3225 [
3226 "span",
3227 {
3228 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3229 },
3230 "sublist: "
3231 ],
3232 [
3233 "span",
3234 {
3235 "style": "margin-left: 13px"
3236 },
3237 [
3238 "object",
3239 {
3240 "object": "<OBJECT>",
3241 "config": {
3242 "name": "none"
3243 }
3244 }
3245 ]
3246 ]
3247 ],
3248 [
3249 "li",
3250 {
3251 "style": "padding-left: 13px;"
3252 },
3253 [
3254 "span",
3255 {
3256 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3257 },
3258 "take: "
3259 ],
3260 [
3261 "span",
3262 {
3263 "style": "margin-left: 13px"
3264 },
3265 [
3266 "object",
3267 {
3268 "object": "<OBJECT>",
3269 "config": {
3270 "name": "none"
3271 }
3272 }
3273 ]
3274 ]
3275 ],
3276 [
3277 "li",
3278 {
3279 "style": "padding-left: 13px;"
3280 },
3281 [
3282 "span",
3283 {
3284 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3285 },
3286 "takeWhile: "
3287 ],
3288 [
3289 "span",
3290 {
3291 "style": "margin-left: 13px"
3292 },
3293 [
3294 "object",
3295 {
3296 "object": "<OBJECT>",
3297 "config": {
3298 "name": "none"
3299 }
3300 }
3301 ]
3302 ]
3303 ],
3304 [
3305 "li",
3306 {
3307 "style": "padding-left: 13px;"
3308 },
3309 [
3310 "span",
3311 {
3312 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3313 },
3314 "toList: "
3315 ],
3316 [
3317 "span",
3318 {
3319 "style": "margin-left: 13px"
3320 },
3321 [
3322 "object",
3323 {
3324 "object": "<OBJECT>",
3325 "config": {
3326 "name": "none"
3327 }
3328 }
3329 ]
3330 ]
3331 ],
3332 [
3333 "li",
3334 {
3335 "style": "padding-left: 13px;"
3336 },
3337 [
3338 "span",
3339 {
3340 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3341 },
3342 "toSet: "
3343 ],
3344 [
3345 "span",
3346 {
3347 "style": "margin-left: 13px"
3348 },
3349 [
3350 "object",
3351 {
3352 "object": "<OBJECT>",
3353 "config": {
3354 "name": "none"
3355 }
3356 }
3357 ]
3358 ]
3359 ],
3360 [
3361 "li",
3362 {
3363 "style": "padding-left: 13px;"
3364 },
3365 [
3366 "span",
3367 {
3368 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3369 },
3370 "where: "
3371 ],
3372 [
3373 "span",
3374 {
3375 "style": "margin-left: 13px"
3376 },
3377 [
3378 "object",
3379 {
3380 "object": "<OBJECT>",
3381 "config": {
3382 "name": "none"
3383 }
3384 }
3385 ]
3386 ]
3387 ],
3388 [
3389 "li",
3390 {
3391 "style": "padding-left: 13px;"
3392 },
3393 [
3394 "span",
3395 {
3396 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3397 },
3398 "_get: "
3399 ],
3400 [
3401 "span",
3402 {
3403 "style": "margin-left: 13px"
3404 },
3405 [
3406 "object",
3407 {
3408 "object": "<OBJECT>",
3409 "config": {
3410 "name": "none"
3411 }
3412 }
3413 ]
3414 ]
3415 ],
3416 [
3417 "li",
3418 {
3419 "style": "padding-left: 13px;"
3420 },
3421 [
3422 "span",
3423 {
3424 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3425 },
3426 "_removeWhere: "
3427 ],
3428 [
3429 "span",
3430 {
3431 "style": "margin-left: 13px"
3432 },
3433 [
3434 "object",
3435 {
3436 "object": "<OBJECT>",
3437 "config": {
3438 "name": "none"
3439 }
3440 }
3441 ]
3442 ]
3443 ],
3444 [
3445 "li",
3446 {
3447 "style": "padding-left: 13px;"
3448 },
3449 [
3450 "span",
3451 {
3452 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3453 },
3454 "_set: "
3455 ],
3456 [
3457 "span",
3458 {
3459 "style": "margin-left: 13px"
3460 },
3461 [
3462 "object",
3463 {
3464 "object": "<OBJECT>",
3465 "config": {
3466 "name": "none"
3467 }
3468 }
3469 ]
3470 ]
3471 ],
3472 [
3473 "li",
3474 {
3475 "style": "padding-left: 13px;"
3476 },
3477 [
3478 "span",
3479 {
3480 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3481 },
3482 "[[base class]]: "
3483 ],
3484 [
3485 "span",
3486 {
3487 "style": "margin-left: 13px"
3488 },
3489 [
3490 "object",
3491 {
3492 "object": "<OBJECT>",
3493 "config": {
3494 "name": "asClass"
3495 }
3496 }
3497 ]
3498 ]
3499 ]
3500 ]
3501 -----------------------------------
3502 Test: Iterable instance header
3503 Value:
3504 [
3505 "span",
3506 {
3507 "style": "background-color: #d9edf7;"
3508 },
3509 "MappedListIterable<String, String> length 3"
3510 ]
3511 -----------------------------------
3512 Test: Iterable instance body
3513 Value:
3514 [
3515 "ol",
3516 {
3517 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
3518 },
3519 [
3520 "li",
3521 {
3522 "style": "padding-left: 13px;"
3523 },
3524 [
3525 "span",
3526 {},
3527 [
3528 "span",
3529 {
3530 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3531 },
3532 "0: "
3533 ],
3534 [
3535 "span",
3536 {
3537 "style": "margin-left: 13px"
3538 },
3539 "foofoofoofoofoo"
3540 ]
3541 ]
3542 ],
3543 [
3544 "li",
3545 {
3546 "style": "padding-left: 13px;"
3547 },
3548 [
3549 "span",
3550 {},
3551 [
3552 "span",
3553 {
3554 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3555 },
3556 "1: "
3557 ],
3558 [
3559 "span",
3560 {
3561 "style": "margin-left: 13px"
3562 },
3563 "barbarbarbarbar"
3564 ]
3565 ]
3566 ],
3567 [
3568 "li",
3569 {
3570 "style": "padding-left: 13px;"
3571 },
3572 [
3573 "span",
3574 {},
3575 [
3576 "span",
3577 {
3578 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3579 },
3580 "2: "
3581 ],
3582 [
3583 "span",
3584 {
3585 "style": "margin-left: 13px"
3586 },
3587 "bazbazbazbazbaz"
3588 ]
3589 ]
3590 ],
3591 [
3592 "li",
3593 {
3594 "style": "padding-left: 13px;"
3595 },
3596 [
3597 "span",
3598 {
3599 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3600 },
3601 "[[class]]: "
3602 ],
3603 [
3604 "span",
3605 {
3606 "style": "margin-left: 13px"
3607 },
3608 [
3609 "object",
3610 {
3611 "object": "<OBJECT>",
3612 "config": {
3613 "name": "asClass"
3614 }
3615 }
3616 ]
3617 ]
3618 ]
3619 ]
3620 -----------------------------------
3621 Test: Iterable definition formatting header
3622 Value:
3623 [
3624 "span",
3625 {
3626 "style": "background-color: #d9edf7;"
3627 },
3628 "MappedListIterable<String, String> implements EfficientLength"
3629 ]
3630 -----------------------------------
3631 Test: Iterable definition formatting body
3632 Value:
3633 [
3634 "ol",
3635 {
3636 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
3637 },
3638 [
3639 "li",
3640 {
3641 "style": "padding-left: 13px;"
3642 },
3643 [
3644 "span",
3645 {},
3646 [
3647 "span",
3648 {
3649 "style": ""
3650 },
3651 "[[Instance Methods]]"
3652 ]
3653 ]
3654 ],
3655 [
3656 "li",
3657 {
3658 "style": "padding-left: 13px;"
3659 },
3660 [
3661 "span",
3662 {
3663 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3664 },
3665 "elementAt: "
3666 ],
3667 [
3668 "span",
3669 {
3670 "style": "margin-left: 13px"
3671 },
3672 [
3673 "object",
3674 {
3675 "object": "<OBJECT>",
3676 "config": {
3677 "name": "none"
3678 }
3679 }
3680 ]
3681 ]
3682 ],
3683 [
3684 "li",
3685 {
3686 "style": "padding-left: 13px;"
3687 },
3688 [
3689 "span",
3690 {
3691 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3692 },
3693 "[[base class]]: "
3694 ],
3695 [
3696 "span",
3697 {
3698 "style": "margin-left: 13px"
3699 },
3700 [
3701 "object",
3702 {
3703 "object": "<OBJECT>",
3704 "config": {
3705 "name": "asClass"
3706 }
3707 }
3708 ]
3709 ]
3710 ]
3711 ]
3712 -----------------------------------
3713 Test: Set instance header
3714 Value:
3715 [
3716 "span",
3717 {
3718 "style": "background-color: #d9edf7;"
3719 },
3720 "_LinkedHashSet length 3"
3721 ]
3722 -----------------------------------
3723 Test: Set instance body
3724 Value:
3725 [
3726 "ol",
3727 {
3728 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
3729 },
3730 [
3731 "li",
3732 {
3733 "style": "padding-left: 13px;"
3734 },
3735 [
3736 "span",
3737 {},
3738 [
3739 "span",
3740 {
3741 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3742 },
3743 "0: "
3744 ],
3745 [
3746 "span",
3747 {
3748 "style": "margin-left: 13px"
3749 },
3750 "foo"
3751 ]
3752 ]
3753 ],
3754 [
3755 "li",
3756 {
3757 "style": "padding-left: 13px;"
3758 },
3759 [
3760 "span",
3761 {},
3762 [
3763 "span",
3764 {
3765 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3766 },
3767 "1: "
3768 ],
3769 [
3770 "span",
3771 {
3772 "style": "margin-left: 13px"
3773 },
3774 "42"
3775 ]
3776 ]
3777 ],
3778 [
3779 "li",
3780 {
3781 "style": "padding-left: 13px;"
3782 },
3783 [
3784 "span",
3785 {},
3786 [
3787 "span",
3788 {
3789 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3790 },
3791 "2: "
3792 ],
3793 [
3794 "span",
3795 {
3796 "style": "margin-left: 13px"
3797 },
3798 "true"
3799 ]
3800 ]
3801 ],
3802 [
3803 "li",
3804 {
3805 "style": "padding-left: 13px;"
3806 },
3807 [
3808 "span",
3809 {
3810 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3811 },
3812 "[[class]]: "
3813 ],
3814 [
3815 "span",
3816 {
3817 "style": "margin-left: 13px"
3818 },
3819 [
3820 "object",
3821 {
3822 "object": "<OBJECT>",
3823 "config": {
3824 "name": "asClass"
3825 }
3826 }
3827 ]
3828 ]
3829 ]
3830 ]
3831 -----------------------------------
3832 Test: Set definition formatting header
3833 Value:
3834 [
3835 "span",
3836 {
3837 "style": "background-color: #d9edf7;"
3838 },
3839 "_LinkedHashSet implements LinkedHashSet"
3840 ]
3841 -----------------------------------
3842 Test: Set definition formatting body
3843 Value:
3844 [
3845 "ol",
3846 {
3847 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
3848 },
3849 [
3850 "li",
3851 {
3852 "style": "padding-left: 13px;"
3853 },
3854 [
3855 "span",
3856 {},
3857 [
3858 "span",
3859 {
3860 "style": ""
3861 },
3862 "[[Static members]]"
3863 ]
3864 ]
3865 ],
3866 [
3867 "li",
3868 {
3869 "style": "padding-left: 13px;"
3870 },
3871 [
3872 "span",
3873 {
3874 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3875 },
3876 "_deleteTableEntry: "
3877 ],
3878 [
3879 "span",
3880 {
3881 "style": "margin-left: 13px"
3882 },
3883 [
3884 "object",
3885 {
3886 "object": "<OBJECT>",
3887 "config": {
3888 "name": "none"
3889 }
3890 }
3891 ]
3892 ]
3893 ],
3894 [
3895 "li",
3896 {
3897 "style": "padding-left: 13px;"
3898 },
3899 [
3900 "span",
3901 {
3902 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3903 },
3904 "_isNumericElement: "
3905 ],
3906 [
3907 "span",
3908 {
3909 "style": "margin-left: 13px"
3910 },
3911 [
3912 "object",
3913 {
3914 "object": "<OBJECT>",
3915 "config": {
3916 "name": "none"
3917 }
3918 }
3919 ]
3920 ]
3921 ],
3922 [
3923 "li",
3924 {
3925 "style": "padding-left: 13px;"
3926 },
3927 [
3928 "span",
3929 {
3930 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3931 },
3932 "_isStringElement: "
3933 ],
3934 [
3935 "span",
3936 {
3937 "style": "margin-left: 13px"
3938 },
3939 [
3940 "object",
3941 {
3942 "object": "<OBJECT>",
3943 "config": {
3944 "name": "none"
3945 }
3946 }
3947 ]
3948 ]
3949 ],
3950 [
3951 "li",
3952 {
3953 "style": "padding-left: 13px;"
3954 },
3955 [
3956 "span",
3957 {
3958 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3959 },
3960 "_newHashTable: "
3961 ],
3962 [
3963 "span",
3964 {
3965 "style": "margin-left: 13px"
3966 },
3967 [
3968 "object",
3969 {
3970 "object": "<OBJECT>",
3971 "config": {
3972 "name": "none"
3973 }
3974 }
3975 ]
3976 ]
3977 ],
3978 [
3979 "li",
3980 {
3981 "style": "padding-left: 13px;"
3982 },
3983 [
3984 "span",
3985 {
3986 "style": "color: rgb(136, 19, 145); margin-right: -13px"
3987 },
3988 "_setTableEntry: "
3989 ],
3990 [
3991 "span",
3992 {
3993 "style": "margin-left: 13px"
3994 },
3995 [
3996 "object",
3997 {
3998 "object": "<OBJECT>",
3999 "config": {
4000 "name": "none"
4001 }
4002 }
4003 ]
4004 ]
4005 ],
4006 [
4007 "li",
4008 {
4009 "style": "padding-left: 13px;"
4010 },
4011 [
4012 "span",
4013 {},
4014 [
4015 "span",
4016 {
4017 "style": ""
4018 },
4019 "[[Instance Methods]]"
4020 ]
4021 ]
4022 ],
4023 [
4024 "li",
4025 {
4026 "style": "padding-left: 13px;"
4027 },
4028 [
4029 "span",
4030 {
4031 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4032 },
4033 "add: "
4034 ],
4035 [
4036 "span",
4037 {
4038 "style": "margin-left: 13px"
4039 },
4040 [
4041 "object",
4042 {
4043 "object": "<OBJECT>",
4044 "config": {
4045 "name": "none"
4046 }
4047 }
4048 ]
4049 ]
4050 ],
4051 [
4052 "li",
4053 {
4054 "style": "padding-left: 13px;"
4055 },
4056 [
4057 "span",
4058 {
4059 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4060 },
4061 "contains: "
4062 ],
4063 [
4064 "span",
4065 {
4066 "style": "margin-left: 13px"
4067 },
4068 [
4069 "object",
4070 {
4071 "object": "<OBJECT>",
4072 "config": {
4073 "name": "none"
4074 }
4075 }
4076 ]
4077 ]
4078 ],
4079 [
4080 "li",
4081 {
4082 "style": "padding-left: 13px;"
4083 },
4084 [
4085 "span",
4086 {
4087 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4088 },
4089 "forEach: "
4090 ],
4091 [
4092 "span",
4093 {
4094 "style": "margin-left: 13px"
4095 },
4096 [
4097 "object",
4098 {
4099 "object": "<OBJECT>",
4100 "config": {
4101 "name": "none"
4102 }
4103 }
4104 ]
4105 ]
4106 ],
4107 [
4108 "li",
4109 {
4110 "style": "padding-left: 13px;"
4111 },
4112 [
4113 "span",
4114 {
4115 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4116 },
4117 "lookup: "
4118 ],
4119 [
4120 "span",
4121 {
4122 "style": "margin-left: 13px"
4123 },
4124 [
4125 "object",
4126 {
4127 "object": "<OBJECT>",
4128 "config": {
4129 "name": "none"
4130 }
4131 }
4132 ]
4133 ]
4134 ],
4135 [
4136 "li",
4137 {
4138 "style": "padding-left: 13px;"
4139 },
4140 [
4141 "span",
4142 {
4143 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4144 },
4145 "remove: "
4146 ],
4147 [
4148 "span",
4149 {
4150 "style": "margin-left: 13px"
4151 },
4152 [
4153 "object",
4154 {
4155 "object": "<OBJECT>",
4156 "config": {
4157 "name": "none"
4158 }
4159 }
4160 ]
4161 ]
4162 ],
4163 [
4164 "li",
4165 {
4166 "style": "padding-left: 13px;"
4167 },
4168 [
4169 "span",
4170 {
4171 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4172 },
4173 "_add: "
4174 ],
4175 [
4176 "span",
4177 {
4178 "style": "margin-left: 13px"
4179 },
4180 [
4181 "object",
4182 {
4183 "object": "<OBJECT>",
4184 "config": {
4185 "name": "none"
4186 }
4187 }
4188 ]
4189 ]
4190 ],
4191 [
4192 "li",
4193 {
4194 "style": "padding-left: 13px;"
4195 },
4196 [
4197 "span",
4198 {
4199 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4200 },
4201 "_addHashTableEntry: "
4202 ],
4203 [
4204 "span",
4205 {
4206 "style": "margin-left: 13px"
4207 },
4208 [
4209 "object",
4210 {
4211 "object": "<OBJECT>",
4212 "config": {
4213 "name": "none"
4214 }
4215 }
4216 ]
4217 ]
4218 ],
4219 [
4220 "li",
4221 {
4222 "style": "padding-left: 13px;"
4223 },
4224 [
4225 "span",
4226 {
4227 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4228 },
4229 "_computeHashCode: "
4230 ],
4231 [
4232 "span",
4233 {
4234 "style": "margin-left: 13px"
4235 },
4236 [
4237 "object",
4238 {
4239 "object": "<OBJECT>",
4240 "config": {
4241 "name": "none"
4242 }
4243 }
4244 ]
4245 ]
4246 ],
4247 [
4248 "li",
4249 {
4250 "style": "padding-left: 13px;"
4251 },
4252 [
4253 "span",
4254 {
4255 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4256 },
4257 "_contains: "
4258 ],
4259 [
4260 "span",
4261 {
4262 "style": "margin-left: 13px"
4263 },
4264 [
4265 "object",
4266 {
4267 "object": "<OBJECT>",
4268 "config": {
4269 "name": "none"
4270 }
4271 }
4272 ]
4273 ]
4274 ],
4275 [
4276 "li",
4277 {
4278 "style": "padding-left: 13px;"
4279 },
4280 [
4281 "span",
4282 {
4283 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4284 },
4285 "_filterWhere: "
4286 ],
4287 [
4288 "span",
4289 {
4290 "style": "margin-left: 13px"
4291 },
4292 [
4293 "object",
4294 {
4295 "object": "<OBJECT>",
4296 "config": {
4297 "name": "none"
4298 }
4299 }
4300 ]
4301 ]
4302 ],
4303 [
4304 "li",
4305 {
4306 "style": "padding-left: 13px;"
4307 },
4308 [
4309 "span",
4310 {
4311 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4312 },
4313 "_findBucketIndex: "
4314 ],
4315 [
4316 "span",
4317 {
4318 "style": "margin-left: 13px"
4319 },
4320 [
4321 "object",
4322 {
4323 "object": "<OBJECT>",
4324 "config": {
4325 "name": "none"
4326 }
4327 }
4328 ]
4329 ]
4330 ],
4331 [
4332 "li",
4333 {
4334 "style": "padding-left: 13px;"
4335 },
4336 [
4337 "span",
4338 {
4339 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4340 },
4341 "_getBucket: "
4342 ],
4343 [
4344 "span",
4345 {
4346 "style": "margin-left: 13px"
4347 },
4348 [
4349 "object",
4350 {
4351 "object": "<OBJECT>",
4352 "config": {
4353 "name": "none"
4354 }
4355 }
4356 ]
4357 ]
4358 ],
4359 [
4360 "li",
4361 {
4362 "style": "padding-left: 13px;"
4363 },
4364 [
4365 "span",
4366 {
4367 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4368 },
4369 "_getTableEntry: "
4370 ],
4371 [
4372 "span",
4373 {
4374 "style": "margin-left: 13px"
4375 },
4376 [
4377 "object",
4378 {
4379 "object": "<OBJECT>",
4380 "config": {
4381 "name": "none"
4382 }
4383 }
4384 ]
4385 ]
4386 ],
4387 [
4388 "li",
4389 {
4390 "style": "padding-left: 13px;"
4391 },
4392 [
4393 "span",
4394 {
4395 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4396 },
4397 "_lookup: "
4398 ],
4399 [
4400 "span",
4401 {
4402 "style": "margin-left: 13px"
4403 },
4404 [
4405 "object",
4406 {
4407 "object": "<OBJECT>",
4408 "config": {
4409 "name": "none"
4410 }
4411 }
4412 ]
4413 ]
4414 ],
4415 [
4416 "li",
4417 {
4418 "style": "padding-left: 13px;"
4419 },
4420 [
4421 "span",
4422 {
4423 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4424 },
4425 "_modified: "
4426 ],
4427 [
4428 "span",
4429 {
4430 "style": "margin-left: 13px"
4431 },
4432 [
4433 "object",
4434 {
4435 "object": "<OBJECT>",
4436 "config": {
4437 "name": "none"
4438 }
4439 }
4440 ]
4441 ]
4442 ],
4443 [
4444 "li",
4445 {
4446 "style": "padding-left: 13px;"
4447 },
4448 [
4449 "span",
4450 {
4451 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4452 },
4453 "_newLinkedCell: "
4454 ],
4455 [
4456 "span",
4457 {
4458 "style": "margin-left: 13px"
4459 },
4460 [
4461 "object",
4462 {
4463 "object": "<OBJECT>",
4464 "config": {
4465 "name": "none"
4466 }
4467 }
4468 ]
4469 ]
4470 ],
4471 [
4472 "li",
4473 {
4474 "style": "padding-left: 13px;"
4475 },
4476 [
4477 "span",
4478 {
4479 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4480 },
4481 "_newSet: "
4482 ],
4483 [
4484 "span",
4485 {
4486 "style": "margin-left: 13px"
4487 },
4488 [
4489 "object",
4490 {
4491 "object": "<OBJECT>",
4492 "config": {
4493 "name": "none"
4494 }
4495 }
4496 ]
4497 ]
4498 ],
4499 [
4500 "li",
4501 {
4502 "style": "padding-left: 13px;"
4503 },
4504 [
4505 "span",
4506 {
4507 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4508 },
4509 "_remove: "
4510 ],
4511 [
4512 "span",
4513 {
4514 "style": "margin-left: 13px"
4515 },
4516 [
4517 "object",
4518 {
4519 "object": "<OBJECT>",
4520 "config": {
4521 "name": "none"
4522 }
4523 }
4524 ]
4525 ]
4526 ],
4527 [
4528 "li",
4529 {
4530 "style": "padding-left: 13px;"
4531 },
4532 [
4533 "span",
4534 {
4535 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4536 },
4537 "_removeHashTableEntry: "
4538 ],
4539 [
4540 "span",
4541 {
4542 "style": "margin-left: 13px"
4543 },
4544 [
4545 "object",
4546 {
4547 "object": "<OBJECT>",
4548 "config": {
4549 "name": "none"
4550 }
4551 }
4552 ]
4553 ]
4554 ],
4555 [
4556 "li",
4557 {
4558 "style": "padding-left: 13px;"
4559 },
4560 [
4561 "span",
4562 {
4563 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4564 },
4565 "_unlinkCell: "
4566 ],
4567 [
4568 "span",
4569 {
4570 "style": "margin-left: 13px"
4571 },
4572 [
4573 "object",
4574 {
4575 "object": "<OBJECT>",
4576 "config": {
4577 "name": "none"
4578 }
4579 }
4580 ]
4581 ]
4582 ],
4583 [
4584 "li",
4585 {
4586 "style": "padding-left: 13px;"
4587 },
4588 [
4589 "span",
4590 {
4591 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4592 },
4593 "_unsupported: "
4594 ],
4595 [
4596 "span",
4597 {
4598 "style": "margin-left: 13px"
4599 },
4600 [
4601 "object",
4602 {
4603 "object": "<OBJECT>",
4604 "config": {
4605 "name": "none"
4606 }
4607 }
4608 ]
4609 ]
4610 ],
4611 [
4612 "li",
4613 {
4614 "style": "padding-left: 13px;"
4615 },
4616 [
4617 "span",
4618 {
4619 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4620 },
4621 "[[base class]]: "
4622 ],
4623 [
4624 "span",
4625 {
4626 "style": "margin-left: 13px"
4627 },
4628 [
4629 "object",
4630 {
4631 "object": "<OBJECT>",
4632 "config": {
4633 "name": "asClass"
4634 }
4635 }
4636 ]
4637 ]
4638 ]
4639 ]
4640 -----------------------------------
4641 Test: Map<String, int> formatting header
4642 Value:
4643 [
4644 "span",
4645 {
4646 "style": "background-color: #d9edf7;"
4647 },
4648 "JsLinkedHashMap<String, int> length 3"
4649 ]
4650 -----------------------------------
4651 Test: Map<String, int> formatting body
4652 Value:
4653 [
4654 "ol",
4655 {
4656 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
4657 },
4658 [
4659 "li",
4660 {
4661 "style": "padding-left: 13px;"
4662 },
4663 [
4664 "span",
4665 {
4666 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4667 },
4668 "0: "
4669 ],
4670 [
4671 "span",
4672 {
4673 "style": "margin-left: 13px"
4674 },
4675 [
4676 "object",
4677 {
4678 "object": "<OBJECT>",
4679 "config": {
4680 "name": "none"
4681 }
4682 }
4683 ]
4684 ]
4685 ],
4686 [
4687 "li",
4688 {
4689 "style": "padding-left: 13px;"
4690 },
4691 [
4692 "span",
4693 {
4694 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4695 },
4696 "1: "
4697 ],
4698 [
4699 "span",
4700 {
4701 "style": "margin-left: 13px"
4702 },
4703 [
4704 "object",
4705 {
4706 "object": "<OBJECT>",
4707 "config": {
4708 "name": "none"
4709 }
4710 }
4711 ]
4712 ]
4713 ],
4714 [
4715 "li",
4716 {
4717 "style": "padding-left: 13px;"
4718 },
4719 [
4720 "span",
4721 {
4722 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4723 },
4724 "2: "
4725 ],
4726 [
4727 "span",
4728 {
4729 "style": "margin-left: 13px"
4730 },
4731 [
4732 "object",
4733 {
4734 "object": "<OBJECT>",
4735 "config": {
4736 "name": "none"
4737 }
4738 }
4739 ]
4740 ]
4741 ],
4742 [
4743 "li",
4744 {
4745 "style": "padding-left: 13px;"
4746 },
4747 [
4748 "span",
4749 {
4750 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4751 },
4752 "[[class]]: "
4753 ],
4754 [
4755 "span",
4756 {
4757 "style": "margin-left: 13px"
4758 },
4759 [
4760 "object",
4761 {
4762 "object": "<OBJECT>",
4763 "config": {
4764 "name": "asClass"
4765 }
4766 }
4767 ]
4768 ]
4769 ]
4770 ]
4771 -----------------------------------
4772 Test: Map<dynamic, dynamic> instance header
4773 Value:
4774 [
4775 "span",
4776 {
4777 "style": "background-color: #d9edf7;"
4778 },
4779 "JsLinkedHashMap<Object, Object> length 3"
4780 ]
4781 -----------------------------------
4782 Test: Map<dynamic, dynamic> instance body
4783 Value:
4784 [
4785 "ol",
4786 {
4787 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
4788 },
4789 [
4790 "li",
4791 {
4792 "style": "padding-left: 13px;"
4793 },
4794 [
4795 "span",
4796 {
4797 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4798 },
4799 "0: "
4800 ],
4801 [
4802 "span",
4803 {
4804 "style": "margin-left: 13px"
4805 },
4806 [
4807 "object",
4808 {
4809 "object": "<OBJECT>",
4810 "config": {
4811 "name": "none"
4812 }
4813 }
4814 ]
4815 ]
4816 ],
4817 [
4818 "li",
4819 {
4820 "style": "padding-left: 13px;"
4821 },
4822 [
4823 "span",
4824 {
4825 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4826 },
4827 "1: "
4828 ],
4829 [
4830 "span",
4831 {
4832 "style": "margin-left: 13px"
4833 },
4834 [
4835 "object",
4836 {
4837 "object": "<OBJECT>",
4838 "config": {
4839 "name": "none"
4840 }
4841 }
4842 ]
4843 ]
4844 ],
4845 [
4846 "li",
4847 {
4848 "style": "padding-left: 13px;"
4849 },
4850 [
4851 "span",
4852 {
4853 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4854 },
4855 "2: "
4856 ],
4857 [
4858 "span",
4859 {
4860 "style": "margin-left: 13px"
4861 },
4862 [
4863 "object",
4864 {
4865 "object": "<OBJECT>",
4866 "config": {
4867 "name": "none"
4868 }
4869 }
4870 ]
4871 ]
4872 ],
4873 [
4874 "li",
4875 {
4876 "style": "padding-left: 13px;"
4877 },
4878 [
4879 "span",
4880 {
4881 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4882 },
4883 "[[class]]: "
4884 ],
4885 [
4886 "span",
4887 {
4888 "style": "margin-left: 13px"
4889 },
4890 [
4891 "object",
4892 {
4893 "object": "<OBJECT>",
4894 "config": {
4895 "name": "asClass"
4896 }
4897 }
4898 ]
4899 ]
4900 ]
4901 ]
4902 -----------------------------------
4903 Test: Map<dynamic, dynamic> definition formatting header
4904 Value:
4905 [
4906 "span",
4907 {
4908 "style": "background-color: #d9edf7;"
4909 },
4910 "JsLinkedHashMap<Object, Object> implements LinkedHashMap<Object, Object>, I nternalMap<Object, Object>"
4911 ]
4912 -----------------------------------
4913 Test: Map<dynamic, dynamic> definition formatting body
4914 Value:
4915 [
4916 "ol",
4917 {
4918 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
4919 },
4920 [
4921 "li",
4922 {
4923 "style": "padding-left: 13px;"
4924 },
4925 [
4926 "span",
4927 {},
4928 [
4929 "span",
4930 {
4931 "style": ""
4932 },
4933 "[[Static members]]"
4934 ]
4935 ]
4936 ],
4937 [
4938 "li",
4939 {
4940 "style": "padding-left: 13px;"
4941 },
4942 [
4943 "span",
4944 {
4945 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4946 },
4947 "_isNumericKey: "
4948 ],
4949 [
4950 "span",
4951 {
4952 "style": "margin-left: 13px"
4953 },
4954 [
4955 "object",
4956 {
4957 "object": "<OBJECT>",
4958 "config": {
4959 "name": "none"
4960 }
4961 }
4962 ]
4963 ]
4964 ],
4965 [
4966 "li",
4967 {
4968 "style": "padding-left: 13px;"
4969 },
4970 [
4971 "span",
4972 {
4973 "style": "color: rgb(136, 19, 145); margin-right: -13px"
4974 },
4975 "_isStringKey: "
4976 ],
4977 [
4978 "span",
4979 {
4980 "style": "margin-left: 13px"
4981 },
4982 [
4983 "object",
4984 {
4985 "object": "<OBJECT>",
4986 "config": {
4987 "name": "none"
4988 }
4989 }
4990 ]
4991 ]
4992 ],
4993 [
4994 "li",
4995 {
4996 "style": "padding-left: 13px;"
4997 },
4998 [
4999 "span",
5000 {},
5001 [
5002 "span",
5003 {
5004 "style": ""
5005 },
5006 "[[Instance Methods]]"
5007 ]
5008 ]
5009 ],
5010 [
5011 "li",
5012 {
5013 "style": "padding-left: 13px;"
5014 },
5015 [
5016 "span",
5017 {
5018 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5019 },
5020 "addAll: "
5021 ],
5022 [
5023 "span",
5024 {
5025 "style": "margin-left: 13px"
5026 },
5027 [
5028 "object",
5029 {
5030 "object": "<OBJECT>",
5031 "config": {
5032 "name": "none"
5033 }
5034 }
5035 ]
5036 ]
5037 ],
5038 [
5039 "li",
5040 {
5041 "style": "padding-left: 13px;"
5042 },
5043 [
5044 "span",
5045 {
5046 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5047 },
5048 "clear: "
5049 ],
5050 [
5051 "span",
5052 {
5053 "style": "margin-left: 13px"
5054 },
5055 [
5056 "object",
5057 {
5058 "object": "<OBJECT>",
5059 "config": {
5060 "name": "none"
5061 }
5062 }
5063 ]
5064 ]
5065 ],
5066 [
5067 "li",
5068 {
5069 "style": "padding-left: 13px;"
5070 },
5071 [
5072 "span",
5073 {
5074 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5075 },
5076 "containsKey: "
5077 ],
5078 [
5079 "span",
5080 {
5081 "style": "margin-left: 13px"
5082 },
5083 [
5084 "object",
5085 {
5086 "object": "<OBJECT>",
5087 "config": {
5088 "name": "none"
5089 }
5090 }
5091 ]
5092 ]
5093 ],
5094 [
5095 "li",
5096 {
5097 "style": "padding-left: 13px;"
5098 },
5099 [
5100 "span",
5101 {
5102 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5103 },
5104 "containsValue: "
5105 ],
5106 [
5107 "span",
5108 {
5109 "style": "margin-left: 13px"
5110 },
5111 [
5112 "object",
5113 {
5114 "object": "<OBJECT>",
5115 "config": {
5116 "name": "none"
5117 }
5118 }
5119 ]
5120 ]
5121 ],
5122 [
5123 "li",
5124 {
5125 "style": "padding-left: 13px;"
5126 },
5127 [
5128 "span",
5129 {
5130 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5131 },
5132 "forEach: "
5133 ],
5134 [
5135 "span",
5136 {
5137 "style": "margin-left: 13px"
5138 },
5139 [
5140 "object",
5141 {
5142 "object": "<OBJECT>",
5143 "config": {
5144 "name": "none"
5145 }
5146 }
5147 ]
5148 ]
5149 ],
5150 [
5151 "li",
5152 {
5153 "style": "padding-left: 13px;"
5154 },
5155 [
5156 "span",
5157 {
5158 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5159 },
5160 "internalComputeHashCode: "
5161 ],
5162 [
5163 "span",
5164 {
5165 "style": "margin-left: 13px"
5166 },
5167 [
5168 "object",
5169 {
5170 "object": "<OBJECT>",
5171 "config": {
5172 "name": "none"
5173 }
5174 }
5175 ]
5176 ]
5177 ],
5178 [
5179 "li",
5180 {
5181 "style": "padding-left: 13px;"
5182 },
5183 [
5184 "span",
5185 {
5186 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5187 },
5188 "internalContainsKey: "
5189 ],
5190 [
5191 "span",
5192 {
5193 "style": "margin-left: 13px"
5194 },
5195 [
5196 "object",
5197 {
5198 "object": "<OBJECT>",
5199 "config": {
5200 "name": "none"
5201 }
5202 }
5203 ]
5204 ]
5205 ],
5206 [
5207 "li",
5208 {
5209 "style": "padding-left: 13px;"
5210 },
5211 [
5212 "span",
5213 {
5214 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5215 },
5216 "internalFindBucketIndex: "
5217 ],
5218 [
5219 "span",
5220 {
5221 "style": "margin-left: 13px"
5222 },
5223 [
5224 "object",
5225 {
5226 "object": "<OBJECT>",
5227 "config": {
5228 "name": "none"
5229 }
5230 }
5231 ]
5232 ]
5233 ],
5234 [
5235 "li",
5236 {
5237 "style": "padding-left: 13px;"
5238 },
5239 [
5240 "span",
5241 {
5242 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5243 },
5244 "internalGet: "
5245 ],
5246 [
5247 "span",
5248 {
5249 "style": "margin-left: 13px"
5250 },
5251 [
5252 "object",
5253 {
5254 "object": "<OBJECT>",
5255 "config": {
5256 "name": "none"
5257 }
5258 }
5259 ]
5260 ]
5261 ],
5262 [
5263 "li",
5264 {
5265 "style": "padding-left: 13px;"
5266 },
5267 [
5268 "span",
5269 {
5270 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5271 },
5272 "internalRemove: "
5273 ],
5274 [
5275 "span",
5276 {
5277 "style": "margin-left: 13px"
5278 },
5279 [
5280 "object",
5281 {
5282 "object": "<OBJECT>",
5283 "config": {
5284 "name": "none"
5285 }
5286 }
5287 ]
5288 ]
5289 ],
5290 [
5291 "li",
5292 {
5293 "style": "padding-left: 13px;"
5294 },
5295 [
5296 "span",
5297 {
5298 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5299 },
5300 "internalSet: "
5301 ],
5302 [
5303 "span",
5304 {
5305 "style": "margin-left: 13px"
5306 },
5307 [
5308 "object",
5309 {
5310 "object": "<OBJECT>",
5311 "config": {
5312 "name": "none"
5313 }
5314 }
5315 ]
5316 ]
5317 ],
5318 [
5319 "li",
5320 {
5321 "style": "padding-left: 13px;"
5322 },
5323 [
5324 "span",
5325 {
5326 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5327 },
5328 "putIfAbsent: "
5329 ],
5330 [
5331 "span",
5332 {
5333 "style": "margin-left: 13px"
5334 },
5335 [
5336 "object",
5337 {
5338 "object": "<OBJECT>",
5339 "config": {
5340 "name": "none"
5341 }
5342 }
5343 ]
5344 ]
5345 ],
5346 [
5347 "li",
5348 {
5349 "style": "padding-left: 13px;"
5350 },
5351 [
5352 "span",
5353 {
5354 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5355 },
5356 "remove: "
5357 ],
5358 [
5359 "span",
5360 {
5361 "style": "margin-left: 13px"
5362 },
5363 [
5364 "object",
5365 {
5366 "object": "<OBJECT>",
5367 "config": {
5368 "name": "none"
5369 }
5370 }
5371 ]
5372 ]
5373 ],
5374 [
5375 "li",
5376 {
5377 "style": "padding-left: 13px;"
5378 },
5379 [
5380 "span",
5381 {
5382 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5383 },
5384 "_addHashTableEntry: "
5385 ],
5386 [
5387 "span",
5388 {
5389 "style": "margin-left: 13px"
5390 },
5391 [
5392 "object",
5393 {
5394 "object": "<OBJECT>",
5395 "config": {
5396 "name": "none"
5397 }
5398 }
5399 ]
5400 ]
5401 ],
5402 [
5403 "li",
5404 {
5405 "style": "padding-left: 13px;"
5406 },
5407 [
5408 "span",
5409 {
5410 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5411 },
5412 "_containsTableEntry: "
5413 ],
5414 [
5415 "span",
5416 {
5417 "style": "margin-left: 13px"
5418 },
5419 [
5420 "object",
5421 {
5422 "object": "<OBJECT>",
5423 "config": {
5424 "name": "none"
5425 }
5426 }
5427 ]
5428 ]
5429 ],
5430 [
5431 "li",
5432 {
5433 "style": "padding-left: 13px;"
5434 },
5435 [
5436 "span",
5437 {
5438 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5439 },
5440 "_deleteTableEntry: "
5441 ],
5442 [
5443 "span",
5444 {
5445 "style": "margin-left: 13px"
5446 },
5447 [
5448 "object",
5449 {
5450 "object": "<OBJECT>",
5451 "config": {
5452 "name": "none"
5453 }
5454 }
5455 ]
5456 ]
5457 ],
5458 [
5459 "li",
5460 {
5461 "style": "padding-left: 13px;"
5462 },
5463 [
5464 "span",
5465 {
5466 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5467 },
5468 "_get: "
5469 ],
5470 [
5471 "span",
5472 {
5473 "style": "margin-left: 13px"
5474 },
5475 [
5476 "object",
5477 {
5478 "object": "<OBJECT>",
5479 "config": {
5480 "name": "none"
5481 }
5482 }
5483 ]
5484 ]
5485 ],
5486 [
5487 "li",
5488 {
5489 "style": "padding-left: 13px;"
5490 },
5491 [
5492 "span",
5493 {
5494 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5495 },
5496 "_getBucket: "
5497 ],
5498 [
5499 "span",
5500 {
5501 "style": "margin-left: 13px"
5502 },
5503 [
5504 "object",
5505 {
5506 "object": "<OBJECT>",
5507 "config": {
5508 "name": "none"
5509 }
5510 }
5511 ]
5512 ]
5513 ],
5514 [
5515 "li",
5516 {
5517 "style": "padding-left: 13px;"
5518 },
5519 [
5520 "span",
5521 {
5522 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5523 },
5524 "_getTableBucket: "
5525 ],
5526 [
5527 "span",
5528 {
5529 "style": "margin-left: 13px"
5530 },
5531 [
5532 "object",
5533 {
5534 "object": "<OBJECT>",
5535 "config": {
5536 "name": "none"
5537 }
5538 }
5539 ]
5540 ]
5541 ],
5542 [
5543 "li",
5544 {
5545 "style": "padding-left: 13px;"
5546 },
5547 [
5548 "span",
5549 {
5550 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5551 },
5552 "_getTableCell: "
5553 ],
5554 [
5555 "span",
5556 {
5557 "style": "margin-left: 13px"
5558 },
5559 [
5560 "object",
5561 {
5562 "object": "<OBJECT>",
5563 "config": {
5564 "name": "none"
5565 }
5566 }
5567 ]
5568 ]
5569 ],
5570 [
5571 "li",
5572 {
5573 "style": "padding-left: 13px;"
5574 },
5575 [
5576 "span",
5577 {
5578 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5579 },
5580 "_modified: "
5581 ],
5582 [
5583 "span",
5584 {
5585 "style": "margin-left: 13px"
5586 },
5587 [
5588 "object",
5589 {
5590 "object": "<OBJECT>",
5591 "config": {
5592 "name": "none"
5593 }
5594 }
5595 ]
5596 ]
5597 ],
5598 [
5599 "li",
5600 {
5601 "style": "padding-left: 13px;"
5602 },
5603 [
5604 "span",
5605 {
5606 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5607 },
5608 "_newHashTable: "
5609 ],
5610 [
5611 "span",
5612 {
5613 "style": "margin-left: 13px"
5614 },
5615 [
5616 "object",
5617 {
5618 "object": "<OBJECT>",
5619 "config": {
5620 "name": "none"
5621 }
5622 }
5623 ]
5624 ]
5625 ],
5626 [
5627 "li",
5628 {
5629 "style": "padding-left: 13px;"
5630 },
5631 [
5632 "span",
5633 {
5634 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5635 },
5636 "_newLinkedCell: "
5637 ],
5638 [
5639 "span",
5640 {
5641 "style": "margin-left: 13px"
5642 },
5643 [
5644 "object",
5645 {
5646 "object": "<OBJECT>",
5647 "config": {
5648 "name": "none"
5649 }
5650 }
5651 ]
5652 ]
5653 ],
5654 [
5655 "li",
5656 {
5657 "style": "padding-left: 13px;"
5658 },
5659 [
5660 "span",
5661 {
5662 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5663 },
5664 "_removeHashTableEntry: "
5665 ],
5666 [
5667 "span",
5668 {
5669 "style": "margin-left: 13px"
5670 },
5671 [
5672 "object",
5673 {
5674 "object": "<OBJECT>",
5675 "config": {
5676 "name": "none"
5677 }
5678 }
5679 ]
5680 ]
5681 ],
5682 [
5683 "li",
5684 {
5685 "style": "padding-left: 13px;"
5686 },
5687 [
5688 "span",
5689 {
5690 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5691 },
5692 "_set: "
5693 ],
5694 [
5695 "span",
5696 {
5697 "style": "margin-left: 13px"
5698 },
5699 [
5700 "object",
5701 {
5702 "object": "<OBJECT>",
5703 "config": {
5704 "name": "none"
5705 }
5706 }
5707 ]
5708 ]
5709 ],
5710 [
5711 "li",
5712 {
5713 "style": "padding-left: 13px;"
5714 },
5715 [
5716 "span",
5717 {
5718 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5719 },
5720 "_setTableEntry: "
5721 ],
5722 [
5723 "span",
5724 {
5725 "style": "margin-left: 13px"
5726 },
5727 [
5728 "object",
5729 {
5730 "object": "<OBJECT>",
5731 "config": {
5732 "name": "none"
5733 }
5734 }
5735 ]
5736 ]
5737 ],
5738 [
5739 "li",
5740 {
5741 "style": "padding-left: 13px;"
5742 },
5743 [
5744 "span",
5745 {
5746 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5747 },
5748 "_unlinkCell: "
5749 ],
5750 [
5751 "span",
5752 {
5753 "style": "margin-left: 13px"
5754 },
5755 [
5756 "object",
5757 {
5758 "object": "<OBJECT>",
5759 "config": {
5760 "name": "none"
5761 }
5762 }
5763 ]
5764 ]
5765 ],
5766 [
5767 "li",
5768 {
5769 "style": "padding-left: 13px;"
5770 },
5771 [
5772 "span",
5773 {
5774 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5775 },
5776 "[[base class]]: "
5777 ],
5778 [
5779 "span",
5780 {
5781 "style": "margin-left: 13px"
5782 },
5783 [
5784 "object",
5785 {
5786 "object": "<OBJECT>",
5787 "config": {
5788 "name": "asClass"
5789 }
5790 }
5791 ]
5792 ]
5793 ]
5794 ]
5795 -----------------------------------
5796 Test: Function formatting header
5797 Value:
5798 [
5799 "span",
5800 {
5801 "style": "background-color: #d9edf7;"
5802 },
5803 "(int, int) -> int"
5804 ]
5805 -----------------------------------
5806 Test: Function formatting body
5807 Value:
5808 [
5809 "ol",
5810 {
5811 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
5812 },
5813 [
5814 "li",
5815 {
5816 "style": "padding-left: 13px;"
5817 },
5818 [
5819 "span",
5820 {},
5821 [
5822 "span",
5823 {
5824 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5825 },
5826 "signature: "
5827 ],
5828 [
5829 "span",
5830 {
5831 "style": "margin-left: 13px"
5832 },
5833 "(int, int) -> int"
5834 ]
5835 ]
5836 ],
5837 [
5838 "li",
5839 {
5840 "style": "padding-left: 13px;"
5841 },
5842 [
5843 "span",
5844 {
5845 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5846 },
5847 "JavaScript Function: "
5848 ],
5849 [
5850 "span",
5851 {
5852 "style": "margin-left: 13px"
5853 },
5854 [
5855 "object",
5856 {
5857 "object": "<OBJECT>",
5858 "config": {
5859 "name": "skipDart"
5860 }
5861 }
5862 ]
5863 ]
5864 ]
5865 ]
5866 -----------------------------------
5867 Test: Function with functon arguments formatting header
5868 Value:
5869 [
5870 "span",
5871 {
5872 "style": "background-color: #d9edf7;"
5873 },
5874 "(String, (Event) -> bool) -> dynamic"
5875 ]
5876 -----------------------------------
5877 Test: Function with functon arguments formatting body
5878 Value:
5879 [
5880 "ol",
5881 {
5882 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
5883 },
5884 [
5885 "li",
5886 {
5887 "style": "padding-left: 13px;"
5888 },
5889 [
5890 "span",
5891 {},
5892 [
5893 "span",
5894 {
5895 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5896 },
5897 "signature: "
5898 ],
5899 [
5900 "span",
5901 {
5902 "style": "margin-left: 13px"
5903 },
5904 "(String, (Event) -> bool) -> dynamic"
5905 ]
5906 ]
5907 ],
5908 [
5909 "li",
5910 {
5911 "style": "padding-left: 13px;"
5912 },
5913 [
5914 "span",
5915 {
5916 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5917 },
5918 "JavaScript Function: "
5919 ],
5920 [
5921 "span",
5922 {
5923 "style": "margin-left: 13px"
5924 },
5925 [
5926 "object",
5927 {
5928 "object": "<OBJECT>",
5929 "config": {
5930 "name": "skipDart"
5931 }
5932 }
5933 ]
5934 ]
5935 ]
5936 ]
5937 -----------------------------------
5938 Test: dart:html method
5939 Value:
5940 null
5941 -----------------------------------
5942 Test: Raw reference to dart constructor formatting header
5943 Value:
5944 [
5945 "span",
5946 {
5947 "style": "background-color: #d9edf7;"
5948 },
5949 "class TestClass"
5950 ]
5951 -----------------------------------
5952 Test: Raw reference to dart constructor formatting body
5953 Value:
5954 [
5955 "ol",
5956 {
5957 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
5958 }
5959 ]
5960 -----------------------------------
5961 Test: Object formatting header
5962 Value:
5963 [
5964 "span",
5965 {
5966 "style": "background-color: #d9edf7;"
5967 },
5968 "Object"
5969 ]
5970 -----------------------------------
5971 Test: Object formatting body
5972 Value:
5973 [
5974 "ol",
5975 {
5976 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
5977 },
5978 [
5979 "li",
5980 {
5981 "style": "padding-left: 13px;"
5982 },
5983 [
5984 "span",
5985 {
5986 "style": "color: rgb(136, 19, 145); margin-right: -13px"
5987 },
5988 "runtimeType: "
5989 ],
5990 [
5991 "span",
5992 {
5993 "style": "margin-left: 13px"
5994 },
5995 [
5996 "object",
5997 {
5998 "object": "<OBJECT>",
5999 "config": {
6000 "name": "none"
6001 }
6002 }
6003 ]
6004 ]
6005 ],
6006 [
6007 "li",
6008 {
6009 "style": "padding-left: 13px;"
6010 },
6011 [
6012 "span",
6013 {
6014 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6015 },
6016 "[[class]]: "
6017 ],
6018 [
6019 "span",
6020 {
6021 "style": "margin-left: 13px"
6022 },
6023 [
6024 "object",
6025 {
6026 "object": "<OBJECT>",
6027 "config": {
6028 "name": "asClass"
6029 }
6030 }
6031 ]
6032 ]
6033 ]
6034 ]
6035 -----------------------------------
6036 Test: Type TestClass formatting header
6037 Value:
6038 [
6039 "span",
6040 {
6041 "style": "background-color: #d9edf7;"
6042 },
6043 "TestClass"
6044 ]
6045 -----------------------------------
6046 Test: Type TestClass formatting body
6047 Value:
6048 [
6049 "ol",
6050 {
6051 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
6052 }
6053 ]
6054 -----------------------------------
6055 Test: Type HttpRequest formatting header
6056 Value:
6057 [
6058 "span",
6059 {
6060 "style": "background-color: #d9edf7;"
6061 },
6062 "HttpRequest"
6063 ]
6064 -----------------------------------
6065 Test: Type HttpRequest formatting body
6066 Value:
6067 [
6068 "ol",
6069 {
6070 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
6071 }
6072 ]
6073 -----------------------------------
6074 Test: StackTrace formatting header
6075 Value:
6076 [
6077 "span",
6078 {
6079 "style": "background-color: #d9edf7;"
6080 },
6081 "StackTrace"
6082 ]
6083 -----------------------------------
6084 Test: StackTrace formatting body
6085 Value:
6086 [
6087 "ol",
6088 {
6089 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;color: rgb(196, 26, 22);"
6090 },
6091 [
6092 "li",
6093 {
6094 "style": "padding-left: 13px;"
6095 },
6096 [
6097 "span",
6098 {},
6099 [
6100 "span",
6101 {
6102 "style": ""
6103 },
6104 "Error"
6105 ]
6106 ]
6107 ],
6108 [
6109 "li",
6110 {
6111 "style": "padding-left: 13px;"
6112 },
6113 [
6114 "span",
6115 {},
6116 [
6117 "span",
6118 {
6119 "style": ""
6120 },
6121 "<DART_SDK>"
6122 ]
6123 ]
6124 ],
6125 [
6126 "li",
6127 {
6128 "style": "padding-left: 13px;"
6129 },
6130 [
6131 "span",
6132 {},
6133 [
6134 "span",
6135 {
6136 "style": ""
6137 },
6138 "<FILE>"
6139 ]
6140 ]
6141 ],
6142 [
6143 "li",
6144 {
6145 "style": "padding-left: 13px;"
6146 },
6147 [
6148 "span",
6149 {},
6150 [
6151 "span",
6152 {
6153 "style": ""
6154 },
6155 "<FILE>"
6156 ]
6157 ]
6158 ],
6159 [
6160 "li",
6161 {
6162 "style": "padding-left: 13px;"
6163 },
6164 [
6165 "span",
6166 {},
6167 [
6168 "span",
6169 {
6170 "style": ""
6171 },
6172 "<FILE>"
6173 ]
6174 ]
6175 ],
6176 [
6177 "li",
6178 {
6179 "style": "padding-left: 13px;"
6180 },
6181 [
6182 "span",
6183 {},
6184 [
6185 "span",
6186 {
6187 "style": ""
6188 },
6189 "<FILE>"
6190 ]
6191 ]
6192 ],
6193 [
6194 "li",
6195 {
6196 "style": "padding-left: 13px;"
6197 },
6198 [
6199 "span",
6200 {},
6201 [
6202 "span",
6203 {
6204 "style": ""
6205 },
6206 "<FILE>"
6207 ]
6208 ]
6209 ],
6210 [
6211 "li",
6212 {
6213 "style": "padding-left: 13px;"
6214 },
6215 [
6216 "span",
6217 {},
6218 [
6219 "span",
6220 {
6221 "style": ""
6222 },
6223 "<FILE>"
6224 ]
6225 ]
6226 ],
6227 [
6228 "li",
6229 {
6230 "style": "padding-left: 13px;"
6231 },
6232 [
6233 "span",
6234 {},
6235 [
6236 "span",
6237 {
6238 "style": ""
6239 },
6240 "<FILE>"
6241 ]
6242 ]
6243 ],
6244 [
6245 "li",
6246 {
6247 "style": "padding-left: 13px;"
6248 },
6249 [
6250 "span",
6251 {},
6252 [
6253 "span",
6254 {
6255 "style": ""
6256 },
6257 "<FILE>"
6258 ]
6259 ]
6260 ],
6261 [
6262 "li",
6263 {
6264 "style": "padding-left: 13px;"
6265 },
6266 [
6267 "span",
6268 {},
6269 [
6270 "span",
6271 {
6272 "style": ""
6273 },
6274 "<FILE>"
6275 ]
6276 ]
6277 ]
6278 ]
6279 -----------------------------------
6280 Test: TestClass instance header
6281 Value:
6282 [
6283 "span",
6284 {
6285 "style": "background-color: #d9edf7;"
6286 },
6287 "TestClass"
6288 ]
6289 -----------------------------------
6290 Test: TestClass instance body
6291 Value:
6292 [
6293 "ol",
6294 {
6295 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
6296 },
6297 [
6298 "li",
6299 {
6300 "style": "padding-left: 13px;"
6301 },
6302 [
6303 "span",
6304 {},
6305 [
6306 "span",
6307 {
6308 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6309 },
6310 "date: "
6311 ],
6312 [
6313 "span",
6314 {
6315 "style": "margin-left: 13px"
6316 },
6317 "17"
6318 ]
6319 ]
6320 ],
6321 [
6322 "li",
6323 {
6324 "style": "padding-left: 13px;"
6325 },
6326 [
6327 "span",
6328 {},
6329 [
6330 "span",
6331 {
6332 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6333 },
6334 "name: "
6335 ],
6336 [
6337 "span",
6338 {
6339 "style": "margin-left: 13px"
6340 },
6341 "test class"
6342 ]
6343 ]
6344 ],
6345 [
6346 "li",
6347 {
6348 "style": "padding-left: 13px;"
6349 },
6350 [
6351 "span",
6352 {},
6353 [
6354 "span",
6355 {
6356 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6357 },
6358 "someInt: "
6359 ],
6360 [
6361 "span",
6362 {
6363 "style": "margin-left: 13px"
6364 },
6365 "42"
6366 ]
6367 ]
6368 ],
6369 [
6370 "li",
6371 {
6372 "style": "padding-left: 13px;"
6373 },
6374 [
6375 "span",
6376 {
6377 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6378 },
6379 "someObject: "
6380 ],
6381 [
6382 "span",
6383 {
6384 "style": "margin-left: 13px"
6385 },
6386 [
6387 "object",
6388 {
6389 "object": "<OBJECT>",
6390 "config": {
6391 "name": "none"
6392 }
6393 }
6394 ]
6395 ]
6396 ],
6397 [
6398 "li",
6399 {
6400 "style": "padding-left: 13px;"
6401 },
6402 [
6403 "span",
6404 {},
6405 [
6406 "span",
6407 {
6408 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6409 },
6410 "someString: "
6411 ],
6412 [
6413 "span",
6414 {
6415 "style": "margin-left: 13px"
6416 },
6417 "Hello world"
6418 ]
6419 ]
6420 ],
6421 [
6422 "li",
6423 {
6424 "style": "padding-left: 13px;"
6425 },
6426 [
6427 "span",
6428 {
6429 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6430 },
6431 "[[class]]: "
6432 ],
6433 [
6434 "span",
6435 {
6436 "style": "margin-left: 13px"
6437 },
6438 [
6439 "object",
6440 {
6441 "object": "<OBJECT>",
6442 "config": {
6443 "name": "asClass"
6444 }
6445 }
6446 ]
6447 ]
6448 ]
6449 ]
6450 -----------------------------------
6451 Test: TestClass definition formatting header
6452 Value:
6453 [
6454 "span",
6455 {
6456 "style": "background-color: #d9edf7;"
6457 },
6458 "TestClass"
6459 ]
6460 -----------------------------------
6461 Test: TestClass definition formatting body
6462 Value:
6463 [
6464 "ol",
6465 {
6466 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
6467 },
6468 [
6469 "li",
6470 {
6471 "style": "padding-left: 13px;"
6472 },
6473 [
6474 "span",
6475 {},
6476 [
6477 "span",
6478 {
6479 "style": ""
6480 },
6481 "[[Static members]]"
6482 ]
6483 ]
6484 ],
6485 [
6486 "li",
6487 {
6488 "style": "padding-left: 13px;"
6489 },
6490 [
6491 "span",
6492 {
6493 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6494 },
6495 "bar: "
6496 ],
6497 [
6498 "span",
6499 {
6500 "style": "margin-left: 13px"
6501 },
6502 [
6503 "object",
6504 {
6505 "object": "<OBJECT>",
6506 "config": {
6507 "name": "none"
6508 }
6509 }
6510 ]
6511 ]
6512 ],
6513 [
6514 "li",
6515 {
6516 "style": "padding-left: 13px;"
6517 },
6518 [
6519 "span",
6520 {
6521 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6522 },
6523 "foo: "
6524 ],
6525 [
6526 "span",
6527 {
6528 "style": "margin-left: 13px"
6529 },
6530 [
6531 "object",
6532 {
6533 "object": "<OBJECT>",
6534 "config": {
6535 "name": "none"
6536 }
6537 }
6538 ]
6539 ]
6540 ],
6541 [
6542 "li",
6543 {
6544 "style": "padding-left: 13px;"
6545 },
6546 [
6547 "span",
6548 {},
6549 [
6550 "span",
6551 {
6552 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6553 },
6554 "greeting: "
6555 ],
6556 [
6557 "span",
6558 {
6559 "style": "margin-left: 13px"
6560 },
6561 "Hello world"
6562 ]
6563 ]
6564 ],
6565 [
6566 "li",
6567 {
6568 "style": "padding-left: 13px;"
6569 },
6570 [
6571 "span",
6572 {
6573 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6574 },
6575 "exampleStaticMethod: "
6576 ],
6577 [
6578 "span",
6579 {
6580 "style": "margin-left: 13px"
6581 },
6582 [
6583 "object",
6584 {
6585 "object": "<OBJECT>",
6586 "config": {
6587 "name": "none"
6588 }
6589 }
6590 ]
6591 ]
6592 ],
6593 [
6594 "li",
6595 {
6596 "style": "padding-left: 13px;"
6597 },
6598 [
6599 "span",
6600 {},
6601 [
6602 "span",
6603 {
6604 "style": ""
6605 },
6606 "[[Instance Methods]]"
6607 ]
6608 ]
6609 ],
6610 [
6611 "li",
6612 {
6613 "style": "padding-left: 13px;"
6614 },
6615 [
6616 "span",
6617 {
6618 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6619 },
6620 "addOne: "
6621 ],
6622 [
6623 "span",
6624 {
6625 "style": "margin-left: 13px"
6626 },
6627 [
6628 "object",
6629 {
6630 "object": "<OBJECT>",
6631 "config": {
6632 "name": "none"
6633 }
6634 }
6635 ]
6636 ]
6637 ],
6638 [
6639 "li",
6640 {
6641 "style": "padding-left: 13px;"
6642 },
6643 [
6644 "span",
6645 {
6646 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6647 },
6648 "last: "
6649 ],
6650 [
6651 "span",
6652 {
6653 "style": "margin-left: 13px"
6654 },
6655 [
6656 "object",
6657 {
6658 "object": "<OBJECT>",
6659 "config": {
6660 "name": "none"
6661 }
6662 }
6663 ]
6664 ]
6665 ],
6666 [
6667 "li",
6668 {
6669 "style": "padding-left: 13px;"
6670 },
6671 [
6672 "span",
6673 {
6674 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6675 },
6676 "nameAndDate: "
6677 ],
6678 [
6679 "span",
6680 {
6681 "style": "margin-left: 13px"
6682 },
6683 [
6684 "object",
6685 {
6686 "object": "<OBJECT>",
6687 "config": {
6688 "name": "none"
6689 }
6690 }
6691 ]
6692 ]
6693 ],
6694 [
6695 "li",
6696 {
6697 "style": "padding-left: 13px;"
6698 },
6699 [
6700 "span",
6701 {
6702 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6703 },
6704 "returnObject: "
6705 ],
6706 [
6707 "span",
6708 {
6709 "style": "margin-left: 13px"
6710 },
6711 [
6712 "object",
6713 {
6714 "object": "<OBJECT>",
6715 "config": {
6716 "name": "none"
6717 }
6718 }
6719 ]
6720 ]
6721 ],
6722 [
6723 "li",
6724 {
6725 "style": "padding-left: 13px;"
6726 },
6727 [
6728 "span",
6729 {
6730 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6731 },
6732 "[[base class]]: "
6733 ],
6734 [
6735 "span",
6736 {
6737 "style": "margin-left: 13px"
6738 },
6739 [
6740 "object",
6741 {
6742 "object": "<OBJECT>",
6743 "config": {
6744 "name": "asClass"
6745 }
6746 }
6747 ]
6748 ]
6749 ]
6750 ]
6751 -----------------------------------
6752 Test: MouseEvent instance header
6753 Value:
6754 [
6755 "span",
6756 {
6757 "style": "background-color: #d9edf7;"
6758 },
6759 "MouseEvent"
6760 ]
6761 -----------------------------------
6762 Test: MouseEvent instance body
6763 Value:
6764 [
6765 "ol",
6766 {
6767 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
6768 },
6769 [
6770 "li",
6771 {
6772 "style": "padding-left: 13px;"
6773 },
6774 [
6775 "span",
6776 {},
6777 [
6778 "span",
6779 {
6780 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6781 },
6782 "altKey: "
6783 ],
6784 [
6785 "span",
6786 {
6787 "style": "margin-left: 13px"
6788 },
6789 "false"
6790 ]
6791 ]
6792 ],
6793 [
6794 "li",
6795 {
6796 "style": "padding-left: 13px;"
6797 },
6798 [
6799 "span",
6800 {},
6801 [
6802 "span",
6803 {
6804 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6805 },
6806 "button: "
6807 ],
6808 [
6809 "span",
6810 {
6811 "style": "margin-left: 13px"
6812 },
6813 "0"
6814 ]
6815 ]
6816 ],
6817 [
6818 "li",
6819 {
6820 "style": "padding-left: 13px;"
6821 },
6822 [
6823 "span",
6824 {},
6825 [
6826 "span",
6827 {
6828 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6829 },
6830 "buttons: "
6831 ],
6832 [
6833 "span",
6834 {
6835 "style": "margin-left: 13px"
6836 },
6837 "0"
6838 ]
6839 ]
6840 ],
6841 [
6842 "li",
6843 {
6844 "style": "padding-left: 13px;"
6845 },
6846 [
6847 "span",
6848 {
6849 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6850 },
6851 "client: "
6852 ],
6853 [
6854 "span",
6855 {
6856 "style": "margin-left: 13px"
6857 },
6858 [
6859 "object",
6860 {
6861 "object": "<OBJECT>",
6862 "config": {
6863 "name": "none"
6864 }
6865 }
6866 ]
6867 ]
6868 ],
6869 [
6870 "li",
6871 {
6872 "style": "padding-left: 13px;"
6873 },
6874 [
6875 "span",
6876 {},
6877 [
6878 "span",
6879 {
6880 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6881 },
6882 "ctrlKey: "
6883 ],
6884 [
6885 "span",
6886 {
6887 "style": "margin-left: 13px"
6888 },
6889 "false"
6890 ]
6891 ]
6892 ],
6893 [
6894 "li",
6895 {
6896 "style": "padding-left: 13px;"
6897 },
6898 [
6899 "span",
6900 {},
6901 [
6902 "span",
6903 {
6904 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6905 },
6906 "dataTransfer: "
6907 ],
6908 [
6909 "span",
6910 {
6911 "style": "margin-left: 13px"
6912 },
6913 "null"
6914 ]
6915 ]
6916 ],
6917 [
6918 "li",
6919 {
6920 "style": "padding-left: 13px;"
6921 },
6922 [
6923 "span",
6924 {
6925 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6926 },
6927 "fromElement: "
6928 ],
6929 [
6930 "span",
6931 {
6932 "style": "margin-left: 13px"
6933 },
6934 [
6935 "object",
6936 {
6937 "object": "<OBJECT>",
6938 "config": {
6939 "name": "none"
6940 }
6941 }
6942 ]
6943 ]
6944 ],
6945 [
6946 "li",
6947 {
6948 "style": "padding-left: 13px;"
6949 },
6950 [
6951 "span",
6952 {
6953 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6954 },
6955 "layer: "
6956 ],
6957 [
6958 "span",
6959 {
6960 "style": "margin-left: 13px"
6961 },
6962 [
6963 "object",
6964 {
6965 "object": "<OBJECT>",
6966 "config": {
6967 "name": "none"
6968 }
6969 }
6970 ]
6971 ]
6972 ],
6973 [
6974 "li",
6975 {
6976 "style": "padding-left: 13px;"
6977 },
6978 [
6979 "span",
6980 {},
6981 [
6982 "span",
6983 {
6984 "style": "color: rgb(136, 19, 145); margin-right: -13px"
6985 },
6986 "metaKey: "
6987 ],
6988 [
6989 "span",
6990 {
6991 "style": "margin-left: 13px"
6992 },
6993 "false"
6994 ]
6995 ]
6996 ],
6997 [
6998 "li",
6999 {
7000 "style": "padding-left: 13px;"
7001 },
7002 [
7003 "span",
7004 {
7005 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7006 },
7007 "movement: "
7008 ],
7009 [
7010 "span",
7011 {
7012 "style": "margin-left: 13px"
7013 },
7014 [
7015 "object",
7016 {
7017 "object": "<OBJECT>",
7018 "config": {
7019 "name": "none"
7020 }
7021 }
7022 ]
7023 ]
7024 ],
7025 [
7026 "li",
7027 {
7028 "style": "padding-left: 13px;"
7029 },
7030 [
7031 "span",
7032 {},
7033 [
7034 "span",
7035 {
7036 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7037 },
7038 "offset: "
7039 ],
7040 [
7041 "span",
7042 {
7043 "style": "margin-left: 13px"
7044 },
7045 "<Exception thrown> Unsupported operation: offsetX is only suppo rted on elements"
7046 ]
7047 ]
7048 ],
7049 [
7050 "li",
7051 {
7052 "style": "padding-left: 13px;"
7053 },
7054 [
7055 "span",
7056 {
7057 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7058 },
7059 "page: "
7060 ],
7061 [
7062 "span",
7063 {
7064 "style": "margin-left: 13px"
7065 },
7066 [
7067 "object",
7068 {
7069 "object": "<OBJECT>",
7070 "config": {
7071 "name": "none"
7072 }
7073 }
7074 ]
7075 ]
7076 ],
7077 [
7078 "li",
7079 {
7080 "style": "padding-left: 13px;"
7081 },
7082 [
7083 "span",
7084 {},
7085 [
7086 "span",
7087 {
7088 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7089 },
7090 "region: "
7091 ],
7092 [
7093 "span",
7094 {
7095 "style": "margin-left: 13px"
7096 },
7097 "null"
7098 ]
7099 ]
7100 ],
7101 [
7102 "li",
7103 {
7104 "style": "padding-left: 13px;"
7105 },
7106 [
7107 "span",
7108 {
7109 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7110 },
7111 "relatedTarget: "
7112 ],
7113 [
7114 "span",
7115 {
7116 "style": "margin-left: 13px"
7117 },
7118 [
7119 "object",
7120 {
7121 "object": "<OBJECT>",
7122 "config": {
7123 "name": "none"
7124 }
7125 }
7126 ]
7127 ]
7128 ],
7129 [
7130 "li",
7131 {
7132 "style": "padding-left: 13px;"
7133 },
7134 [
7135 "span",
7136 {
7137 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7138 },
7139 "screen: "
7140 ],
7141 [
7142 "span",
7143 {
7144 "style": "margin-left: 13px"
7145 },
7146 [
7147 "object",
7148 {
7149 "object": "<OBJECT>",
7150 "config": {
7151 "name": "none"
7152 }
7153 }
7154 ]
7155 ]
7156 ],
7157 [
7158 "li",
7159 {
7160 "style": "padding-left: 13px;"
7161 },
7162 [
7163 "span",
7164 {},
7165 [
7166 "span",
7167 {
7168 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7169 },
7170 "shiftKey: "
7171 ],
7172 [
7173 "span",
7174 {
7175 "style": "margin-left: 13px"
7176 },
7177 "false"
7178 ]
7179 ]
7180 ],
7181 [
7182 "li",
7183 {
7184 "style": "padding-left: 13px;"
7185 },
7186 [
7187 "span",
7188 {
7189 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7190 },
7191 "toElement: "
7192 ],
7193 [
7194 "span",
7195 {
7196 "style": "margin-left: 13px"
7197 },
7198 [
7199 "object",
7200 {
7201 "object": "<OBJECT>",
7202 "config": {
7203 "name": "none"
7204 }
7205 }
7206 ]
7207 ]
7208 ],
7209 [
7210 "li",
7211 {
7212 "style": "padding-left: 13px;"
7213 },
7214 [
7215 "span",
7216 {},
7217 [
7218 "span",
7219 {
7220 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7221 },
7222 "_clientX: "
7223 ],
7224 [
7225 "span",
7226 {
7227 "style": "margin-left: 13px"
7228 },
7229 "0"
7230 ]
7231 ]
7232 ],
7233 [
7234 "li",
7235 {
7236 "style": "padding-left: 13px;"
7237 },
7238 [
7239 "span",
7240 {},
7241 [
7242 "span",
7243 {
7244 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7245 },
7246 "_clientY: "
7247 ],
7248 [
7249 "span",
7250 {
7251 "style": "margin-left: 13px"
7252 },
7253 "0"
7254 ]
7255 ]
7256 ],
7257 [
7258 "li",
7259 {
7260 "style": "padding-left: 13px;"
7261 },
7262 [
7263 "span",
7264 {
7265 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7266 },
7267 "_get_relatedTarget: "
7268 ],
7269 [
7270 "span",
7271 {
7272 "style": "margin-left: 13px"
7273 },
7274 [
7275 "object",
7276 {
7277 "object": "<OBJECT>",
7278 "config": {
7279 "name": "none"
7280 }
7281 }
7282 ]
7283 ]
7284 ],
7285 [
7286 "li",
7287 {
7288 "style": "padding-left: 13px;"
7289 },
7290 [
7291 "span",
7292 {},
7293 [
7294 "span",
7295 {
7296 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7297 },
7298 "_layerX: "
7299 ],
7300 [
7301 "span",
7302 {
7303 "style": "margin-left: 13px"
7304 },
7305 "0"
7306 ]
7307 ]
7308 ],
7309 [
7310 "li",
7311 {
7312 "style": "padding-left: 13px;"
7313 },
7314 [
7315 "span",
7316 {},
7317 [
7318 "span",
7319 {
7320 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7321 },
7322 "_layerY: "
7323 ],
7324 [
7325 "span",
7326 {
7327 "style": "margin-left: 13px"
7328 },
7329 "0"
7330 ]
7331 ]
7332 ],
7333 [
7334 "li",
7335 {
7336 "style": "padding-left: 13px;"
7337 },
7338 [
7339 "span",
7340 {},
7341 [
7342 "span",
7343 {
7344 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7345 },
7346 "_movementX: "
7347 ],
7348 [
7349 "span",
7350 {
7351 "style": "margin-left: 13px"
7352 },
7353 "0"
7354 ]
7355 ]
7356 ],
7357 [
7358 "li",
7359 {
7360 "style": "padding-left: 13px;"
7361 },
7362 [
7363 "span",
7364 {},
7365 [
7366 "span",
7367 {
7368 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7369 },
7370 "_movementY: "
7371 ],
7372 [
7373 "span",
7374 {
7375 "style": "margin-left: 13px"
7376 },
7377 "0"
7378 ]
7379 ]
7380 ],
7381 [
7382 "li",
7383 {
7384 "style": "padding-left: 13px;"
7385 },
7386 [
7387 "span",
7388 {},
7389 [
7390 "span",
7391 {
7392 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7393 },
7394 "_pageX: "
7395 ],
7396 [
7397 "span",
7398 {
7399 "style": "margin-left: 13px"
7400 },
7401 "0"
7402 ]
7403 ]
7404 ],
7405 [
7406 "li",
7407 {
7408 "style": "padding-left: 13px;"
7409 },
7410 [
7411 "span",
7412 {},
7413 [
7414 "span",
7415 {
7416 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7417 },
7418 "_pageY: "
7419 ],
7420 [
7421 "span",
7422 {
7423 "style": "margin-left: 13px"
7424 },
7425 "0"
7426 ]
7427 ]
7428 ],
7429 [
7430 "li",
7431 {
7432 "style": "padding-left: 13px;"
7433 },
7434 [
7435 "span",
7436 {},
7437 [
7438 "span",
7439 {
7440 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7441 },
7442 "_screenX: "
7443 ],
7444 [
7445 "span",
7446 {
7447 "style": "margin-left: 13px"
7448 },
7449 "0"
7450 ]
7451 ]
7452 ],
7453 [
7454 "li",
7455 {
7456 "style": "padding-left: 13px;"
7457 },
7458 [
7459 "span",
7460 {},
7461 [
7462 "span",
7463 {
7464 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7465 },
7466 "_screenY: "
7467 ],
7468 [
7469 "span",
7470 {
7471 "style": "margin-left: 13px"
7472 },
7473 "0"
7474 ]
7475 ]
7476 ],
7477 [
7478 "li",
7479 {
7480 "style": "padding-left: 13px;"
7481 },
7482 [
7483 "span",
7484 {},
7485 [
7486 "span",
7487 {
7488 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7489 },
7490 "_webkitMovementX: "
7491 ],
7492 [
7493 "span",
7494 {
7495 "style": "margin-left: 13px"
7496 },
7497 "null"
7498 ]
7499 ]
7500 ],
7501 [
7502 "li",
7503 {
7504 "style": "padding-left: 13px;"
7505 },
7506 [
7507 "span",
7508 {},
7509 [
7510 "span",
7511 {
7512 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7513 },
7514 "_webkitMovementY: "
7515 ],
7516 [
7517 "span",
7518 {
7519 "style": "margin-left: 13px"
7520 },
7521 "null"
7522 ]
7523 ]
7524 ],
7525 [
7526 "li",
7527 {
7528 "style": "padding-left: 13px;"
7529 },
7530 [
7531 "span",
7532 {
7533 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7534 },
7535 "[[class]]: "
7536 ],
7537 [
7538 "span",
7539 {
7540 "style": "margin-left: 13px"
7541 },
7542 [
7543 "object",
7544 {
7545 "object": "<OBJECT>",
7546 "config": {
7547 "name": "asClass"
7548 }
7549 }
7550 ]
7551 ]
7552 ]
7553 ]
7554 -----------------------------------
7555 Test: MouseEvent definition formatting header
7556 Value:
7557 [
7558 "span",
7559 {
7560 "style": "background-color: #d9edf7;"
7561 },
7562 "MouseEvent"
7563 ]
7564 -----------------------------------
7565 Test: MouseEvent definition formatting body
7566 Value:
7567 [
7568 "ol",
7569 {
7570 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
7571 },
7572 [
7573 "li",
7574 {
7575 "style": "padding-left: 13px;"
7576 },
7577 [
7578 "span",
7579 {},
7580 [
7581 "span",
7582 {
7583 "style": ""
7584 },
7585 "[[Static members]]"
7586 ]
7587 ]
7588 ],
7589 [
7590 "li",
7591 {
7592 "style": "padding-left: 13px;"
7593 },
7594 [
7595 "span",
7596 {
7597 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7598 },
7599 "_create_1: "
7600 ],
7601 [
7602 "span",
7603 {
7604 "style": "margin-left: 13px"
7605 },
7606 [
7607 "object",
7608 {
7609 "object": "<OBJECT>",
7610 "config": {
7611 "name": "none"
7612 }
7613 }
7614 ]
7615 ]
7616 ],
7617 [
7618 "li",
7619 {
7620 "style": "padding-left: 13px;"
7621 },
7622 [
7623 "span",
7624 {
7625 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7626 },
7627 "_create_2: "
7628 ],
7629 [
7630 "span",
7631 {
7632 "style": "margin-left: 13px"
7633 },
7634 [
7635 "object",
7636 {
7637 "object": "<OBJECT>",
7638 "config": {
7639 "name": "none"
7640 }
7641 }
7642 ]
7643 ]
7644 ],
7645 [
7646 "li",
7647 {
7648 "style": "padding-left: 13px;"
7649 },
7650 [
7651 "span",
7652 {},
7653 [
7654 "span",
7655 {
7656 "style": ""
7657 },
7658 "[[Instance Methods]]"
7659 ]
7660 ]
7661 ],
7662 [
7663 "li",
7664 {
7665 "style": "padding-left: 13px;"
7666 },
7667 [
7668 "span",
7669 {
7670 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7671 },
7672 "_initMouseEvent: "
7673 ],
7674 [
7675 "span",
7676 {
7677 "style": "margin-left: 13px"
7678 },
7679 [
7680 "object",
7681 {
7682 "object": "<OBJECT>",
7683 "config": {
7684 "name": "none"
7685 }
7686 }
7687 ]
7688 ]
7689 ],
7690 [
7691 "li",
7692 {
7693 "style": "padding-left: 13px;"
7694 },
7695 [
7696 "span",
7697 {
7698 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7699 },
7700 "_initMouseEvent_1: "
7701 ],
7702 [
7703 "span",
7704 {
7705 "style": "margin-left: 13px"
7706 },
7707 [
7708 "object",
7709 {
7710 "object": "<OBJECT>",
7711 "config": {
7712 "name": "none"
7713 }
7714 }
7715 ]
7716 ]
7717 ],
7718 [
7719 "li",
7720 {
7721 "style": "padding-left: 13px;"
7722 },
7723 [
7724 "span",
7725 {
7726 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7727 },
7728 "[[base class]]: "
7729 ],
7730 [
7731 "span",
7732 {
7733 "style": "margin-left: 13px"
7734 },
7735 [
7736 "object",
7737 {
7738 "object": "<OBJECT>",
7739 "config": {
7740 "name": "asClass"
7741 }
7742 }
7743 ]
7744 ]
7745 ]
7746 ]
7747 -----------------------------------
7748 Test: HttpRequest instance header
7749 Value:
7750 [
7751 "span",
7752 {
7753 "style": "background-color: #d9edf7;"
7754 },
7755 "HttpRequest"
7756 ]
7757 -----------------------------------
7758 Test: HttpRequest instance body
7759 Value:
7760 [
7761 "ol",
7762 {
7763 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
7764 },
7765 [
7766 "li",
7767 {
7768 "style": "padding-left: 13px;"
7769 },
7770 [
7771 "span",
7772 {
7773 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7774 },
7775 "onReadyStateChange: "
7776 ],
7777 [
7778 "span",
7779 {
7780 "style": "margin-left: 13px"
7781 },
7782 [
7783 "object",
7784 {
7785 "object": "<OBJECT>",
7786 "config": {
7787 "name": "none"
7788 }
7789 }
7790 ]
7791 ]
7792 ],
7793 [
7794 "li",
7795 {
7796 "style": "padding-left: 13px;"
7797 },
7798 [
7799 "span",
7800 {},
7801 [
7802 "span",
7803 {
7804 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7805 },
7806 "readyState: "
7807 ],
7808 [
7809 "span",
7810 {
7811 "style": "margin-left: 13px"
7812 },
7813 "0"
7814 ]
7815 ]
7816 ],
7817 [
7818 "li",
7819 {
7820 "style": "padding-left: 13px;"
7821 },
7822 [
7823 "span",
7824 {},
7825 [
7826 "span",
7827 {
7828 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7829 },
7830 "response: "
7831 ],
7832 [
7833 "span",
7834 {
7835 "style": "margin-left: 13px"
7836 },
7837 ""
7838 ]
7839 ]
7840 ],
7841 [
7842 "li",
7843 {
7844 "style": "padding-left: 13px;"
7845 },
7846 [
7847 "span",
7848 {
7849 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7850 },
7851 "responseHeaders: "
7852 ],
7853 [
7854 "span",
7855 {
7856 "style": "margin-left: 13px"
7857 },
7858 [
7859 "object",
7860 {
7861 "object": "<OBJECT>",
7862 "config": {
7863 "name": "none"
7864 }
7865 }
7866 ]
7867 ]
7868 ],
7869 [
7870 "li",
7871 {
7872 "style": "padding-left: 13px;"
7873 },
7874 [
7875 "span",
7876 {},
7877 [
7878 "span",
7879 {
7880 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7881 },
7882 "responseText: "
7883 ],
7884 [
7885 "span",
7886 {
7887 "style": "margin-left: 13px"
7888 },
7889 ""
7890 ]
7891 ]
7892 ],
7893 [
7894 "li",
7895 {
7896 "style": "padding-left: 13px;"
7897 },
7898 [
7899 "span",
7900 {},
7901 [
7902 "span",
7903 {
7904 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7905 },
7906 "responseType: "
7907 ],
7908 [
7909 "span",
7910 {
7911 "style": "margin-left: 13px"
7912 },
7913 ""
7914 ]
7915 ]
7916 ],
7917 [
7918 "li",
7919 {
7920 "style": "padding-left: 13px;"
7921 },
7922 [
7923 "span",
7924 {},
7925 [
7926 "span",
7927 {
7928 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7929 },
7930 "responseUrl: "
7931 ],
7932 [
7933 "span",
7934 {
7935 "style": "margin-left: 13px"
7936 },
7937 ""
7938 ]
7939 ]
7940 ],
7941 [
7942 "li",
7943 {
7944 "style": "padding-left: 13px;"
7945 },
7946 [
7947 "span",
7948 {
7949 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7950 },
7951 "responseXml: "
7952 ],
7953 [
7954 "span",
7955 {
7956 "style": "margin-left: 13px"
7957 },
7958 [
7959 "object",
7960 {
7961 "object": "<OBJECT>",
7962 "config": {
7963 "name": "none"
7964 }
7965 }
7966 ]
7967 ]
7968 ],
7969 [
7970 "li",
7971 {
7972 "style": "padding-left: 13px;"
7973 },
7974 [
7975 "span",
7976 {},
7977 [
7978 "span",
7979 {
7980 "style": "color: rgb(136, 19, 145); margin-right: -13px"
7981 },
7982 "status: "
7983 ],
7984 [
7985 "span",
7986 {
7987 "style": "margin-left: 13px"
7988 },
7989 "0"
7990 ]
7991 ]
7992 ],
7993 [
7994 "li",
7995 {
7996 "style": "padding-left: 13px;"
7997 },
7998 [
7999 "span",
8000 {},
8001 [
8002 "span",
8003 {
8004 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8005 },
8006 "statusText: "
8007 ],
8008 [
8009 "span",
8010 {
8011 "style": "margin-left: 13px"
8012 },
8013 ""
8014 ]
8015 ]
8016 ],
8017 [
8018 "li",
8019 {
8020 "style": "padding-left: 13px;"
8021 },
8022 [
8023 "span",
8024 {},
8025 [
8026 "span",
8027 {
8028 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8029 },
8030 "timeout: "
8031 ],
8032 [
8033 "span",
8034 {
8035 "style": "margin-left: 13px"
8036 },
8037 "0"
8038 ]
8039 ]
8040 ],
8041 [
8042 "li",
8043 {
8044 "style": "padding-left: 13px;"
8045 },
8046 [
8047 "span",
8048 {
8049 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8050 },
8051 "upload: "
8052 ],
8053 [
8054 "span",
8055 {
8056 "style": "margin-left: 13px"
8057 },
8058 [
8059 "object",
8060 {
8061 "object": "<OBJECT>",
8062 "config": {
8063 "name": "none"
8064 }
8065 }
8066 ]
8067 ]
8068 ],
8069 [
8070 "li",
8071 {
8072 "style": "padding-left: 13px;"
8073 },
8074 [
8075 "span",
8076 {},
8077 [
8078 "span",
8079 {
8080 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8081 },
8082 "withCredentials: "
8083 ],
8084 [
8085 "span",
8086 {
8087 "style": "margin-left: 13px"
8088 },
8089 "false"
8090 ]
8091 ]
8092 ],
8093 [
8094 "li",
8095 {
8096 "style": "padding-left: 13px;"
8097 },
8098 [
8099 "span",
8100 {},
8101 [
8102 "span",
8103 {
8104 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8105 },
8106 "_get_response: "
8107 ],
8108 [
8109 "span",
8110 {
8111 "style": "margin-left: 13px"
8112 },
8113 ""
8114 ]
8115 ]
8116 ],
8117 [
8118 "li",
8119 {
8120 "style": "padding-left: 13px;"
8121 },
8122 [
8123 "span",
8124 {
8125 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8126 },
8127 "[[class]]: "
8128 ],
8129 [
8130 "span",
8131 {
8132 "style": "margin-left: 13px"
8133 },
8134 [
8135 "object",
8136 {
8137 "object": "<OBJECT>",
8138 "config": {
8139 "name": "asClass"
8140 }
8141 }
8142 ]
8143 ]
8144 ]
8145 ]
8146 -----------------------------------
8147 Test: HttpRequest definition formatting header
8148 Value:
8149 [
8150 "span",
8151 {
8152 "style": "background-color: #d9edf7;"
8153 },
8154 "HttpRequest"
8155 ]
8156 -----------------------------------
8157 Test: HttpRequest definition formatting body
8158 Value:
8159 [
8160 "ol",
8161 {
8162 "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin -bottom: 0px;margin-left: 12px;"
8163 },
8164 [
8165 "li",
8166 {
8167 "style": "padding-left: 13px;"
8168 },
8169 [
8170 "span",
8171 {},
8172 [
8173 "span",
8174 {
8175 "style": ""
8176 },
8177 "[[Static members]]"
8178 ]
8179 ]
8180 ],
8181 [
8182 "li",
8183 {
8184 "style": "padding-left: 13px;"
8185 },
8186 [
8187 "span",
8188 {},
8189 [
8190 "span",
8191 {
8192 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8193 },
8194 "DONE: "
8195 ],
8196 [
8197 "span",
8198 {
8199 "style": "margin-left: 13px"
8200 },
8201 "4"
8202 ]
8203 ]
8204 ],
8205 [
8206 "li",
8207 {
8208 "style": "padding-left: 13px;"
8209 },
8210 [
8211 "span",
8212 {},
8213 [
8214 "span",
8215 {
8216 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8217 },
8218 "HEADERS_RECEIVED: "
8219 ],
8220 [
8221 "span",
8222 {
8223 "style": "margin-left: 13px"
8224 },
8225 "2"
8226 ]
8227 ]
8228 ],
8229 [
8230 "li",
8231 {
8232 "style": "padding-left: 13px;"
8233 },
8234 [
8235 "span",
8236 {},
8237 [
8238 "span",
8239 {
8240 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8241 },
8242 "LOADING: "
8243 ],
8244 [
8245 "span",
8246 {
8247 "style": "margin-left: 13px"
8248 },
8249 "3"
8250 ]
8251 ]
8252 ],
8253 [
8254 "li",
8255 {
8256 "style": "padding-left: 13px;"
8257 },
8258 [
8259 "span",
8260 {},
8261 [
8262 "span",
8263 {
8264 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8265 },
8266 "OPENED: "
8267 ],
8268 [
8269 "span",
8270 {
8271 "style": "margin-left: 13px"
8272 },
8273 "1"
8274 ]
8275 ]
8276 ],
8277 [
8278 "li",
8279 {
8280 "style": "padding-left: 13px;"
8281 },
8282 [
8283 "span",
8284 {},
8285 [
8286 "span",
8287 {
8288 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8289 },
8290 "UNSENT: "
8291 ],
8292 [
8293 "span",
8294 {
8295 "style": "margin-left: 13px"
8296 },
8297 "0"
8298 ]
8299 ]
8300 ],
8301 [
8302 "li",
8303 {
8304 "style": "padding-left: 13px;"
8305 },
8306 [
8307 "span",
8308 {
8309 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8310 },
8311 "readyStateChangeEvent: "
8312 ],
8313 [
8314 "span",
8315 {
8316 "style": "margin-left: 13px"
8317 },
8318 [
8319 "object",
8320 {
8321 "object": "<OBJECT>",
8322 "config": {
8323 "name": "none"
8324 }
8325 }
8326 ]
8327 ]
8328 ],
8329 [
8330 "li",
8331 {
8332 "style": "padding-left: 13px;"
8333 },
8334 [
8335 "span",
8336 {},
8337 [
8338 "span",
8339 {
8340 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8341 },
8342 "supportsCrossOrigin: "
8343 ],
8344 [
8345 "span",
8346 {
8347 "style": "margin-left: 13px"
8348 },
8349 "true"
8350 ]
8351 ]
8352 ],
8353 [
8354 "li",
8355 {
8356 "style": "padding-left: 13px;"
8357 },
8358 [
8359 "span",
8360 {},
8361 [
8362 "span",
8363 {
8364 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8365 },
8366 "supportsLoadEndEvent: "
8367 ],
8368 [
8369 "span",
8370 {
8371 "style": "margin-left: 13px"
8372 },
8373 "true"
8374 ]
8375 ]
8376 ],
8377 [
8378 "li",
8379 {
8380 "style": "padding-left: 13px;"
8381 },
8382 [
8383 "span",
8384 {},
8385 [
8386 "span",
8387 {
8388 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8389 },
8390 "supportsOverrideMimeType: "
8391 ],
8392 [
8393 "span",
8394 {
8395 "style": "margin-left: 13px"
8396 },
8397 "true"
8398 ]
8399 ]
8400 ],
8401 [
8402 "li",
8403 {
8404 "style": "padding-left: 13px;"
8405 },
8406 [
8407 "span",
8408 {},
8409 [
8410 "span",
8411 {
8412 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8413 },
8414 "supportsProgressEvent: "
8415 ],
8416 [
8417 "span",
8418 {
8419 "style": "margin-left: 13px"
8420 },
8421 "true"
8422 ]
8423 ]
8424 ],
8425 [
8426 "li",
8427 {
8428 "style": "padding-left: 13px;"
8429 },
8430 [
8431 "span",
8432 {
8433 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8434 },
8435 "getString: "
8436 ],
8437 [
8438 "span",
8439 {
8440 "style": "margin-left: 13px"
8441 },
8442 [
8443 "object",
8444 {
8445 "object": "<OBJECT>",
8446 "config": {
8447 "name": "none"
8448 }
8449 }
8450 ]
8451 ]
8452 ],
8453 [
8454 "li",
8455 {
8456 "style": "padding-left: 13px;"
8457 },
8458 [
8459 "span",
8460 {
8461 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8462 },
8463 "postFormData: "
8464 ],
8465 [
8466 "span",
8467 {
8468 "style": "margin-left: 13px"
8469 },
8470 [
8471 "object",
8472 {
8473 "object": "<OBJECT>",
8474 "config": {
8475 "name": "none"
8476 }
8477 }
8478 ]
8479 ]
8480 ],
8481 [
8482 "li",
8483 {
8484 "style": "padding-left: 13px;"
8485 },
8486 [
8487 "span",
8488 {
8489 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8490 },
8491 "request: "
8492 ],
8493 [
8494 "span",
8495 {
8496 "style": "margin-left: 13px"
8497 },
8498 [
8499 "object",
8500 {
8501 "object": "<OBJECT>",
8502 "config": {
8503 "name": "none"
8504 }
8505 }
8506 ]
8507 ]
8508 ],
8509 [
8510 "li",
8511 {
8512 "style": "padding-left: 13px;"
8513 },
8514 [
8515 "span",
8516 {
8517 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8518 },
8519 "requestCrossOrigin: "
8520 ],
8521 [
8522 "span",
8523 {
8524 "style": "margin-left: 13px"
8525 },
8526 [
8527 "object",
8528 {
8529 "object": "<OBJECT>",
8530 "config": {
8531 "name": "none"
8532 }
8533 }
8534 ]
8535 ]
8536 ],
8537 [
8538 "li",
8539 {
8540 "style": "padding-left: 13px;"
8541 },
8542 [
8543 "span",
8544 {
8545 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8546 },
8547 "_create_1: "
8548 ],
8549 [
8550 "span",
8551 {
8552 "style": "margin-left: 13px"
8553 },
8554 [
8555 "object",
8556 {
8557 "object": "<OBJECT>",
8558 "config": {
8559 "name": "none"
8560 }
8561 }
8562 ]
8563 ]
8564 ],
8565 [
8566 "li",
8567 {
8568 "style": "padding-left: 13px;"
8569 },
8570 [
8571 "span",
8572 {},
8573 [
8574 "span",
8575 {
8576 "style": ""
8577 },
8578 "[[Instance Methods]]"
8579 ]
8580 ]
8581 ],
8582 [
8583 "li",
8584 {
8585 "style": "padding-left: 13px;"
8586 },
8587 [
8588 "span",
8589 {
8590 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8591 },
8592 "abort: "
8593 ],
8594 [
8595 "span",
8596 {
8597 "style": "margin-left: 13px"
8598 },
8599 [
8600 "object",
8601 {
8602 "object": "<OBJECT>",
8603 "config": {
8604 "name": "none"
8605 }
8606 }
8607 ]
8608 ]
8609 ],
8610 [
8611 "li",
8612 {
8613 "style": "padding-left: 13px;"
8614 },
8615 [
8616 "span",
8617 {
8618 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8619 },
8620 "getAllResponseHeaders: "
8621 ],
8622 [
8623 "span",
8624 {
8625 "style": "margin-left: 13px"
8626 },
8627 [
8628 "object",
8629 {
8630 "object": "<OBJECT>",
8631 "config": {
8632 "name": "none"
8633 }
8634 }
8635 ]
8636 ]
8637 ],
8638 [
8639 "li",
8640 {
8641 "style": "padding-left: 13px;"
8642 },
8643 [
8644 "span",
8645 {
8646 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8647 },
8648 "getResponseHeader: "
8649 ],
8650 [
8651 "span",
8652 {
8653 "style": "margin-left: 13px"
8654 },
8655 [
8656 "object",
8657 {
8658 "object": "<OBJECT>",
8659 "config": {
8660 "name": "none"
8661 }
8662 }
8663 ]
8664 ]
8665 ],
8666 [
8667 "li",
8668 {
8669 "style": "padding-left: 13px;"
8670 },
8671 [
8672 "span",
8673 {
8674 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8675 },
8676 "open: "
8677 ],
8678 [
8679 "span",
8680 {
8681 "style": "margin-left: 13px"
8682 },
8683 [
8684 "object",
8685 {
8686 "object": "<OBJECT>",
8687 "config": {
8688 "name": "none"
8689 }
8690 }
8691 ]
8692 ]
8693 ],
8694 [
8695 "li",
8696 {
8697 "style": "padding-left: 13px;"
8698 },
8699 [
8700 "span",
8701 {
8702 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8703 },
8704 "overrideMimeType: "
8705 ],
8706 [
8707 "span",
8708 {
8709 "style": "margin-left: 13px"
8710 },
8711 [
8712 "object",
8713 {
8714 "object": "<OBJECT>",
8715 "config": {
8716 "name": "none"
8717 }
8718 }
8719 ]
8720 ]
8721 ],
8722 [
8723 "li",
8724 {
8725 "style": "padding-left: 13px;"
8726 },
8727 [
8728 "span",
8729 {
8730 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8731 },
8732 "send: "
8733 ],
8734 [
8735 "span",
8736 {
8737 "style": "margin-left: 13px"
8738 },
8739 [
8740 "object",
8741 {
8742 "object": "<OBJECT>",
8743 "config": {
8744 "name": "none"
8745 }
8746 }
8747 ]
8748 ]
8749 ],
8750 [
8751 "li",
8752 {
8753 "style": "padding-left: 13px;"
8754 },
8755 [
8756 "span",
8757 {
8758 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8759 },
8760 "setRequestHeader: "
8761 ],
8762 [
8763 "span",
8764 {
8765 "style": "margin-left: 13px"
8766 },
8767 [
8768 "object",
8769 {
8770 "object": "<OBJECT>",
8771 "config": {
8772 "name": "none"
8773 }
8774 }
8775 ]
8776 ]
8777 ],
8778 [
8779 "li",
8780 {
8781 "style": "padding-left: 13px;"
8782 },
8783 [
8784 "span",
8785 {
8786 "style": "color: rgb(136, 19, 145); margin-right: -13px"
8787 },
8788 "[[base class]]: "
8789 ],
8790 [
8791 "span",
8792 {
8793 "style": "margin-left: 13px"
8794 },
8795 [
8796 "object",
8797 {
8798 "object": "<OBJECT>",
8799 "config": {
8800 "name": "asClass"
8801 }
8802 }
8803 ]
8804 ]
8805 ]
8806 ]
8807 -----------------------------------
8808 """;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698