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

Unified Diff: tests/lib_strong/html/debugger_test.dart

Issue 2789663005: Fix type checks and display for JS interop types. (Closed)
Patch Set: Code review comment fixes. 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 side-by-side diff with in-line comments
Download patch
Index: tests/lib_strong/html/debugger_test.dart
diff --git a/tests/lib_strong/html/debugger_test.dart b/tests/lib_strong/html/debugger_test.dart
index 37384fe27536f514b5bda151f27bc7806186daec..f14c00347f7ba6e875e95edf4b74f1a89d1dcc32 100644
--- a/tests/lib_strong/html/debugger_test.dart
+++ b/tests/lib_strong/html/debugger_test.dart
@@ -62,6 +62,12 @@ external stringify(value, [Function replacer, int space]);
@JS('dart_library.import')
external importDartLibrary(String path);
+@JS('ExampleJSClass')
+class ExampleJSClass<T> {
+ external factory ExampleJSClass(T x);
+ external T get x;
+}
+
// Replacer normalizes file names that could vary depending on the test runner.
// styles.
replacer(String key, value) {
@@ -112,11 +118,33 @@ List<FormattedObject> extractNestedFormattedObjects(json) {
return ret;
}
-main() {
+main() async {
if (devtoolsFormatters == null) {
print("Warning: no devtools custom formatters specified. Skipping tests.");
return;
}
+
+ // Cache blocker is a workaround for:
+ // https://code.google.com/p/dart/issues/detail?id=11834
+ var cacheBlocker = new DateTime.now().millisecondsSinceEpoch;
+ var goldenUrl =
+ '/root_dart/tests/lib/html/debugger_test_golden.txt?cacheBlock=$cacheBlocker';
+
+ String golden;
+ try {
+ golden = (await HttpRequest.getString(goldenUrl)).trim();
+ } catch (e) {
+ print("Warning: couldn't load golden file from $goldenUrl");
+ }
+
+ document.body.append(new ScriptElement()
+ ..type = 'text/javascript'
+ ..innerHtml = r"""
+window.ExampleJSClass = function ExampleJSClass(x) {
+ this.x = x;
+};
+""");
+
var _devtoolsFormatter = devtoolsFormatters.first;
var actual = new StringBuffer();
@@ -278,8539 +306,52 @@ main() {
addNestedFormatterGoldens('HttpRequest', new HttpRequest());
});
+ group('Generics formatting', () {
+ addNestedFormatterGoldens(
+ 'TestGenericClass', new TestGenericClass<int, List>(42));
+ addNestedFormatterGoldens(
+ 'TestGenericClassJSInterop',
+ new TestGenericClass<ExampleJSClass<String>, int>(
+ new ExampleJSClass("Hello")));
+ });
+
test('verify golden match', () {
// Warning: all other test groups must have run for this test to be meaningful
- print("Actual:##############\n$actual\n#################");
-
- expect(actual.toString().trim(), equals(expectedGolden().trim()));
+ var actualStr = actual.toString().trim();
+
+ if (actualStr != golden) {
+ var helpMessage =
+ 'Debugger output does not match the golden data found in:\n'
+ 'tests/lib_strong/html/debugger_test_golden.txt\n'
+ 'The new golden data is copied to the clipboard when you click on '
+ 'this window.\n'
+ 'Please update the golden file with the following output and review '
+ 'the diff using your favorite diff tool to make sure the custom '
+ 'formatting output has not regressed.';
+ print(helpMessage);
+ print(actualStr);
+ // Copy text to clipboard on page click. We can't copy to the clipboard
+ // without a click due to Chrome security.
+ var body = document.body;
+ TextAreaElement textField = new Element.tag('textarea');
+ textField.maxLength = 100000000;
+ textField.text = actualStr;
+ textField.style
+ ..width = '800px'
+ ..height = '400px';
+ document.body.append(new Element.tag('h3')
+ ..innerHtml = helpMessage.replaceAll('\n', '<br>'));
+ document.body.append(textField);
+ document.body.onClick.listen((_) {
+ textField.select();
+ var result = document.execCommand('copy');
+ if (result) {
+ print("Copy to clipboard successful");
+ } else {
+ print("Copy to clipboard failed");
+ }
+ });
+ }
+ expect(actualStr == golden, isTrue);
});
}
-
-/// The golden custom formatter output is placed at the bottom of the file
-/// to simplify replacing the golden data when the custom formatter code is
-/// changed.
-///
-/// This value is placed in a function rather than a field to avoid a recursive
-/// program that prints itself issue as the golden includes the formatter output
-/// for this library
-String expectedGolden() => r"""Test: List<String> formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "JSArray<String> length 3"
-]
------------------------------------
-Test: List<String> formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "0: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "foo"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "bar"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "2: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "baz"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: List<Object> instance header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "JSArray<Object> length 3"
-]
------------------------------------
-Test: List<Object> instance body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "0: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "42"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "bar"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "2: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "true"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: List<Object> definition formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "JSArray<Object> implements List<Object>, JSIndexable<Object>"
-]
------------------------------------
-Test: List<Object> definition formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Static members]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "markFixedList: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "markUnmodifiableList: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Instance Methods]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "add: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "addAll: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "any: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "asMap: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "checkGrowable: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "checkMutable: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "clear: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "contains: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "elementAt: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "every: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "expand: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "fillRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "firstWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "fold: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "forEach: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "getRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "indexOf: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "insert: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "insertAll: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "join: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "lastIndexOf: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "lastWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "map: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "reduce: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "remove: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "removeAt: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "removeLast: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "removeRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "removeWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "replaceRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "retainWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "setAll: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "setRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "shuffle: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "singleWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "skip: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "skipWhile: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "sort: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "sublist: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "take: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "takeWhile: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "toList: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "toSet: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "where: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_get: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_removeWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_set: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[base class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: List<int> large instance header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "JSArray<int> length 200"
-]
------------------------------------
-Test: List<int> large instance body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": ""
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": ""
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: List<int> large definition formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "JSArray<int> implements List<int>, JSIndexable<int>"
-]
------------------------------------
-Test: List<int> large definition formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Static members]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "markFixedList: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "markUnmodifiableList: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Instance Methods]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "add: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "addAll: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "any: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "asMap: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "checkGrowable: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "checkMutable: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "clear: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "contains: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "elementAt: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "every: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "expand: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "fillRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "firstWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "fold: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "forEach: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "getRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "indexOf: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "insert: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "insertAll: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "join: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "lastIndexOf: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "lastWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "map: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "reduce: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "remove: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "removeAt: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "removeLast: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "removeRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "removeWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "replaceRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "retainWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "setAll: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "setRange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "shuffle: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "singleWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "skip: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "skipWhile: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "sort: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "sublist: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "take: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "takeWhile: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "toList: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "toSet: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "where: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_get: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_removeWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_set: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[base class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Iterable instance header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "MappedListIterable<String, String> length 3"
-]
------------------------------------
-Test: Iterable instance body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "0: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "foofoofoofoofoo"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "barbarbarbarbar"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "2: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "bazbazbazbazbaz"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Iterable definition formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "MappedListIterable<String, String>"
-]
------------------------------------
-Test: Iterable definition formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Instance Methods]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "elementAt: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[base class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Set instance header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "_LinkedHashSet length 3"
-]
------------------------------------
-Test: Set instance body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "0: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "foo"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "42"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "2: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "true"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Set definition formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "_LinkedHashSet implements LinkedHashSet"
-]
------------------------------------
-Test: Set definition formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Static members]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_deleteTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_isNumericElement: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_isStringElement: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_newHashTable: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_setTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Instance Methods]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "add: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "contains: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "forEach: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "lookup: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "remove: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_add: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_addHashTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_computeHashCode: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_contains: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_filterWhere: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_findBucketIndex: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_getBucket: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_getTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_lookup: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_modified: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_newLinkedCell: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_newSet: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_remove: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_removeHashTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_unlinkCell: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_unsupported: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[base class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Map<String, int> formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "JsLinkedHashMap<String, int> length 3"
-]
------------------------------------
-Test: Map<String, int> formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "0: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "2: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Map<dynamic, dynamic> instance header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "JsLinkedHashMap<Object, Object> length 3"
-]
------------------------------------
-Test: Map<dynamic, dynamic> instance body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "0: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "2: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Map<dynamic, dynamic> definition formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "JsLinkedHashMap<Object, Object> implements LinkedHashMap<Object, Object>, InternalMap<Object, Object>"
-]
------------------------------------
-Test: Map<dynamic, dynamic> definition formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Static members]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_isNumericKey: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_isStringKey: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Instance Methods]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "addAll: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "clear: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "containsKey: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "containsValue: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "forEach: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "internalComputeHashCode: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "internalContainsKey: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "internalFindBucketIndex: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "internalGet: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "internalRemove: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "internalSet: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "putIfAbsent: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "remove: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_addHashTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_containsTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_deleteTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_get: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_getBucket: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_getTableBucket: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_getTableCell: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_modified: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_newHashTable: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_newLinkedCell: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_removeHashTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_set: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_setTableEntry: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_unlinkCell: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[base class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Function formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "(int, int) -> int"
-]
------------------------------------
-Test: Function formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "signature: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "(int, int) -> int"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "JavaScript Function: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "skipDart"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Function with functon arguments formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "(String, (Event) -> bool) -> dynamic"
-]
------------------------------------
-Test: Function with functon arguments formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "signature: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "(String, (Event) -> bool) -> dynamic"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "JavaScript Function: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "skipDart"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: dart:html method
-Value:
-null
------------------------------------
-Test: Raw reference to dart constructor formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "TestClass"
-]
------------------------------------
-Test: Raw reference to dart constructor formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- }
-]
------------------------------------
-Test: Object formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "Object"
-]
------------------------------------
-Test: Object formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "runtimeType: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Type TestClass formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "TestClass"
-]
------------------------------------
-Test: Type TestClass formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- }
-]
------------------------------------
-Test: Type HttpRequest formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "HttpRequest"
-]
------------------------------------
-Test: Type HttpRequest formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- }
-]
------------------------------------
-Test: Test library Module header
-Value:
-null
------------------------------------
-Test: Test library Module body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": ""
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: Test library Module child 0 formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "<FILE>"
-]
------------------------------------
-Test: Test library Module child 0 formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "TestClass: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "TestGenericClass: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "devtoolsFormatters: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "replacer: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "format: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "FormattedObject: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "extractNestedFormattedObjects: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "main: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "expectedGolden: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: StackTrace formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "StackTrace"
-]
------------------------------------
-Test: StackTrace formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;color: rgb(196, 26, 22);"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "Error"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<DART_SDK>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "<FILE>"
- ]
- ]
- ]
-]
------------------------------------
-Test: TestClass instance header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "TestClass"
-]
------------------------------------
-Test: TestClass instance body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "date: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "17"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "name: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "test class"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "someInt: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "42"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "someObject: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "someString: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "Hello world"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: TestClass definition formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "TestClass"
-]
------------------------------------
-Test: TestClass definition formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Static members]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "exampleStaticMethod: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Instance Methods]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "addOne: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "last: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "nameAndDate: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "returnObject: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[base class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: MouseEvent instance header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "MouseEvent"
-]
------------------------------------
-Test: MouseEvent instance body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "altKey: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "false"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "button: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "buttons: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "client: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "ctrlKey: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "false"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "dataTransfer: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "null"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "fromElement: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "layer: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "metaKey: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "false"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "movement: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "offset: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "<Exception thrown> Unsupported operation: offsetX is only supported on elements"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "page: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "region: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "null"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "relatedTarget: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "screen: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "shiftKey: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "false"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "toElement: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_clientX: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_clientY: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_get_relatedTarget: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_layerX: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_layerY: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_movementX: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_movementY: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_pageX: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_pageY: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_screenX: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_screenY: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_webkitMovementX: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "null"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_webkitMovementY: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "null"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: MouseEvent definition formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "MouseEvent"
-]
------------------------------------
-Test: MouseEvent definition formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Static members]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_create_1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_create_2: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Instance Methods]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_initMouseEvent: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_initMouseEvent_1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[base class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: HttpRequest instance header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "HttpRequest"
-]
------------------------------------
-Test: HttpRequest instance body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "onReadyStateChange: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "readyState: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "response: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- ""
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "responseHeaders: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "responseText: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- ""
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "responseType: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- ""
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "responseUrl: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- ""
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "responseXml: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "status: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "statusText: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- ""
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "timeout: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "0"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "upload: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "withCredentials: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- "false"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_get_response: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- ""
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-Test: HttpRequest definition formatting header
-Value:
-[
- "span",
- {
- "style": "background-color: #d9edf7;"
- },
- "HttpRequest"
-]
------------------------------------
-Test: HttpRequest definition formatting body
-Value:
-[
- "ol",
- {
- "style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;"
- },
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Static members]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "getString: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "postFormData: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "request: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "requestCrossOrigin: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "_create_1: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {},
- [
- "span",
- {
- "style": ""
- },
- "[[Instance Methods]]"
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "abort: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "getAllResponseHeaders: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "getResponseHeader: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "open: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "overrideMimeType: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "send: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "setRequestHeader: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "none"
- }
- }
- ]
- ]
- ],
- [
- "li",
- {
- "style": "padding-left: 13px;"
- },
- [
- "span",
- {
- "style": "color: rgb(136, 19, 145); margin-right: -13px"
- },
- "[[base class]]: "
- ],
- [
- "span",
- {
- "style": "margin-left: 13px"
- },
- [
- "object",
- {
- "object": "<OBJECT>",
- "config": {
- "name": "asClass"
- }
- }
- ]
- ]
- ]
-]
------------------------------------
-""";
« no previous file with comments | « pkg/dev_compiler/tool/input_sdk/private/ddc_runtime/types.dart ('k') | tests/lib_strong/html/debugger_test_golden.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698