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

Unified Diff: lib/core/bigint.dart

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 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
« no previous file with comments | « lib/convert/convert_patch.dart ('k') | lib/core/core_patch.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/core/bigint.dart
diff --git a/lib/core/bigint.dart b/lib/core/bigint.dart
index 6060ac62d31d5ae177e38af5bddeeee334d1a3e8..9ae0ac5ca0ea2f110aae7cf5a4a250ebdef4e966 100644
--- a/lib/core/bigint.dart
+++ b/lib/core/bigint.dart
@@ -56,9 +56,9 @@ class _Uint32Digits {
operator [](int index) => _getUint32(_backing, index);
operator []=(int index, int value) => _setUint32(_backing, index, value);
- @fletch.native external static _allocate(int length);
- @fletch.native external static _getUint32(backing, int index);
- @fletch.native external static _setUint32(backing, int index, int value);
+ @dartino.native external static _allocate(int length);
+ @dartino.native external static _getUint32(backing, int index);
+ @dartino.native external static _setUint32(backing, int index, int value);
}
// A big integer number is represented by a sign, an array of 32-bit unsigned
« no previous file with comments | « lib/convert/convert_patch.dart ('k') | lib/core/core_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698