| Index: pkg/dev_compiler/lib/js/amd/dart_sdk.js
|
| diff --git a/pkg/dev_compiler/lib/js/amd/dart_sdk.js b/pkg/dev_compiler/lib/js/amd/dart_sdk.js
|
| index 2ed85987c8edbc57be0739bd79db50c401100bc6..2b7e741645c898051b34226fe19bbdefa4304809 100644
|
| --- a/pkg/dev_compiler/lib/js/amd/dart_sdk.js
|
| +++ b/pkg/dev_compiler/lib/js/amd/dart_sdk.js
|
| @@ -1420,24 +1420,31 @@ define([], function() {
|
| return true;
|
| };
|
| dart.throwCastError = function(object, actual, type) {
|
| + debugger;
|
| dart.throw(new _js_helper.CastErrorImplementation(object, dart.typeName(actual), dart.typeName(type)));
|
| };
|
| dart.throwTypeError = function(object, actual, type) {
|
| + debugger;
|
| dart.throw(new _js_helper.TypeErrorImplementation(object, dart.typeName(actual), dart.typeName(type)));
|
| };
|
| dart.throwStrongModeCastError = function(object, actual, type) {
|
| + debugger;
|
| dart.throw(new _js_helper.StrongModeCastError(object, dart.typeName(actual), dart.typeName(type)));
|
| };
|
| dart.throwStrongModeTypeError = function(object, actual, type) {
|
| + debugger;
|
| dart.throw(new _js_helper.StrongModeTypeError(object, dart.typeName(actual), dart.typeName(type)));
|
| };
|
| dart.throwUnimplementedError = function(message) {
|
| + debugger;
|
| dart.throw(new core.UnimplementedError(message));
|
| };
|
| dart.throwAssertionError = function() {
|
| + debugger;
|
| dart.throw(new core.AssertionError());
|
| };
|
| dart.throwNullValueError = function() {
|
| + debugger;
|
| dart.throw(new core.NoSuchMethodError(null, new core.Symbol('<Unexpected Null Value>'), null, null, null));
|
| };
|
| dart.syncStar = function(gen, E, ...args) {
|
| @@ -1968,9 +1975,11 @@ define([], function() {
|
| return Object.getOwnPropertySymbols(obj);
|
| };
|
| dart.throwStrongModeError = function(message) {
|
| + debugger;
|
| throw new _js_helper.StrongModeErrorImplementation(message);
|
| };
|
| dart.throwInternalError = function(message) {
|
| + debugger;
|
| throw Error(message);
|
| };
|
| dart.getOwnNamesAndSymbols = function(obj) {
|
|
|