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; | 5 var dart; |
6 (function (dart) { | 6 (function (dart) { |
7 var defineProperty = Object.defineProperty; | 7 var defineProperty = Object.defineProperty; |
8 var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; | 8 var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; |
9 var getOwnPropertyNames = Object.getOwnPropertyNames; | 9 var getOwnPropertyNames = Object.getOwnPropertyNames; |
10 | 10 |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
348 var init = this[name]; | 348 var init = this[name]; |
349 var result = void 0; | 349 var result = void 0; |
350 if (init) result = init.apply(this, arguments); | 350 if (init) result = init.apply(this, arguments); |
351 return result === void 0 ? this : result; | 351 return result === void 0 ? this : result; |
352 }; | 352 }; |
353 // The initializer for dart.Object | 353 // The initializer for dart.Object |
354 dart.Object.prototype.Object = function() {}; | 354 dart.Object.prototype.Object = function() {}; |
355 dart.Object.prototype.constructor = dart.Object; | 355 dart.Object.prototype.constructor = dart.Object; |
356 | 356 |
357 })(dart || (dart = {})); | 357 })(dart || (dart = {})); |
OLD | NEW |