| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 dartino_compiler.test.incremental_test_runner; | 5 library dartino_compiler.test.incremental_test_runner; |
| 6 | 6 |
| 7 import 'dart:io' hide | 7 import 'dart:io' hide |
| 8 exitCode, | 8 exitCode, |
| 9 stderr, | 9 stderr, |
| 10 stdin, | 10 stdin, |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 IncrementalCompiler; | 41 IncrementalCompiler; |
| 42 | 42 |
| 43 import 'package:dartino_compiler/vm_commands.dart' show | 43 import 'package:dartino_compiler/vm_commands.dart' show |
| 44 VmCommand; | 44 VmCommand; |
| 45 | 45 |
| 46 import 'package:dartino_compiler/src/dartino_compiler_implementation.dart' show | 46 import 'package:dartino_compiler/src/dartino_compiler_implementation.dart' show |
| 47 OutputProvider; | 47 OutputProvider; |
| 48 | 48 |
| 49 import 'package:dartino_compiler/dartino_system.dart' show | 49 import 'package:dartino_compiler/dartino_system.dart' show |
| 50 DartinoDelta, | 50 DartinoDelta, |
| 51 DartinoFunction, | |
| 52 DartinoSystem; | 51 DartinoSystem; |
| 53 | 52 |
| 54 import 'package:dartino_compiler/src/dartino_compiler_options.dart' show | 53 import 'package:dartino_compiler/src/dartino_compiler_options.dart' show |
| 55 DartinoCompilerOptions, | 54 DartinoCompilerOptions, |
| 56 IncrementalMode; | 55 IncrementalMode; |
| 57 | 56 |
| 58 import 'program_result.dart' show | 57 import 'program_result.dart' show |
| 59 EncodedResult, | 58 EncodedResult, |
| 60 ProgramResult; | 59 ProgramResult; |
| 61 | 60 |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 | 334 |
| 336 Future<List<int>> readUtf8BytesFromUri(Uri uri) { | 335 Future<List<int>> readUtf8BytesFromUri(Uri uri) { |
| 337 throw "not supported"; | 336 throw "not supported"; |
| 338 } | 337 } |
| 339 | 338 |
| 340 static String readCachedFile(Uri uri) { | 339 static String readCachedFile(Uri uri) { |
| 341 return cachedFiles.putIfAbsent( | 340 return cachedFiles.putIfAbsent( |
| 342 uri, () => new File.fromUri(uri).readAsStringSync()); | 341 uri, () => new File.fromUri(uri).readAsStringSync()); |
| 343 } | 342 } |
| 344 } | 343 } |
| OLD | NEW |