5cb3b37c74
This reverts commit 69f32d6ad7.
Reason for revert: We seem to have a number of tests failing with timeouts in CBUILD after this change, please see logs at
https://dart-in-g3-qa-prod.corp.google.com/dg3/Home#/cbuild/find/69f32d6ad7e724e3148cb2eb6601e63165e76ad3
Original change's description:
> Refactor `_Future`.
>
> This is a major rewrite of the `_Future` class,
> which is the default implementation of the `Future` interface.
>
> The main goal was to reduce the number of expensive type checks
> in the internal passing around of data.
> Expensive type checks are things like
> * `is _Future<T>` (more expensive than just `is _Future`, the latter
> can be a single class-ID check.
> * Covariant generic parameter checks (using `T` covariantly in a
> parameter forces a run-time type check).
>
> Also removed some plain unnecessary casts and turned some
> implicit casts from `dynamic` into `unsafeCast`s.
>
> This seems to be an success, at least on very primitive benchmarks, according to Golem:
> FutureCatchErrorTest 41.22% (1.9 noise)
> FutureValueTest 46.51% (2.8 noise)
> EmptyFutureTest 59.15% (3.1 noise)
> FutureWhenCompleteTest 51.10% (3.2 noise)
>
> A secondary goal was to clean up a very old and messy class,
> and make it clearer for other `dart:async` how to interact
> with the future.
>
> The change has a memory cost: The `_FutureListener<S,T>` class,
> which represents a `then`, `catchError` or `whenComplete`
> call on a `_Future`, now contains a reference to its source future,
> the one which provides the inputs to the callbacks,
> as well as the result future returned by the call.
> That's one extra memory slot per listener.
>
> In return, the `_FutureListener` now does not need to
> get its source future as an argument, which needs a covariant
> generic type check, and the methods of `_Future` can be written
> in a way which ignores the type parameters of both `_Future`
> and `_FutureListener`, which reduces complex type checks
> significantly.
>
> In general, typed code is in `_FutureListener`, which knows both
> the source and target types of the listener callbacks, and which
> contains the futures already at that type, so no extra type checking
> is needed.
> The `_Future` class is mostly untyped, except for its "public"
> API, called by other classes, which checks inputs,
> and code interacting with non-native futures.
> Invariants ensure that only correctly typed values
> are stored in the untyped shared `_resultOrListeners` field
> on `_Future`, as determined by its `_state` integer.
> (This was already partially true, and has simply been made
> more consistent.)
>
> Further, we now throw an error in a situation that was previously
> unhandled: When a `_Future` is completed with *itself*.
> That would ensure that the future would never complete
> (it waits for itself to complete before it can complete),
> and may potentially have caused weird loops in the representation.
> In practice, it probably never happens. Now it makes the error
> fail with an error.
> Currently a private `_FutureCyclicDependencyError` which presents
> as an `UnsupportedError`.
> That avoids code like
> ```dart
> import "dart:async";
> void main() {
> var c = Completer();
> c.complete(c.future); // bad.
> print("well!");
> var d = Completer();
> d.complete(c.future);
> print("shucks!");
> }
> ```
> from hanging the runtime by busily searching for the end of a cycle.
>
> See https://github.com/dart-lang/sdk/issues/48225
> Fixes #48225
>
> TEST= refactoring covered by existing tests, few new tests.
>
> Change-Id: Id9fc5af5fe011deb0af3e1e8a4ea3a91799f9da4
> Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/244241
> Reviewed-by: Martin Kustermann <kustermann@google.com>
> Commit-Queue: Lasse Nielsen <lrn@google.com>
TBR=lrn@google.com,kustermann@google.com,sra@google.com,sigmund@google.com,nshahan@google.com
Change-Id: I455be5a04b4c346df26d4ded0fa7388baccb0f8c
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/247762
Reviewed-by: Siva Annamalai <asiva@google.com>
Reviewed-by: Alexander Aprelev <aam@google.com>
Commit-Queue: Alexander Aprelev <aam@google.com>
6751 lines
142 KiB
Plaintext
6751 lines
142 KiB
Plaintext
Test: List<String> formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"List<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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"0: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"foo"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"1: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"bar"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"2: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"baz"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: List<Object> instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"List<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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"0: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"42"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"1: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"bar"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"2: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"true"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: List<Object> definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"List<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": ""
|
|
},
|
|
"[[Instance Methods]]"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"+: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"add: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"addAll: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"any: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"asMap: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"cast: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"checkGrowable: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"checkMutable: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"clear: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"contains: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"elementAt: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"every: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"expand: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"fillRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"firstWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"fold: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"followedBy: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"forEach: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"getRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"indexOf: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"indexWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"insert: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"insertAll: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"join: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"lastIndexOf: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"lastIndexWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"lastWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"map: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"reduce: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"remove: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"removeAt: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"removeLast: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"removeRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"removeWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"replaceRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"retainWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"setAll: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"setRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"shuffle: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"singleWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"skip: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"skipWhile: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"sort: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"sublist: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"take: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"takeWhile: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"toList: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"toSet: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"where: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"whereType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_get: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_removeWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_set: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_setLengthUnsafe: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: List<int> large instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"List<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": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: List<int> large definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"List<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": ""
|
|
},
|
|
"[[Instance Methods]]"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"+: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"add: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"addAll: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"any: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"asMap: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"cast: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"checkGrowable: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"checkMutable: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"clear: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"contains: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"elementAt: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"every: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"expand: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"fillRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"firstWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"fold: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"followedBy: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"forEach: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"getRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"indexOf: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"indexWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"insert: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"insertAll: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"join: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"lastIndexOf: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"lastIndexWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"lastWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"map: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"reduce: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"remove: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"removeAt: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"removeLast: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"removeRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"removeWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"replaceRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"retainWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"setAll: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"setRange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"shuffle: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"singleWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"skip: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"skipWhile: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"sort: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"sublist: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"take: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"takeWhile: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"toList: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"toSet: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"where: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"whereType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_get: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_removeWhere: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_set: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_setLengthUnsafe: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Iterable instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"0: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"foofoofoofoofoo"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"1: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"barbarbarbarbar"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"2: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"bazbazbazbazbaz"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Iterable definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"fold: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"map: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Set instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"_HashSet<dynamic> 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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"0: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"foo"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"1: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"42"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"2: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"true"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Set definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"_HashSet<dynamic> implements HashSet<dynamic>, LinkedHashSet<dynamic>"
|
|
]
|
|
-----------------------------------
|
|
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": ""
|
|
},
|
|
"[[Instance Methods]]"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"add: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"contains: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"lookup: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"remove: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_newSet: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_newSimilarSet: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Map<String, int> formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"IdentityMap<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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"0: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"1: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"2: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Map<dynamic, dynamic> instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"LinkedMap<dynamic, dynamic> 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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"0: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"1: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"2: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Map<dynamic, dynamic> definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"LinkedMap<dynamic, dynamic>"
|
|
]
|
|
-----------------------------------
|
|
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": ""
|
|
},
|
|
"[[Instance Methods]]"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"clear: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"remove: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_get: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_set: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Function formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"(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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"signature: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"(int, int) => int"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"JavaScript Function: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Function with functon arguments formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"(String, (Event$) => bool) => Null"
|
|
]
|
|
-----------------------------------
|
|
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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"signature: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"(String, (Event$) => bool) => Null"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"JavaScript Function: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: dart:html method
|
|
Value:
|
|
null
|
|
-----------------------------------
|
|
Test: Raw reference to dart constructor formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"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;color: black"
|
|
},
|
|
"Instance of '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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"runtimeType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Type TestClass formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"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;color: black"
|
|
},
|
|
"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:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"Library Module: debugger_test"
|
|
]
|
|
-----------------------------------
|
|
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": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: Test library Module child 0 formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"<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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"TestClass: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"TestGenericClass<dynamic, dynamic>: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"FormattedObject: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"replacer: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"format: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"extractNestedFormattedObjects: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"main: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"devtoolsFormatters: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: StackTrace formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"StackTrace"
|
|
]
|
|
-----------------------------------
|
|
Test: StackTrace formatting body
|
|
Value:
|
|
[
|
|
"ol",
|
|
{
|
|
"style": "list-style-type: none;padding-left: 0px;margin-top: 0px;margin-bottom: 0px;margin-left: 12px;background-color: thistle;color: rgb(196, 26, 22);"
|
|
},
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"Error: Instance of '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": ""
|
|
},
|
|
"main.next (<anonymous>)"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": ""
|
|
},
|
|
"<DART_SDK>"
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: TestClass instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"Instance of '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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"date: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"17"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"name: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"test class"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"runtimeType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"someInt: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"42"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"someObject: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"someString: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"Hello world"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: TestClass definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"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": ""
|
|
},
|
|
"[[Instance Methods]]"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"addOne: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"last: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"nameAndDate: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"returnObject: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: HttpRequest instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"[object XMLHttpRequest]"
|
|
]
|
|
-----------------------------------
|
|
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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"on: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"onAbort: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"onError: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"onLoad: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"onLoadEnd: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"onLoadStart: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"onProgress: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"onReadyStateChange: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"onTimeout: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"readyState: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"0"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"response: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
""
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"responseHeaders: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"responseText: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
""
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"responseType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
""
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"responseUrl: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
""
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"responseXml: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"runtimeType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"status: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"0"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"statusText: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
""
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"timeout: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"0"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"upload: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"withCredentials: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"false"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_get_response: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
""
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: HttpRequest definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"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": ""
|
|
},
|
|
"[[Instance Methods]]"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"abort: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"getAllResponseHeaders: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"getResponseHeader: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"open: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"overrideMimeType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"send: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"setRequestHeader: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: TestGenericClass instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"Instance of 'TestGenericClass<int, List<dynamic>>'"
|
|
]
|
|
-----------------------------------
|
|
Test: TestGenericClass 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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"x: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
"42"
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"runtimeType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: TestGenericClass definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"TestGenericClass<int, List<dynamic>>"
|
|
]
|
|
-----------------------------------
|
|
Test: TestGenericClass 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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"noSuchMethod: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"toString: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_equals: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: TestGenericClassJSInterop instance header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"Instance of 'TestGenericClass<ExampleJSClass, int>'"
|
|
]
|
|
-----------------------------------
|
|
Test: TestGenericClassJSInterop 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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"x: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"runtimeType: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
-----------------------------------
|
|
Test: TestGenericClassJSInterop definition formatting header
|
|
Value:
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: #d9edf7;color: black"
|
|
},
|
|
"TestGenericClass<ExampleJSClass, int>"
|
|
]
|
|
-----------------------------------
|
|
Test: TestGenericClassJSInterop 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": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"noSuchMethod: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"toString: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"_equals: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
],
|
|
[
|
|
"li",
|
|
{
|
|
"style": "padding-left: 13px;"
|
|
},
|
|
[
|
|
"span",
|
|
{
|
|
"style": "background-color: thistle; color: rgb(136, 19, 145); margin-right: -13px"
|
|
},
|
|
"[[base class]]: "
|
|
],
|
|
[
|
|
"span",
|
|
{
|
|
"style": "margin-left: 13px"
|
|
},
|
|
[
|
|
"object",
|
|
{
|
|
"object": "<OBJECT>",
|
|
"config": {}
|
|
}
|
|
]
|
|
]
|
|
]
|
|
]
|
|
----------------------------------- |