| Index: lib/html/doc/nodoc-src/_FactoryProviders.dart
|
| diff --git a/lib/html/doc/nodoc-src/_FactoryProviders.dart b/lib/html/doc/nodoc-src/_FactoryProviders.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..2addeaf0b774c49afda89ce9beb4a97e8adc9185
|
| --- /dev/null
|
| +++ b/lib/html/doc/nodoc-src/_FactoryProviders.dart
|
| @@ -0,0 +1,22 @@
|
| +// 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.
|
| +
|
| +class _AudioContextFactoryProvider {
|
| +
|
| + factory AudioContext() => null;
|
| +}
|
| +
|
| +class _PointFactoryProvider {
|
| +
|
| + factory Point(num x, num y) => null;
|
| +}
|
| +
|
| +class _WebSocketFactoryProvider {
|
| +
|
| + factory WebSocket(String url) => null;
|
| +}
|
| +
|
| +class _TextFactoryProvider {
|
| + factory Text(String data) => null;
|
| +}
|
|
|