Remaining private libs

Handle internal libraries correctly.

Revert `part of "file.dart"` to `part of "dart:file"` to avoid warnings in fasta.

BUG=
R=floitsch@google.com

Review-Url: https://codereview.chromium.org/2974433002 .
This commit is contained in:
Lasse R.H. Nielsen 2017-07-06 14:58:25 +02:00
parent 410a5b1585
commit 91db4489ee
145 changed files with 145 additions and 145 deletions

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "js_helper.dart";
part of "dart:_js_helper";
/// Tells the optimizing compiler that the annotated method has no
/// side-effects. Allocations don't count as side-effects, since they can be

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "js_helper.dart";
part of "dart:_js_helper";
class ConstantMapView<K, V> extends UnmodifiableMapView implements ConstantMap {
ConstantMapView(Map base) : super(base);

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "isolate_helper.dart";
part of "dart:_isolate_helper";
/// Serialize [message].
_serializeMessage(message) {

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "interceptors.dart";
part of "dart:_interceptors";
class _Growable {
const _Growable();

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "interceptors.dart";
part of "dart:_interceptors";
/**
* The super interceptor class for [JSInt] and [JSDouble]. The compiler

View file

@ -39,7 +39,7 @@
* to an array containing only null values.
*/
part of "js_helper.dart";
part of "dart:_js_helper";
Type createRuntimeType(String name) {
// Use a 'JS' cast to String. Since this is registered as used by the

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "interceptors.dart";
part of "dart:_interceptors";
/**
* The interceptor class for [String]. The compiler recognizes this

View file

@ -5,7 +5,7 @@
// Efficient JavaScript based implementation of a linked hash map used as a
// backing map for constant maps and the [LinkedHashMap] patch
part of "js_helper.dart";
part of "dart:_js_helper";
const _USE_ES6_MAPS = const bool.fromEnvironment("dart2js.use.es6.maps");

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "js_helper.dart";
part of "dart:_js_helper";
// TODO(ngeoffray): stop using this method once our optimizers can
// change str1.contains(str2) into str1.indexOf(str2) != -1.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "js_helper.dart";
part of "dart:_js_helper";
// Helper method used by internal libraries.
regExpGetNative(JSSyntaxRegExp regexp) => regexp._nativeRegExp;

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "js_helper.dart";
part of "dart:_js_helper";
stringIndexOfStringUnchecked(receiver, other, startIndex) {
return JS('int', '#.indexOf(#, #)', receiver, other, startIndex);

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
_invokeErrorHandler(
Function errorHandler, Object error, StackTrace stackTrace) {

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
class _BroadcastStream<T> extends _ControllerStream<T> {
_BroadcastStream(_StreamControllerLifecycle<T> controller)

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
/**
* Indicates that loading of [libraryName] is deferred.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
/// A type representing values that are either `Future<T>` or `T`.
///

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
/** The onValue and onError handlers return either a value or a future */
typedef FutureOr<T> _FutureOnValue<S, T>(S value);

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
typedef void _AsyncCallback();

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
// -------------------------------------------------------------------
// Core Stream types

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
// -------------------------------------------------------------------
// Controller for creating and adding events to a stream.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
/** Abstract and private interface for a place to put events. */
abstract class _EventSink<T> {

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
/** Runs user code and takes actions depending on success or failure. */
_runUserCode<T>(

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
/**
* Wraps an [_EventSink] so it exposes only the [EventSink] interface.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
/**
* A count-down timer that can be configured to fire once or repeatedly.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "async.dart";
part of "dart:async";
typedef R ZoneCallback<R>();
typedef R ZoneUnaryCallback<R, T>(T arg);

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* An unmodifiable [List] view of another List.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/** Default function for equality comparison in customized HashMaps */
bool _defaultEquals(a, b) => a == b;

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/** Common parts of [HashSet] and [LinkedHashSet] implementations. */
abstract class _HashSetBase<E> extends SetBase<E> {

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* This [Iterable] mixin implements all [Iterable] members except `iterator`.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* The [HasNextIterator] class wraps an [Iterator] and provides methods to

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* A hash-table based implementation of [Map].

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* A [LinkedHashSet] is a hash-table based [Set] implementation.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* A specialized double-linked list of elements that extends [LinkedListEntry].

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* Abstract implementation of a list.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* Base class for implementing a [Map].

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
/**
* A [Queue] is a collection that can be manipulated at both ends. One

View file

@ -5,7 +5,7 @@
/**
* Base implementations of [Set].
*/
part of "collection.dart";
part of "dart:collection";
/**
* Mixin implementation of [Set].

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "collection.dart";
part of "dart:collection";
typedef bool _Predicate<T>(T value);

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* An instance of the default implementation of the [AsciiCodec].

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* A [base64](https://tools.ietf.org/html/rfc4648) encoder and decoder.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* The [ByteConversionSink] provides an interface for converters to

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
typedef void _ChunkedConversionCallback<T>(T accumulated);

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* A [Codec] encodes and (if supported) decodes data.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* A [Converter] converts data from one representation into another.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* Open-ended Encoding enum.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* A `String` converter that converts characters to HTML entities.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* Error thrown by JSON serialization if an object cannot be serialized.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* An instance of the default implementation of the [Latin1Codec].

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
// Character constants.
const int _LF = 10;

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/**
* This class provides an interface for converters to

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "convert.dart";
part of "dart:convert";
/** The Unicode Replacement character `U+FFFD` (<28>). */
const int UNICODE_REPLACEMENT_CHARACTER_RUNE = 0xFFFD;

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* The annotation `@Deprecated('expires when')` marks a feature as deprecated.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* The reserved words [:true:] and [:false:] denote objects that are the only

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* The signature of a generic comparison function.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An instant in time, such as July 20, 1969, 8:18pm GMT.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
// TODO: Convert this abstract class into a concrete class double
// that uses the patch class functionality to account for the

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* A span of time, such as 27 days, 4 hours, 12 minutes, and 3 seconds.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* Error objects thrown in the case of a program failure.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
// Exceptions are thrown either by the VM or from Dart code.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An [Expando] allows adding new properties to objects.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* The base class for all function types.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* Check whether two references are to the same object.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An arbitrarily large integer.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* Representation of the invocation of a member on an object.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* A collection of values, or "elements", that can be accessed sequentially.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An interface for getting items, one at a time, from an object.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An indexable collection of objects with a length.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An collection of key-value pairs, from which you retrieve a value

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* The reserved word [:null:] denotes an object that is the sole instance of

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An integer or floating-point number.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* The base class for all Dart objects.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An interface for basic searches within strings.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/// Prints a string representation of the object to the console.
void print(Object object) {

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* A regular expression pattern.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* A collection of objects in which each object can occur only once.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* A generic destination for data.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* An interface implemented by all stack trace objects.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* A simple stopwatch interface to measure elapsed time.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* A sequence of characters.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* A class for concatenating strings efficiently.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
abstract class StringSink {
/**

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/// Opaque name used by mirrors, invocations and [Function.apply].
abstract class Symbol {

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
/**
* Runtime representation of a type.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "core.dart";
part of "dart:core";
// Frequently used character codes.
const int _SPACE = 0x20;

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "developer.dart";
part of "dart:developer";
/// A response to a service protocol extension RPC.
///

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "developer.dart";
part of "dart:developer";
/// A UserTag can be used to group samples in the Observatory profiler.
abstract class UserTag {

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "developer.dart";
part of "dart:developer";
/// Service protocol is the protocol that a client like the observatory
/// could use to access the services provided by the Dart VM for

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "developer.dart";
part of "dart:developer";
const bool _isProduct = const bool.fromEnvironment("dart.vm.product");

View file

@ -25,7 +25,7 @@
// We omit an unwrapper for Window as no methods take a non-local
// window as a parameter.
part of html_common;
part of "dart:html_common";
/// Converts a Dart value into a JavaScript SerializedScriptValue.
convertDartToNative_SerializedScriptValue(value) {

View file

@ -1,4 +1,4 @@
part of "html_common_dart2js.dart";
part of "dart:html_common";
/// Converts a JavaScript object with properties into a Dart Map.
/// Not suitable for nested objects.

View file

@ -1,4 +1,4 @@
part of "html_common.dart";
part of "dart:html_common";
convertDartToNative_PrepareForStructuredClone(value) =>
new _StructuredCloneDartium()

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of html_common;
part of "dart:html_common";
abstract class CssClassSetImpl implements CssClassSet {
static final RegExp _validTokenRE = new RegExp(r'^\S+$');

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of html_common;
part of "dart:html_common";
/**
* Utils for device detection.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of html_common;
part of "dart:html_common";
/**
* An indexable collection of a node's direct descendants in the document tree,

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of html_common;
part of "dart:html_common";
class Lists {
/**

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "internal.dart";
part of "dart:_internal";
/**
* Marker interface for [Iterable] subclasses that have an efficient

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "internal.dart";
part of "dart:_internal";
/**
* Mixin that throws on the length changing operations of [List].

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "internal.dart";
part of "dart:_internal";
/**
* This function is set by the first allocation of a Zone.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "internal.dart";
part of "dart:_internal";
/**
* Dual-Pivot Quicksort algorithm.

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "internal.dart";
part of "dart:_internal";
/**
* Implementation of [core.Symbol]. This class uses the same name as

View file

@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
part of "io.dart";
part of "dart:io";
/**
* Builds a list of bytes, allowing bytes and lists of bytes to be added at the

Some files were not shown because too many files have changed in this diff Show more