Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(292)

Side by Side Diff: sdk/lib/core/object.dart

Issue 11419032: Switch libraries to using new tags. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated to tip of tree. Changed library names to dart.x Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sdk/lib/core/num.dart ('k') | sdk/lib/core/options.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « sdk/lib/core/num.dart ('k') | sdk/lib/core/options.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698