| 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  * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js |    8  * A bit flag used by [LibraryInfo] indicating that a library is used by dart2js | 
|    9  */ |    9  */ | 
|   10 const int DART2JS_PLATFORM = 1; |   10 const int DART2JS_PLATFORM = 1; | 
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  108       "_internal/compiler/implementation/lib/interceptors.dart", |  108       "_internal/compiler/implementation/lib/interceptors.dart", | 
|  109       category: "Internal", |  109       category: "Internal", | 
|  110       documented: false, |  110       documented: false, | 
|  111       platforms: DART2JS_PLATFORM), |  111       platforms: DART2JS_PLATFORM), | 
|  112  |  112  | 
|  113   "_foreign_helper": const LibraryInfo( |  113   "_foreign_helper": const LibraryInfo( | 
|  114       "_internal/compiler/implementation/lib/foreign_helper.dart", |  114       "_internal/compiler/implementation/lib/foreign_helper.dart", | 
|  115       category: "Internal", |  115       category: "Internal", | 
|  116       documented: false, |  116       documented: false, | 
|  117       platforms: DART2JS_PLATFORM), |  117       platforms: DART2JS_PLATFORM), | 
 |  118  | 
 |  119   "_isolate_helper": const LibraryInfo( | 
 |  120       "_internal/compiler/implementation/lib/isolate_helper.dart", | 
 |  121       category: "Internal", | 
 |  122       documented: false, | 
 |  123       platforms: DART2JS_PLATFORM), | 
|  118 }; |  124 }; | 
|  119  |  125  | 
|  120 /** |  126 /** | 
|  121  * Information about a "dart:" library. |  127  * Information about a "dart:" library. | 
|  122  */ |  128  */ | 
|  123 class LibraryInfo { |  129 class LibraryInfo { | 
|  124  |  130  | 
|  125   /** |  131   /** | 
|  126    * Path to the library's *.dart file relative to this file. |  132    * Path to the library's *.dart file relative to this file. | 
|  127    */ |  133    */ | 
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  171                     this.category: "Shared", |  177                     this.category: "Shared", | 
|  172                     this.dart2jsPath, |  178                     this.dart2jsPath, | 
|  173                     this.dart2jsPatchPath, |  179                     this.dart2jsPatchPath, | 
|  174                     this.implementation: false, |  180                     this.implementation: false, | 
|  175                     this.documented: true, |  181                     this.documented: true, | 
|  176                     this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); |  182                     this.platforms: DART2JS_PLATFORM | VM_PLATFORM}); | 
|  177  |  183  | 
|  178   bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; |  184   bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; | 
|  179   bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; |  185   bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; | 
|  180 } |  186 } | 
| OLD | NEW |