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

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

Powered by Google App Engine
This is Rietveld 408576698