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

Unified Diff: runtime/lib/math_patch.dart

Issue 2705593002: Fix various nits in VM patch files. (Closed)
Patch Set: Created 3 years, 10 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: runtime/lib/math_patch.dart
diff --git a/runtime/lib/math_patch.dart b/runtime/lib/math_patch.dart
index 7d5e752135c46c515809ad2e15afde4ca417a82f..1838df48fb7873278b84d2dab9803f882bcba487 100644
--- a/runtime/lib/math_patch.dart
+++ b/runtime/lib/math_patch.dart
@@ -103,7 +103,7 @@ class _Random implements Random {
static const _kSTATE_LO = 0;
static const _kSTATE_HI = 1; // Unused in Dart code.
- _Random._withState(Uint32List this._state);
+ _Random._withState(this._state);
// The algorithm used here is Multiply with Carry (MWC) with a Base b = 2^32.
// http://en.wikipedia.org/wiki/Multiply-with-carry

Powered by Google App Engine
This is Rietveld 408576698