| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 part of dart._runtime; | 4 part of dart._runtime; |
| 5 | 5 |
| 6 throwCastError(actual, type) => JS('', '''(() => { | 6 throwCastError(actual, type) => JS('', '''(() => { |
| 7 $throw_(new $CastErrorImplementation($actual, $type)); | 7 $throw_(new $CastErrorImplementation($actual, $type)); |
| 8 })()'''); | 8 })()'''); |
| 9 | 9 |
| 10 throwAssertionError() => JS('', '''(() => { | 10 throwAssertionError() => JS('', '''(() => { |
| 11 $throw_(new $AssertionError()); | 11 $throw_(new $AssertionError()); |
| 12 })()'''); | 12 })()'''); |
| 13 | 13 |
| 14 throwNullValueError() => JS('', '''(() => { | 14 throwNullValueError() => JS('', '''(() => { |
| 15 // TODO(vsm): Per spec, we should throw an NSM here. Technically, we ought | 15 // TODO(vsm): Per spec, we should throw an NSM here. Technically, we ought |
| 16 // to thread through method info, but that uglifies the code and can't | 16 // to thread through method info, but that uglifies the code and can't |
| 17 // actually be queried ... it only affects how the error is printed. | 17 // actually be queried ... it only affects how the error is printed. |
| 18 $throw_(new $NoSuchMethodError(null, | 18 $throw_(new $NoSuchMethodError(null, |
| 19 new $Symbol('<Unexpected Null Value>'), null, null, null)); | 19 new $Symbol('<Unexpected Null Value>'), null, null, null)); |
| 20 })()'''); | 20 })()'''); |
| OLD | NEW |