| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 #library('libraries'); | 5 #library('libraries'); |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Mapping of "dart:" library name (e.g. "core") to information about that libra
ry. | 8 * Mapping of "dart:" library name (e.g. "core") to information about that libra
ry. |
| 9 * This information is structured such that Dart Editor can parse this file | 9 * This information is structured such that Dart Editor can parse this file |
| 10 * and extract the necessary information without executing it | 10 * and extract the necessary information without executing it |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 * and that tools like Dart Editor should not show these libraries | 132 * and that tools like Dart Editor should not show these libraries |
| 133 * in a list of all libraries unless the user specifically asks the tool to do
so. | 133 * in a list of all libraries unless the user specifically asks the tool to do
so. |
| 134 * (e.g. "coreimpl" contains implementation for the "core" library). | 134 * (e.g. "coreimpl" contains implementation for the "core" library). |
| 135 */ | 135 */ |
| 136 final bool implementation; | 136 final bool implementation; |
| 137 | 137 |
| 138 const LibraryInfo(this.path, [this.category = "Shared", | 138 const LibraryInfo(this.path, [this.category = "Shared", |
| 139 this.dart2jsPath, this.dart2jsPatchPath, | 139 this.dart2jsPath, this.dart2jsPatchPath, |
| 140 this.implementation = false, this.internal = false]); | 140 this.implementation = false, this.internal = false]); |
| 141 } | 141 } |
| OLD | NEW |