OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 part of dart.core; |
| 6 |
5 /** | 7 /** |
6 * Everything in Dart is an [Object]. | 8 * Everything in Dart is an [Object]. |
7 */ | 9 */ |
8 class Object { | 10 class Object { |
9 /** | 11 /** |
10 * Creates a new [Object] instance. | 12 * Creates a new [Object] instance. |
11 * | 13 * |
12 * [Object] instances have no meaningful state, and are only useful | 14 * [Object] instances have no meaningful state, and are only useful |
13 * through their identity. An [Object] instance is equal to itself | 15 * through their identity. An [Object] instance is equal to itself |
14 * only. | 16 * only. |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 * [noSuchMethodError]. | 58 * [noSuchMethodError]. |
57 */ | 59 */ |
58 external dynamic noSuchMethod(InvocationMirror invocation); | 60 external dynamic noSuchMethod(InvocationMirror invocation); |
59 | 61 |
60 /** | 62 /** |
61 * A representation of the runtime type of the object. | 63 * A representation of the runtime type of the object. |
62 */ | 64 */ |
63 external Type get runtimeType; | 65 external Type get runtimeType; |
64 } | 66 } |
65 | 67 |
OLD | NEW |