OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 /// Contains logic to initialize web_components apps during development. This | 5 /// Contains logic to initialize web_components apps during development. This |
6 /// implementation uses dart:mirrors to load each library as they are discovered | 6 /// implementation uses dart:mirrors to load each library as they are discovered |
7 /// through HTML imports. This is only meant to be used during development in | 7 /// through HTML imports. This is only meant to be used during development in |
8 /// dartium, and the web_components transformers replace this implementation | 8 /// dartium, and the web_components transformers replace this implementation |
9 /// for deployment. | 9 /// for deployment. |
10 library web_components.src.mirror_initializer; | 10 library web_components.src.mirror_initializer; |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 Entry point: $entryPath | 188 Entry point: $entryPath |
189 Owner document: ${import.ownerDocument.baseUri} | 189 Owner document: ${import.ownerDocument.baseUri} |
190 Current import: ${import.outerHtml} | 190 Current import: ${import.outerHtml} |
191 Corrected import: ${correctedImport.outerHtml} | 191 Corrected import: ${correctedImport.outerHtml} |
192 | 192 |
193 For more information, please see: | 193 For more information, please see: |
194 https://www.dartlang.org/polymer/app-directories.html#into-a-non-dart-non-entry-
point | 194 https://www.dartlang.org/polymer/app-directories.html#into-a-non-dart-non-entry-
point |
195 '''); | 195 '''); |
196 return false; | 196 return false; |
197 } | 197 } |
OLD | NEW |