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

Side by Side Diff: test/dart_codegen/expect/core/int.dart

Issue 1148283010: Remove dart backend (Closed) Base URL: https://github.com/dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 6 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
OLDNEW
(Empty)
1 part of dart.core;
2 abstract class int extends num {external const factory int.fromEnvironment(Stri ng name, {
3 int defaultValue}
4 );
5 int operator &(int other);
6 int operator |(int other);
7 int operator ^(int other);
8 int operator ~();
9 int operator <<(int shiftAmount);
10 int operator >>(int shiftAmount);
11 bool get isEven;
12 bool get isOdd;
13 int get bitLength;
14 int toUnsigned(int width);
15 int toSigned(int width);
16 int operator -();
17 int abs();
18 int get sign;
19 int round();
20 int floor();
21 int ceil();
22 int truncate();
23 double roundToDouble();
24 double floorToDouble();
25 double ceilToDouble();
26 double truncateToDouble();
27 String toString();
28 String toRadixString(int radix);
29 external static int parse(String source, {
30 int radix, int onError(String source)}
31 );
32 }
OLDNEW
« no previous file with comments | « test/dart_codegen/expect/core/identical.dart ('k') | test/dart_codegen/expect/core/invocation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698