Chromium Code Reviews| Index: tests/language/error_stacktrace_test.dart |
| =================================================================== |
| --- tests/language/error_stacktrace_test.dart (revision 35875) |
| +++ tests/language/error_stacktrace_test.dart (working copy) |
| @@ -86,7 +86,7 @@ |
| try { |
| // There should be no stackTrace in this normal excpetion object. |
| // We should get a NoSuchMethodError. |
| - var trace = e.stackTrace; |
| + var trace = e.stackTrace; /// 01: static type warning |
|
Brian Wilkerson
2014/05/08 17:49:58
As I understand it, this means that there will be
siva
2014/05/08 18:26:25
Removed 01.
On 2014/05/08 17:49:58, Brian Wilkers
|
| } on NoSuchMethodError catch (e) { |
| Expect.isNotNull(e.stackTrace, "Error needs a stackTrace on throw"); |
| } |