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

Unified Diff: sdk/lib/core/int.dart

Issue 23522037: one-liners for the remaining top-50 dart:core classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 months 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/core/int.dart
diff --git a/sdk/lib/core/int.dart b/sdk/lib/core/int.dart
index 2b1b70c0737e9449bc2616c7d232bbbb1af5e428..a5235bbd66b878001f36a7bf52fcdd6e277e4194 100644
--- a/sdk/lib/core/int.dart
+++ b/sdk/lib/core/int.dart
@@ -5,18 +5,15 @@
part of dart.core;
/**
- * Representation of Dart integers containing integer specific
- * operations and specialization of operations inherited from [num].
+ * An arbitrarily large integer.
*
- * Integers can be arbitrarily large in Dart.
- *
- * *Note however, that when compiling to JavaScript, integers are
+ * **Note:** When compiling to JavaScript, integers are
* implemented as JavaScript numbers. When compiling to JavaScript,
* integers are therefore restricted to 53 significant bits because
* all JavaScript numbers are double-precision floating point
* values. The behavior of the operators and methods in the [int]
* class therefore sometimes differs between the Dart VM and Dart code
- * compiled to JavaScript.*
+ * compiled to JavaScript.
*
* It is a compile-time error for a class to attempt to extend or implement int.
*/

Powered by Google App Engine
This is Rietveld 408576698