| Index: runtime/vm/longjump_test.cc
|
| diff --git a/runtime/vm/longjump_test.cc b/runtime/vm/longjump_test.cc
|
| index 4f48050d62e39d626169228f54b92dd53f59e18b..5e35c0cce0b1d66c7da71dac5af46d745ed3a276 100644
|
| --- a/runtime/vm/longjump_test.cc
|
| +++ b/runtime/vm/longjump_test.cc
|
| @@ -9,9 +9,8 @@
|
| namespace dart {
|
|
|
| static void LongJumpHelper(LongJumpScope* jump) {
|
| - const Error& error =
|
| - Error::Handle(LanguageError::New(
|
| - String::Handle(String::New("LongJumpHelper"))));
|
| + const Error& error = Error::Handle(
|
| + LanguageError::New(String::Handle(String::New("LongJumpHelper"))));
|
| jump->Jump(1, error);
|
| UNREACHABLE();
|
| }
|
|
|