| OLD | NEW |
| 1 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
| 3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 # The platform for running dart on the web with dart2js. | 5 # The platform for running dart on the web with dart2js. |
| 6 # | 6 # |
| 7 # Includes dart:html and associated libraries. | 7 # Includes dart:html and associated libraries. |
| 8 # | 8 # |
| 9 # This configuration used to exclude dart:io, but we made it OK to import it. | 9 # This configuration used to exclude dart:io, but we made it OK to import it. |
| 10 # This is allowed as a stopgap measure until config-specific imports are | 10 # This is allowed as a stopgap measure until config-specific imports are |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 developer: developer/developer.dart | 26 developer: developer/developer.dart |
| 27 html: html/dart2js/html_dart2js.dart | 27 html: html/dart2js/html_dart2js.dart |
| 28 html_common: html/html_common/html_common_dart2js.dart | 28 html_common: html/html_common/html_common_dart2js.dart |
| 29 indexed_db: indexed_db/dart2js/indexed_db_dart2js.dart | 29 indexed_db: indexed_db/dart2js/indexed_db_dart2js.dart |
| 30 io: unsupported:io/io.dart | 30 io: unsupported:io/io.dart |
| 31 isolate: isolate/isolate.dart | 31 isolate: isolate/isolate.dart |
| 32 js: js/dart2js/js_dart2js.dart | 32 js: js/dart2js/js_dart2js.dart |
| 33 js_util: js_util/dart2js/js_util_dart2js.dart | 33 js_util: js_util/dart2js/js_util_dart2js.dart |
| 34 math: math/math.dart | 34 math: math/math.dart |
| 35 mirrors: mirrors/mirrors.dart | 35 mirrors: mirrors/mirrors.dart |
| 36 nativewrappers: html/dart2js/nativewrappers.dart | 36 nativewrappers: html/dartium/nativewrappers.dart |
| 37 typed_data: typed_data/typed_data.dart | 37 typed_data: typed_data/typed_data.dart |
| 38 _native_typed_data: _internal/js_runtime/lib/native_typed_data.dart | 38 _native_typed_data: _internal/js_runtime/lib/native_typed_data.dart |
| 39 svg: svg/dart2js/svg_dart2js.dart | 39 svg: svg/dart2js/svg_dart2js.dart |
| 40 web_audio: web_audio/dart2js/web_audio_dart2js.dart | 40 web_audio: web_audio/dart2js/web_audio_dart2js.dart |
| 41 web_gl: web_gl/dart2js/web_gl_dart2js.dart | 41 web_gl: web_gl/dart2js/web_gl_dart2js.dart |
| 42 web_sql: web_sql/dart2js/web_sql_dart2js.dart | 42 web_sql: web_sql/dart2js/web_sql_dart2js.dart |
| 43 _internal: internal/internal.dart | 43 _internal: internal/internal.dart |
| 44 _js_helper: _internal/js_runtime/lib/js_helper.dart | 44 _js_helper: _internal/js_runtime/lib/js_helper.dart |
| 45 _interceptors: _internal/js_runtime/lib/interceptors.dart | 45 _interceptors: _internal/js_runtime/lib/interceptors.dart |
| 46 _foreign_helper: _internal/js_runtime/lib/foreign_helper.dart | 46 _foreign_helper: _internal/js_runtime/lib/foreign_helper.dart |
| 47 _isolate_helper: _internal/js_runtime/lib/isolate_helper.dart | 47 _isolate_helper: _internal/js_runtime/lib/isolate_helper.dart |
| 48 _js_mirrors: _internal/js_runtime/lib/js_mirrors.dart | 48 _js_mirrors: _internal/js_runtime/lib/js_mirrors.dart |
| 49 _js_names: _internal/js_runtime/lib/js_names.dart | 49 _js_names: _internal/js_runtime/lib/js_names.dart |
| 50 _js_primitives: _internal/js_runtime/lib/js_primitives.dart | 50 _js_primitives: _internal/js_runtime/lib/js_primitives.dart |
| 51 _js_embedded_names: _internal/js_runtime/lib/shared/embedded_names.dart | 51 _js_embedded_names: _internal/js_runtime/lib/shared/embedded_names.dart |
| 52 _async_await_error_codes: _internal/js_runtime/lib/shared/async_await_error_code
s.dart | 52 _async_await_error_codes: _internal/js_runtime/lib/shared/async_await_error_code
s.dart |
| 53 _metadata: html/html_common/metadata.dart | 53 _metadata: html/html_common/metadata.dart |
| 54 _mirror_helper: unsupported: | 54 _mirror_helper: unsupported: |
| OLD | NEW |