| 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 | 4 |
| 5 var dart_core; | 5 var dart_core; |
| 6 (function (dart_core) { | 6 (function (dart_core) { |
| 7 var Object = (function () { | 7 var Object = (function () { |
| 8 var constructor = function Object() {}; | 8 var constructor = function Object() {}; |
| 9 | 9 |
| 10 constructor.prototype.toString = function toString() { | 10 constructor.prototype.toString = function toString() { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 return NoSuchMethodError; | 40 return NoSuchMethodError; |
| 41 })(); | 41 })(); |
| 42 dart_core.NoSuchMethodError = NoSuchMethodError; | 42 dart_core.NoSuchMethodError = NoSuchMethodError; |
| 43 | 43 |
| 44 // Class UnimplementedError | 44 // Class UnimplementedError |
| 45 var UnimplementedError = (function () { | 45 var UnimplementedError = (function () { |
| 46 // TODO(vsm): Implement. | 46 // TODO(vsm): Implement. |
| 47 function UnimplementedError(message) { | 47 function UnimplementedError(message) { |
| 48 this.message = (message != void 0) ? message : null; | 48 this.message = (message != void 0) ? message : null; |
| 49 } | 49 } |
| 50 return NoSuchMethodError; | 50 return UnimplementedError; |
| 51 })(); | 51 })(); |
| 52 dart_core.UnimplementedError = UnimplementedError; | 52 dart_core.UnimplementedError = UnimplementedError; |
| 53 })(dart_core || (dart_core = {})); | 53 })(dart_core || (dart_core = {})); |
| OLD | NEW |