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

Unified Diff: pkg/analyzer/lib/src/summary/format.dart

Issue 1612863002: Serialize long integers as unsigned 32-bit pieces. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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 | « no previous file | pkg/analyzer/lib/src/summary/summarize_const_expr.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/summary/format.dart
diff --git a/pkg/analyzer/lib/src/summary/format.dart b/pkg/analyzer/lib/src/summary/format.dart
index ccd5ee6caacf4332feeeffca5bc2fa22fbd4def9..0597fea34504ea8f5625de1e262382f192fbd487 100644
--- a/pkg/analyzer/lib/src/summary/format.dart
+++ b/pkg/analyzer/lib/src/summary/format.dart
@@ -1973,9 +1973,9 @@ class UnlinkedConstBuilder extends Object with _UnlinkedConstMixin implements Un
List<int> get ints => _ints ?? const <int>[];
/**
- * Sequence of 32-bit integers consumed by the operations `pushArgument`,
- * `pushInt`, `shiftOr`, `concatenate`, `invokeConstructor`, `makeList`, and
- * `makeMap`.
+ * Sequence of unsigned 32-bit integers consumed by the operations
+ * `pushArgument`, `pushInt`, `shiftOr`, `concatenate`, `invokeConstructor`,
+ * `makeList`, and `makeMap`.
*/
void set ints(List<int> _value) {
assert(!_finished);
@@ -2089,9 +2089,9 @@ abstract class UnlinkedConst extends base.SummaryClass {
List<UnlinkedConstOperation> get operations;
/**
- * Sequence of 32-bit integers consumed by the operations `pushArgument`,
- * `pushInt`, `shiftOr`, `concatenate`, `invokeConstructor`, `makeList`, and
- * `makeMap`.
+ * Sequence of unsigned 32-bit integers consumed by the operations
+ * `pushArgument`, `pushInt`, `shiftOr`, `concatenate`, `invokeConstructor`,
+ * `makeList`, and `makeMap`.
*/
List<int> get ints;
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/summary/summarize_const_expr.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698