OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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.diagnostics.invariant; | 5 library dart2js.diagnostics.invariant; |
6 | 6 |
7 import 'spannable.dart'; | 7 import 'spannable.dart'; |
8 | 8 |
9 /** | 9 /** |
10 * If true, print a warning for each method that was resolved, but not | 10 * If true, print a warning for each method that was resolved, but not |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 } | 54 } |
55 } | 55 } |
56 if (!condition) { | 56 if (!condition) { |
57 if (message is Function) { | 57 if (message is Function) { |
58 message = message(); | 58 message = message(); |
59 } | 59 } |
60 throw new SpannableAssertionFailure(spannable, message); | 60 throw new SpannableAssertionFailure(spannable, message); |
61 } | 61 } |
62 return true; | 62 return true; |
63 } | 63 } |
64 | |
65 typedef void InternalErrorFunction(Spannable location, String message); | |
OLD | NEW |