Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: tests/compiler/dart2js/memory_source_file_helper.dart

Issue 690103004: Move dart2js from sdk/lib/_internal/compiler to pkg/compiler (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 dart2js.test.memory_source_file_helper; 5 library dart2js.test.memory_source_file_helper;
6 6
7 import 'dart:async' show Future; 7 import 'dart:async' show Future;
8 export 'dart:io' show Platform; 8 export 'dart:io' show Platform;
9 9
10 export 'package:compiler/implementation/apiimpl.dart' 10 export 'package:compiler/src/apiimpl.dart'
11 show Compiler; 11 show Compiler;
12 12
13 export 'package:compiler/implementation/filenames.dart' 13 export 'package:compiler/src/filenames.dart'
14 show currentDirectory; 14 show currentDirectory;
15 15
16 import 'package:compiler/implementation/source_file.dart' 16 import 'package:compiler/src/source_file.dart'
17 show StringSourceFile; 17 show StringSourceFile;
18 18
19 import 'package:compiler/implementation/source_file_provider.dart' 19 import 'package:compiler/src/source_file_provider.dart'
20 show SourceFileProvider; 20 show SourceFileProvider;
21 21
22 export 'package:compiler/implementation/source_file_provider.dart' 22 export 'package:compiler/src/source_file_provider.dart'
23 show SourceFileProvider, FormattingDiagnosticHandler; 23 show SourceFileProvider, FormattingDiagnosticHandler;
24 24
25 class MemorySourceFileProvider extends SourceFileProvider { 25 class MemorySourceFileProvider extends SourceFileProvider {
26 Map<String, String> memorySourceFiles; 26 Map<String, String> memorySourceFiles;
27 27
28 MemorySourceFileProvider(Map<String, String> this.memorySourceFiles); 28 MemorySourceFileProvider(Map<String, String> this.memorySourceFiles);
29 29
30 Future<String> readStringFromUri(Uri resourceUri) { 30 Future<String> readStringFromUri(Uri resourceUri) {
31 if (resourceUri.scheme != 'memory') { 31 if (resourceUri.scheme != 'memory') {
32 return super.readStringFromUri(resourceUri); 32 return super.readStringFromUri(resourceUri);
33 } 33 }
34 String source = memorySourceFiles[resourceUri.path]; 34 String source = memorySourceFiles[resourceUri.path];
35 if (source == null) { 35 if (source == null) {
36 return new Future.error(new Exception('No such file $resourceUri')); 36 return new Future.error(new Exception('No such file $resourceUri'));
37 } 37 }
38 String resourceName = '$resourceUri'; 38 String resourceName = '$resourceUri';
39 this.sourceFiles[resourceName] = new StringSourceFile(resourceName, source); 39 this.sourceFiles[resourceName] = new StringSourceFile(resourceName, source);
40 return new Future.value(source); 40 return new Future.value(source);
41 } 41 }
42 42
43 Future<String> call(Uri resourceUri) => readStringFromUri(resourceUri); 43 Future<String> call(Uri resourceUri) => readStringFromUri(resourceUri);
44 } 44 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/memory_compiler.dart ('k') | tests/compiler/dart2js/message_kind_helper.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698