| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 import 'dart:async' show Future; | 5 import 'dart:async' show Future; |
| 6 | 6 |
| 7 import 'dart:io' show Directory, File, Platform; | 7 import 'dart:io' show Directory, File, Platform; |
| 8 | 8 |
| 9 import 'dart:isolate' show Isolate; | 9 import 'dart:isolate' show Isolate; |
| 10 | 10 |
| 11 import 'package:async_helper/async_helper.dart' show asyncEnd, asyncStart; | 11 import 'package:async_helper/async_helper.dart' show asyncEnd, asyncStart; |
| 12 | 12 |
| 13 import 'package:front_end/src/fasta/testing/kernel_chain.dart' | 13 import 'package:front_end/src/fasta/patched_sdk_location.dart' |
| 14 show computePatchedSdk; | 14 show computePatchedSdk; |
| 15 | 15 |
| 16 import 'package:testing/testing.dart' show StdioProcess; | 16 import 'package:testing/testing.dart' show StdioProcess; |
| 17 | 17 |
| 18 import 'package:kernel/binary/ast_from_binary.dart' show BinaryBuilder; | 18 import 'package:kernel/binary/ast_from_binary.dart' show BinaryBuilder; |
| 19 | 19 |
| 20 import 'package:kernel/ast.dart' show Program; | 20 import 'package:kernel/ast.dart' show Program; |
| 21 | 21 |
| 22 import 'package:kernel/text/ast_to_text.dart' show programToString; | 22 import 'package:kernel/text/ast_to_text.dart' show programToString; |
| 23 | 23 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 } | 106 } |
| 107 | 107 |
| 108 class ComparisonFailed { | 108 class ComparisonFailed { |
| 109 final Uri a; | 109 final Uri a; |
| 110 final Uri b; | 110 final Uri b; |
| 111 | 111 |
| 112 ComparisonFailed(this.a, this.b); | 112 ComparisonFailed(this.a, this.b); |
| 113 | 113 |
| 114 toString() => "Error: $a is different from $b"; | 114 toString() => "Error: $a is different from $b"; |
| 115 } | 115 } |
| OLD | NEW |