| 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 /** | 5 /** |
| 6 * An code reader that abstracts away the distinction between internal and user | 6 * An code reader that abstracts away the distinction between internal and user |
| 7 * libraries. | 7 * libraries. |
| 8 */ | 8 */ |
| 9 class LibraryReader { | 9 class LibraryReader { |
| 10 Map _specialLibs; | 10 Map _specialLibs; |
| 11 LibraryReader() { | 11 LibraryReader() { |
| 12 if (options.config == 'dev') { | 12 if (options.config == 'dev') { |
| 13 _specialLibs = { | 13 _specialLibs = { |
| 14 'dart:core': joinPaths(options.libDir, 'corelib.dart'), | 14 'dart:core': joinPaths(options.libDir, 'corelib.dart'), |
| 15 'dart:coreimpl': joinPaths(options.libDir, 'corelib_impl.dart'), | 15 'dart:coreimpl': joinPaths(options.libDir, 'corelib_impl.dart'), |
| 16 'dart:html': joinPaths(options.libDir, | 16 'dart:html': joinPaths(options.libDir, |
| 17 '../../lib/html/frog/html_frog.dart'), | 17 '../../lib/html/frog/html_frog.dart'), |
| 18 'dart:dom': joinPaths(options.libDir, | 18 'dart:dom': joinPaths(options.libDir, |
| 19 '../../lib/dom/frog/dom_frog.dart'), | 19 '../../lib/dom/frog/dom_frog.dart'), |
| 20 'dart:crypto': joinPaths(options.libDir, |
| 21 '../../lib/crypto/crypto.dart'), |
| 20 'dart:json': joinPaths(options.libDir, '../../lib/json/json_frog.dart'), | 22 'dart:json': joinPaths(options.libDir, '../../lib/json/json_frog.dart'), |
| 21 'dart:io': joinPaths(options.libDir, | 23 'dart:io': joinPaths(options.libDir, |
| 22 '../../lib/compiler/implementation/lib/io.dart'), | 24 '../../lib/compiler/implementation/lib/io.dart'), |
| 23 'dart:isolate': joinPaths(options.libDir, | 25 'dart:isolate': joinPaths(options.libDir, |
| 24 '../../lib/isolate/isolate_frog.dart'), | 26 '../../lib/isolate/isolate_frog.dart'), |
| 25 'dart:uri': joinPaths(options.libDir, '../../lib/uri/uri.dart'), | 27 'dart:uri': joinPaths(options.libDir, '../../lib/uri/uri.dart'), |
| 26 'dart:utf': joinPaths(options.libDir, '../../lib/utf/utf.dart'), | 28 'dart:utf': joinPaths(options.libDir, '../../lib/utf/utf.dart'), |
| 27 }; | 29 }; |
| 28 } else if (options.config == 'sdk') { | 30 } else if (options.config == 'sdk') { |
| 29 _specialLibs = { | 31 _specialLibs = { |
| 30 'dart:core': joinPaths(options.libDir, 'core/core_frog.dart'), | 32 'dart:core': joinPaths(options.libDir, 'core/core_frog.dart'), |
| 31 'dart:coreimpl': joinPaths(options.libDir, | 33 'dart:coreimpl': joinPaths(options.libDir, |
| 32 'coreimpl/coreimpl_frog.dart'), | 34 'coreimpl/coreimpl_frog.dart'), |
| 33 'dart:html': joinPaths(options.libDir, 'html/html_frog.dart'), | 35 'dart:html': joinPaths(options.libDir, 'html/html_frog.dart'), |
| 34 'dart:dom': joinPaths(options.libDir, 'dom/dom_frog.dart'), | 36 'dart:dom': joinPaths(options.libDir, 'dom/dom_frog.dart'), |
| 35 // TODO(rnystrom): How should we handle dart:io here? | 37 // TODO(rnystrom): How should we handle dart:io here? |
| 36 'dart:isolate': joinPaths(options.libDir, 'isolate/isolate_frog.dart'), | 38 'dart:isolate': joinPaths(options.libDir, 'isolate/isolate_frog.dart'), |
| 39 'dart:crypto': joinPaths(options.libDir, 'crypto/crypto.dart'), |
| 37 'dart:json': joinPaths(options.libDir, 'json/json_frog.dart'), | 40 'dart:json': joinPaths(options.libDir, 'json/json_frog.dart'), |
| 38 'dart:uri': joinPaths(options.libDir, 'uri/uri.dart'), | 41 'dart:uri': joinPaths(options.libDir, 'uri/uri.dart'), |
| 39 'dart:utf': joinPaths(options.libDir, 'utf/utf.dart'), | 42 'dart:utf': joinPaths(options.libDir, 'utf/utf.dart'), |
| 40 }; | 43 }; |
| 41 } else { | 44 } else { |
| 42 world.error('Invalid configuration ${options.config}'); | 45 world.error('Invalid configuration ${options.config}'); |
| 43 } | 46 } |
| 44 } | 47 } |
| 45 | 48 |
| 46 SourceFile readFile(String fullName) { | 49 SourceFile readFile(String fullName) { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 65 | 68 |
| 66 if (world.files.fileExists(filename)) { | 69 if (world.files.fileExists(filename)) { |
| 67 // TODO(jimhug): Should we cache these based on time stamps here? | 70 // TODO(jimhug): Should we cache these based on time stamps here? |
| 68 return new SourceFile(filename, world.files.readAll(filename)); | 71 return new SourceFile(filename, world.files.readAll(filename)); |
| 69 } else { | 72 } else { |
| 70 world.error('File not found: $filename', null); | 73 world.error('File not found: $filename', null); |
| 71 return new SourceFile(filename, ''); | 74 return new SourceFile(filename, ''); |
| 72 } | 75 } |
| 73 } | 76 } |
| 74 } | 77 } |
| OLD | NEW |