repo_id
stringlengths
21
168
file_path
stringlengths
36
210
content
stringlengths
1
9.98M
__index_level_0__
int64
0
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/single_subscription_transformer.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A transformer that converts a broadcast stream into a single-subscription ///...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/cancelable_operation.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'package:async/async.dart'; import 'utils.dart'; /// An asynchronous ope...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/restartable_timer.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A non-periodic timer that can be restarted any number of times. /// /// Once ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/typed_stream_transformer.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// Creates a wrapper that coerces the type of [transformer]. /// /// This soundl...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/byte_collector.dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'dart:typed_data'; import 'cancelable_operation.dart'; /// Collects an asy...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/stream_group.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A collection of streams whose events are unified and sent through a central /...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/utils.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A generic typedef for a function that takes one type and returns another. typ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/async_memoizer.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A class for running an asynchronous function exactly once and caching its ///...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/future_group.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A collection of futures waits until all added [Future]s complete. /// /// Fut...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/stream_sink_transformer.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'stream_sink_transformer/handler_transformer.dart'; import 'stream_sink_tr...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/null_stream_sink.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A [StreamSink] that discards all events. /// /// The sink silently drops even...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/stream_zip.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A stream that combines the values of other streams. /// /// This emits lists ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/stream_subscription_transformer.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'async_memoizer.dart'; typedef _AsyncHandler<T> = Future Function(StreamS...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/async_cache.dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'package:async/async.dart'; /// Runs asynchronous functions and caches th...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/stream_completer.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A single-subscription [stream] where the contents are provided later. /// ///...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/delegate/future.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// A wrapper that forwards calls to a [Future]. class DelegatingFuture<T> implem...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/delegate/stream.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// Simple delegating wrapper around a [Stream]. /// /// Subclasses can override ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/delegate/stream_subscription.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import '../typed/stream_subscription.dart'; /// Simple delegating wrapper around...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/delegate/sink.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. /// Simple delegating wrapper around a [Sink]. /// /// Subclasses can override individual methods, or u...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/delegate/stream_sink.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// Simple delegating wrapper around a [StreamSink]. /// /// Subclasses can overr...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/delegate/stream_consumer.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// Simple delegating wrapper around a [StreamConsumer]. /// /// Subclasses can o...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/delegate/event_sink.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; /// Simple delegating wrapper around an [EventSink]. /// /// Subclasses can overr...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/typed/stream_subscription.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; class TypeSafeStreamSubscription<T> implements StreamSubscription<T> { final St...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/stream_sink_transformer/typed.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import '../stream_sink_transformer.dart'; /// A wrapper that coerces the generic...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/stream_sink_transformer/handler_transformer.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import '../stream_sink_transformer.dart'; import '../delegate/stream_sink.dart'; ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/stream_sink_transformer/stream_transformer_wrapper.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import '../stream_sink_transformer.dart'; /// A [StreamSinkTransformer] that wra...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/result/future.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import '../delegate/future.dart'; import 'result.dart'; /// A [Future] wrapper t...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/result/result.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'capture_sink.dart'; import 'capture_transformer.dart'; import 'error.dart...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/result/error.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'result.dart'; import 'value.dart'; /// A result representing a thrown er...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/result/capture_sink.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'result.dart'; /// Used by [Result.captureSink]. class CaptureSink<T> imp...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/result/value.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'result.dart'; import 'error.dart'; /// A result representing a returned ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/result/release_transformer.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'result.dart'; import 'release_sink.dart'; /// A transformer that release...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/result/release_sink.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'result.dart'; /// Used by [Result.releaseSink]. class ReleaseSink<T> imp...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/async/src/result/capture_transformer.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'result.dart'; import 'capture_sink.dart'; /// A stream transformer that ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/convert.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. library convert; export 'src/accumulator_sink.dart'; export 'src/byte_accumulator_sink.dart'; export '...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/percent.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. library convert.percent; import 'dart:convert'; import 'percent/encoder.dart'; import 'percent/decode...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/hex.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. library convert.hex; import 'dart:convert'; import 'hex/encoder.dart'; import 'hex/decoder.dart'; ex...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/byte_accumulator_sink.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:convert'; import 'dart:typed_data'; import 'package:typed_data/typed_data.dart'; /// A s...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/string_accumulator_sink.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:convert'; /// A sink that provides access to the concatenated strings passed to it. /// /...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/accumulator_sink.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:collection'; /// A sink that provides access to all the [events] that have been passed to...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/utils.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. library convert.utils; import 'package:charcode/ascii.dart'; /// Returns the digit (0 through 15) cor...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/identity_codec.dart
import 'dart:convert'; class _IdentityConverter<T> extends Converter<T, T> { _IdentityConverter(); T convert(T input) => input; } /// A [Codec] that performs the identity conversion (changing nothing) in both /// directions. /// /// The identity codec passes input directly to output in both directions. /// This c...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/percent/decoder.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. library convert.percent.decoder; import 'dart:convert'; import 'package:charcode/ascii.dart'; import ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/percent/encoder.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. library convert.percent.encoder; import 'dart:convert'; import 'package:charcode/ascii.dart'; /// Th...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/hex/decoder.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. library convert.hex.decoder; import 'dart:convert'; import 'dart:typed_data'; import '../utils.dart';...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/convert/src/hex/encoder.dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file // 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. library convert.hex.encoder; import 'dart:convert'; import 'dart:typed_data'; import 'package:charcod...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/firebase_admin_interop.dart
// Copyright (c) 2017, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. /// Firebase Admin Interop Library for Dart. /// /// This is a JS interop library so it can't be used standalone. It must be /// compiled to JavaScript a...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/js.dart
// Copyright (c) 2017, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. /// Dart facade for Firebase Admin Node.js library. /// /// import 'package:firebase_admin_interop/js.dart'; /// import 'package:node_interop/nod...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/app.dart
// Copyright (c) 2017, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'package:meta/meta.dart'; import 'package:node_interop/util.dart'; import 'admin.dart'; import 'auth.dart'; import 'binding...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/storage_bindings.dart
@JS() library firebase_storage; import "package:js/js.dart"; import 'package:node_interop/node.dart'; import 'bindings.dart'; /// The Cloud Storage service interface. @JS() @anonymous abstract class Storage { /// The app associated with this Storage instance. external App get app; /// Returns a reference to a...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/auth.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'package:meta/meta.dart'; import 'package:node_interop/util.dart'; import 'bindings.dart' as js show Auth; import 'bindings...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/firestore.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'dart:js'; import 'dart:typed_data'; import 'package:js/js.dart'; import 'package:meta/meta.dart'; import 'package:node_inte...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/firestore_bindings.dart
@JS() library firestore; import "package:js/js.dart"; import "package:node_interop/node.dart"; import "package:node_interop/stream.dart"; @JS() @anonymous abstract class FirestoreModule { /// Sets the log function for all active Firestore instances. external void setLogFunction(void logger(String msg)); extern...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/bindings.dart
// Copyright (c) 2017, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. @JS() library firebase_admin; import 'package:js/js.dart'; import 'package:node_interop/node.dart'; import 'firestore_bindings.dart' show Firestore, Geo...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/admin.dart
// Copyright (c) 2017, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'package:meta/meta.dart'; import 'app.dart'; import 'bindings.dart' as js; /// Provides access to Firebase Admin APIs. /// /// To start using Fi...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/database.dart
// Copyright (c) 2017, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'dart:js'; import 'package:meta/meta.dart'; import 'package:node_interop/util.dart'; import 'package:node_interop/js.dart'; ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/firebase_admin_interop/src/messaging.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'package:meta/meta.dart'; import 'package:node_interop/util.dart'; import 'bindings.dart' as js show Messaging; import 'bin...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/checked_yaml/checked_yaml.dart
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file // 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. import 'package:json_annotation/json_annotation.dart'; import 'package:yaml/yaml.dart'; /// Decodes [ya...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/yaml.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'src/loader.dart'; import 'src/style.dart'; import 'src/yaml_document.dart'; import 'src/yaml_ex...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/yaml_document.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:collection'; import 'package:source_span/source_span.dart'; import 'yaml_node.dart'; //...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/event.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'package:source_span/source_span.dart'; import 'style.dart'; import 'yaml_document.dart'; /// ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/parser.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'package:source_span/source_span.dart'; import 'package:string_scanner/string_scanner.dart'; im...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/null_span.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'package:source_span/source_span.dart'; /// A [SourceSpan] with no location information. /// //...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/style.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. /// An enum of source scalar styles. class ScalarStyle { /// No source style was specified. /// /...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/scanner.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'package:collection/collection.dart'; import 'package:source_span/source_span.dart'; import 'pac...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/yaml_node.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:collection' as collection; import 'package:collection/collection.dart'; import 'package:s...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/equality.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:collection'; import 'package:collection/collection.dart'; import 'yaml_node.dart'; /// ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/loader.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'package:charcode/ascii.dart'; import 'package:source_span/source_span.dart'; import 'equality....
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/token.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'package:source_span/source_span.dart'; import 'style.dart'; /// A token emitted by a [Scanner...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/yaml_exception.dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file // 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. import 'package:source_span/source_span.dart'; /// An error thrown by the YAML processor. class YamlEx...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/utils.dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file // 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. import 'package:source_span/source_span.dart'; /// A pair of values. class Pair<E, F> { final E firs...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/yaml/src/yaml_node_wrapper.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:collection'; import 'package:collection/collection.dart' as pkg_collection; import 'packa...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/builders.dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file // 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. import 'package:build/build.dart'; import 'package:build_modules/build_modules.dart'; import 'package:c...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/build_node_compilers.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. export 'src/dev_compiler_builder.dart' show DevCompilerBuilder, jsModuleErrorsExtension, jsModuleExtension, jsSourceM...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/src/dev_compiler_builder.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'dart:convert'; import 'dart:io'; import 'package:bazel_worker/bazel_worker.dart'; import 'package:build/build.dart'; import...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/src/dart2js_bootstrap.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'dart:convert'; import 'dart:io'; import 'package:build/build.dart'; import 'package:build_modules/build_modules.dart'; impo...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/src/platforms.dart
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file // 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. import 'package:build_modules/build_modules.dart'; final ddcPlatform = DartPlatform.register('ddc_node...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/src/dev_compiler_bootstrap.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; import 'dart:collection'; import 'dart:convert'; import 'package:build/build.dart'; import 'package:build_modules/build_modules.dar...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/src/node_entrypoint_builder.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'dart:async'; // ignore: deprecated_member_use import 'package:analyzer/analyzer.dart'; import 'package:build/build.dart'; import 'package:build_...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/src/common.dart
// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file // 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. import 'dart:async'; import 'dart:io'; import 'package:build/build.dart'; import 'package:path/path.da...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/src/ddc_names.dart
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file // 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. import 'package:path/path.dart' as p; /// Transforms a path to a valid JS identifier. /// /// This log...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/build_node_compilers/src/errors.dart
// Copyright (c) 2018, Anatoly Pulyaevskiy. All rights reserved. Use of this source code // is governed by a BSD-style license that can be found in the LICENSE file. import 'package:build/build.dart'; /// An [Exception] that is thrown when a worker returns an error. abstract class _WorkerException implements Exceptio...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/mirror_matchers.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. @deprecated library mirror_matchers; /// The mirror matchers library provides some additional matchers...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/matcher.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. /// Support for specifying test expectations, such as for unit tests. export 'src/core_matchers.dart'; ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/iterable_matchers.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'description.dart'; import 'equals_matcher.dart'; import 'feature_matcher.dart'; import 'interfa...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/util.dart
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file // 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. import 'core_matchers.dart'; import 'equals_matcher.dart'; import 'interfaces.dart'; typedef _Predicat...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/operator_matchers.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'interfaces.dart'; import 'util.dart'; /// This returns a matcher that inverts [matcher] to its...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/string_matchers.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'feature_matcher.dart'; import 'interfaces.dart'; /// Returns a matcher which matches if the ma...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/description.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'interfaces.dart'; import 'pretty_print.dart'; /// The default implementation of [Description]....
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/custom_matcher.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'package:stack_trace/stack_trace.dart'; import 'description.dart'; import 'interfaces.dart'; im...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/numeric_matchers.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'feature_matcher.dart'; import 'interfaces.dart'; /// Returns a matcher which matches if the ma...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/pretty_print.dart
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file // 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. import 'description.dart'; import 'interfaces.dart'; import 'util.dart'; /// Returns a pretty-printed ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/order_matchers.dart
// Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file // 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. import 'interfaces.dart'; /// Returns a matcher which matches if the match argument is greater /// tha...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/having_matcher.dart
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file // 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. import 'custom_matcher.dart'; import 'interfaces.dart'; import 'type_matcher.dart'; import 'util.dart';...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/type_matcher.dart
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file // 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. import 'having_matcher.dart'; import 'interfaces.dart'; /// Returns a matcher that matches objects wit...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/core_matchers.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'feature_matcher.dart'; import 'interfaces.dart'; import 'type_matcher.dart'; import 'util.dart'...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/equals_matcher.dart
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file // 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. import 'feature_matcher.dart'; import 'interfaces.dart'; import 'util.dart'; /// Returns a matcher tha...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/error_matchers.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'type_matcher.dart'; /// A matcher for [ArgumentError]. const isArgumentError = TypeMatcher<Arg...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/map_matchers.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. import 'interfaces.dart'; import 'util.dart'; /// Returns a matcher which matches maps containing the ...
0
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher
mirrored_repositories/chat_ui_stream_iii_example/firebase/functions/build/packages/matcher/src/interfaces.dart
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file // 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. /// Matchers build up their error messages by appending to Description objects. /// /// This interface ...
0