mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
Use relative URIs for core library part-of statements.
Reapply "Change some platform libraries to use `part of URI`." Change to used relative URIs in the part-of declarations. R=brianwilkerson@google.com, floitsch@google.com Review-Url: https://codereview.chromium.org/2911903002 .
This commit is contained in:
parent
3433c71c2e
commit
62bc61b367
149 changed files with 374 additions and 152 deletions
|
@ -423,7 +423,7 @@ abstract class SourceLibraryBuilder<T extends TypeBuilder, R>
|
|||
String myName = name == null ? "'$uri'" : "'${name}' ($uri)";
|
||||
addWarning(
|
||||
-1,
|
||||
"Using '${part.fileUri}' as part of '$myName' but it's 'part of'"
|
||||
"Using '${part.fileUri}' as part of '$myName' but its 'part of'"
|
||||
" declaration says '$partName'.");
|
||||
// The part is still included.
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
part of "js_helper.dart";
|
||||
|
||||
/// Tells the optimizing compiler that the annotated method has no
|
||||
/// side-effects. Allocations don't count as side-effects, since they can be
|
||||
|
|
|
@ -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;
|
||||
part of "js_helper.dart";
|
||||
|
||||
class ConstantMapView<K, V> extends UnmodifiableMapView implements ConstantMap {
|
||||
ConstantMapView(Map base) : super(base);
|
||||
|
|
|
@ -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;
|
||||
part of "isolate_helper.dart";
|
||||
|
||||
/// Serialize [message].
|
||||
_serializeMessage(message) {
|
||||
|
|
|
@ -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;
|
||||
part of "interceptors.dart";
|
||||
|
||||
class _Growable {
|
||||
const _Growable();
|
||||
|
|
|
@ -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;
|
||||
part of "interceptors.dart";
|
||||
|
||||
/**
|
||||
* The super interceptor class for [JSInt] and [JSDouble]. The compiler
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
* to an array containing only null values.
|
||||
*/
|
||||
|
||||
part of _js_helper;
|
||||
part of "js_helper.dart";
|
||||
|
||||
Type createRuntimeType(String name) {
|
||||
// Use a 'JS' cast to String. Since this is registered as used by the
|
||||
|
|
|
@ -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;
|
||||
part of "interceptors.dart";
|
||||
|
||||
/**
|
||||
* The interceptor class for [String]. The compiler recognizes this
|
||||
|
|
|
@ -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;
|
||||
part of "js_helper.dart";
|
||||
|
||||
const _USE_ES6_MAPS = const bool.fromEnvironment("dart2js.use.es6.maps");
|
||||
|
||||
|
|
|
@ -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;
|
||||
part of "js_helper.dart";
|
||||
|
||||
// TODO(ngeoffray): stop using this method once our optimizers can
|
||||
// change str1.contains(str2) into str1.indexOf(str2) != -1.
|
||||
|
|
|
@ -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;
|
||||
part of "js_helper.dart";
|
||||
|
||||
// Helper method used by internal libraries.
|
||||
regExpGetNative(JSSyntaxRegExp regexp) => regexp._nativeRegExp;
|
||||
|
|
|
@ -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;
|
||||
part of "js_helper.dart";
|
||||
|
||||
stringIndexOfStringUnchecked(receiver, other, startIndex) {
|
||||
return JS('int', '#.indexOf(#, #)', receiver, other, startIndex);
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
_invokeErrorHandler(
|
||||
Function errorHandler, Object error, StackTrace stackTrace) {
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
class _BroadcastStream<T> extends _ControllerStream<T> {
|
||||
_BroadcastStream(_StreamControllerLifecycle<T> controller)
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
/**
|
||||
* Indicates that loading of [libraryName] is deferred.
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
/// A type representing values that are either `Future<T>` or `T`.
|
||||
///
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
/** The onValue and onError handlers return either a value or a future */
|
||||
typedef FutureOr<T> _FutureOnValue<S, T>(S value);
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
typedef void _AsyncCallback();
|
||||
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
// -------------------------------------------------------------------
|
||||
// Core Stream types
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
// -------------------------------------------------------------------
|
||||
// Controller for creating and adding events to a stream.
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
/** Abstract and private interface for a place to put events. */
|
||||
abstract class _EventSink<T> {
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
/** Runs user code and takes actions depending on success or failure. */
|
||||
_runUserCode<T>(
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
/**
|
||||
* Wraps an [_EventSink] so it exposes only the [EventSink] interface.
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
/**
|
||||
* A count-down timer that can be configured to fire once or repeatedly.
|
||||
|
|
|
@ -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 dart.async;
|
||||
part of "async.dart";
|
||||
|
||||
typedef R ZoneCallback<R>();
|
||||
typedef R ZoneUnaryCallback<R, T>(T arg);
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* An unmodifiable [List] view of another List.
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/** Default function for equality comparison in customized HashMaps */
|
||||
bool _defaultEquals(a, b) => a == b;
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/** Common parts of [HashSet] and [LinkedHashSet] implementations. */
|
||||
abstract class _HashSetBase<E> extends SetBase<E> {
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* This [Iterable] mixin implements all [Iterable] members except `iterator`.
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* The [HasNextIterator] class wraps an [Iterator] and provides methods to
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* A hash-table based implementation of [Map].
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* A [LinkedHashSet] is a hash-table based [Set] implementation.
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* A specialized double-linked list of elements that extends [LinkedListEntry].
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* Abstract implementation of a list.
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* Base class for implementing a [Map].
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* A [Queue] is a collection that can be manipulated at both ends. One
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
/**
|
||||
* Base implementations of [Set].
|
||||
*/
|
||||
part of dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
/**
|
||||
* Mixin implementation of [Set].
|
||||
|
|
|
@ -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 dart.collection;
|
||||
part of "collection.dart";
|
||||
|
||||
typedef bool _Predicate<T>(T value);
|
||||
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* An instance of the default implementation of the [AsciiCodec].
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* A [base64](https://tools.ietf.org/html/rfc4648) encoder and decoder.
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* The [ByteConversionSink] provides an interface for converters to
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
typedef void _ChunkedConversionCallback<T>(T accumulated);
|
||||
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* A [Codec] encodes and (if supported) decodes data.
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* A [Converter] converts data from one representation into another.
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* Open-ended Encoding enum.
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* A `String` converter that converts characters to HTML entities.
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* Error thrown by JSON serialization if an object cannot be serialized.
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* An instance of the default implementation of the [Latin1Codec].
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
// Character constants.
|
||||
const int _LF = 10;
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/**
|
||||
* This class provides an interface for converters to
|
||||
|
|
|
@ -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 dart.convert;
|
||||
part of "convert.dart";
|
||||
|
||||
/** The Unicode Replacement character `U+FFFD` (<28>). */
|
||||
const int UNICODE_REPLACEMENT_CHARACTER_RUNE = 0xFFFD;
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* The annotation `@Deprecated('expires when')` marks a feature as deprecated.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* The reserved words [:true:] and [:false:] denote objects that are the only
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* The signature of a generic comparison function.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An instant in time, such as July 20, 1969, 8:18pm GMT.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
// TODO: Convert this abstract class into a concrete class double
|
||||
// that uses the patch class functionality to account for the
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* A span of time, such as 27 days, 4 hours, 12 minutes, and 3 seconds.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* Error objects thrown in the case of a program failure.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
// Exceptions are thrown either by the VM or from Dart code.
|
||||
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An [Expando] allows adding new properties to objects.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* The base class for all function types.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* Check whether two references are to the same object.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An arbitrarily large integer.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* Representation of the invocation of a member on an object.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* A collection of values, or "elements", that can be accessed sequentially.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An interface for getting items, one at a time, from an object.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An indexable collection of objects with a length.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An collection of key-value pairs, from which you retrieve a value
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* The reserved word [:null:] denotes an object that is the sole instance of
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An integer or floating-point number.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* The base class for all Dart objects.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An interface for basic searches within strings.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/// Prints a string representation of the object to the console.
|
||||
void print(Object object) {
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* A regular expression pattern.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* A collection of objects in which each object can occur only once.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* A generic destination for data.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* An interface implemented by all stack trace objects.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* A simple stopwatch interface to measure elapsed time.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* A sequence of characters.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* A class for concatenating strings efficiently.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
abstract class StringSink {
|
||||
/**
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/// Opaque name used by mirrors, invocations and [Function.apply].
|
||||
abstract class Symbol {
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
/**
|
||||
* Runtime representation of a type.
|
||||
|
|
|
@ -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 dart.core;
|
||||
part of "core.dart";
|
||||
|
||||
// Frequently used character codes.
|
||||
const int _SPACE = 0x20;
|
||||
|
|
|
@ -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 dart.developer;
|
||||
part of "developer.dart";
|
||||
|
||||
/// A response to a service protocol extension RPC.
|
||||
///
|
||||
|
|
|
@ -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 dart.developer;
|
||||
part of "developer.dart";
|
||||
|
||||
/// A UserTag can be used to group samples in the Observatory profiler.
|
||||
abstract class UserTag {
|
||||
|
|
|
@ -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 dart.developer;
|
||||
part of "developer.dart";
|
||||
|
||||
/// Service protocol is the protocol that a client like the observatory
|
||||
/// could use to access the services provided by the Dart VM for
|
||||
|
|
|
@ -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 dart.developer;
|
||||
part of "developer.dart";
|
||||
|
||||
const bool _isProduct = const bool.fromEnvironment("dart.vm.product");
|
||||
|
||||
|
|
|
@ -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 "html_common.dart";
|
||||
|
||||
/// Converts a Dart value into a JavaScript SerializedScriptValue.
|
||||
convertDartToNative_SerializedScriptValue(value) {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
part of html_common;
|
||||
part of "html_common.dart";
|
||||
|
||||
/// Converts a JavaScript object with properties into a Dart Map.
|
||||
/// Not suitable for nested objects.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
part of html_common;
|
||||
part of "html_common.dart";
|
||||
|
||||
convertDartToNative_PrepareForStructuredClone(value) =>
|
||||
new _StructuredCloneDartium()
|
||||
|
|
|
@ -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 "html_common.dart";
|
||||
|
||||
abstract class CssClassSetImpl implements CssClassSet {
|
||||
static final RegExp _validTokenRE = new RegExp(r'^\S+$');
|
||||
|
|
|
@ -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 "html_common.dart";
|
||||
|
||||
/**
|
||||
* Utils for device detection.
|
||||
|
|
|
@ -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 "html_common.dart";
|
||||
|
||||
/**
|
||||
* An indexable collection of a node's direct descendants in the document tree,
|
||||
|
|
|
@ -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 "html_common.dart";
|
||||
|
||||
class Lists {
|
||||
/**
|
||||
|
|
|
@ -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 dart._internal;
|
||||
part of "internal.dart";
|
||||
|
||||
/**
|
||||
* Marker interface for [Iterable] subclasses that have an efficient
|
||||
|
|
|
@ -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 dart._internal;
|
||||
part of "internal.dart";
|
||||
|
||||
/**
|
||||
* Mixin that throws on the length changing operations of [List].
|
||||
|
|
|
@ -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 dart._internal;
|
||||
part of "internal.dart";
|
||||
|
||||
/**
|
||||
* This function is set by the first allocation of a Zone.
|
||||
|
|
|
@ -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 dart._internal;
|
||||
part of "internal.dart";
|
||||
|
||||
/**
|
||||
* Dual-Pivot Quicksort algorithm.
|
||||
|
|
|
@ -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 dart._internal;
|
||||
part of "internal.dart";
|
||||
|
||||
/**
|
||||
* Implementation of [core.Symbol]. This class uses the same name as
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue