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

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

Issue 1235563003: Add interfaces for a new compiler API. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Rebased Created 5 years, 5 months 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
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/src/apiimpl.dart' 10 export 'package:compiler/src/apiimpl.dart'
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 SourceFile getSourceFile(Uri resourceUri) { 45 SourceFile getSourceFile(Uri resourceUri) {
46 if (resourceUri.scheme != 'memory') { 46 if (resourceUri.scheme != 'memory') {
47 return super.getSourceFile(resourceUri); 47 return super.getSourceFile(resourceUri);
48 } 48 }
49 String source = memorySourceFiles[resourceUri.path]; 49 String source = memorySourceFiles[resourceUri.path];
50 if (source == null) { 50 if (source == null) {
51 throw new Exception('No such file $resourceUri'); 51 throw new Exception('No such file $resourceUri');
52 } 52 }
53 return new StringSourceFile.fromUri(resourceUri, source); 53 return new StringSourceFile.fromUri(resourceUri, source);
54 } 54 }
55
56 @override
57 Future readFromUri(Uri resourceUri) => readStringFromUri(resourceUri);
55 } 58 }
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