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

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

Issue 23904009: added one-liners: Node, EventTarget, Canvas, HttpClient, HttpServer etc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: lgtm'ed by katwa 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/core/stopwatch.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; 5 part of dart.core;
6 6
7 // TODO: Convert this abstract class into a concrete class double 7 // TODO: Convert this abstract class into a concrete class double
8 // that uses the patch class functionality to account for the 8 // that uses the patch class functionality to account for the
9 // different platform implementations. 9 // different platform implementations.
10 10
11 /** 11 /**
12 * A double-precision floating point number.
13 *
12 * Representation of Dart doubles containing double specific constants 14 * Representation of Dart doubles containing double specific constants
13 * and operations and specializations of operations inherited from 15 * and operations and specializations of operations inherited from
14 * [num]. Dart doubles are 64-bit floating-point numbers as specified in the 16 * [num]. Dart doubles are 64-bit floating-point numbers as specified in the
15 * IEEE 754 standard. 17 * IEEE 754 standard.
16 * 18 *
17 * The [double] type is contagious. Operations on [double]s return 19 * The [double] type is contagious. Operations on [double]s return
18 * [double] results. 20 * [double] results.
19 * 21 *
20 * It is a compile-time error for a class to attempt to extend or implement 22 * It is a compile-time error for a class to attempt to extend or implement
21 * double. 23 * double.
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 * "0." 166 * "0."
165 * ".0" 167 * ".0"
166 * "-1.e3" 168 * "-1.e3"
167 * "1234E+7" 169 * "1234E+7"
168 * "+.12e-9" 170 * "+.12e-9"
169 * "-NaN" 171 * "-NaN"
170 */ 172 */
171 external static double parse(String source, 173 external static double parse(String source,
172 [double onError(String source)]); 174 [double onError(String source)]);
173 } 175 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/core/stopwatch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698