| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 org_dartlang_compiler_util; | 5 library org_dartlang_compiler_util; |
| 6 | 6 |
| 7 import 'util_implementation.dart'; | 7 import 'util_implementation.dart'; |
| 8 | 8 |
| 9 part 'link.dart'; | 9 part 'link.dart'; |
| 10 | 10 |
| 11 /** | 11 /** |
| 12 * Tagging interface for classes from which source spans can be generated. | 12 * Tagging interface for classes from which source spans can be generated. |
| 13 */ | 13 */ |
| 14 // TODO(johnniwinther): Find a better name. | 14 // TODO(johnniwinther): Find a better name. |
| 15 // TODO(ahe): How about "Bolt"? |
| 15 abstract class Spannable {} | 16 abstract class Spannable {} |
| 17 |
| 18 class SpannableAssertionFailure { |
| 19 final Spannable node; |
| 20 final String message; |
| 21 SpannableAssertionFailure(this.node, this.message); |
| 22 |
| 23 String toString() => 'compiler crashed.'; |
| 24 } |
| OLD | NEW |