| Index: lib/runtime/dart/_utils.js
|
| diff --git a/lib/runtime/dart/_utils.js b/lib/runtime/dart/_utils.js
|
| index 84ede046b14822ad6526d280f4c2cdd6ac55a244..3f28766107ba8a254bb4dff5ee8697b3ccfe81a3 100644
|
| --- a/lib/runtime/dart/_utils.js
|
| +++ b/lib/runtime/dart/_utils.js
|
| @@ -22,7 +22,7 @@ dart_library.library('dart/_utils', null, /* Imports */[
|
| function throwInternalError(message) {
|
| throw Error(message);
|
| }
|
| - function assert_(condition) {
|
| + function assert(condition) {
|
| if (!condition) throwInternalError("The compiler is broken: failed assert");
|
| }
|
| function getOwnNamesAndSymbols(obj) {
|
| @@ -95,7 +95,7 @@ dart_library.library('dart/_utils', null, /* Imports */[
|
| exports.StrongModeError = StrongModeError;
|
| exports.throwStrongModeError = throwStrongModeError;
|
| exports.throwInternalError = throwInternalError;
|
| - exports.assert_ = assert_;
|
| + exports.assert = assert;
|
| exports.getOwnNamesAndSymbols = getOwnNamesAndSymbols;
|
| exports.safeGetOwnProperty = safeGetOwnProperty;
|
| exports.defineLazyProperty = defineLazyProperty;
|
|
|