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

Unified Diff: vm/raw_object.h

Issue 9839087: Update comment describing the length field in class Bigint. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/raw_object.h
===================================================================
--- vm/raw_object.h (revision 5801)
+++ vm/raw_object.h (working copy)
@@ -896,14 +896,14 @@
class RawBigint : public RawInteger {
RAW_HEAP_OBJECT_IMPLEMENTATION(Bigint);
- // Actual length at the time of allocation (later we may clamp the
- // operational length but we need to maintain a consistent object
- // length so that the object can be traversed during GC).
+ // Actual length in chunks at the time of allocation (later we may
+ // clamp the operational length but we need to maintain a consistent
+ // object length so that the object can be traversed during GC).
intptr_t allocated_length_;
- // Operation length of the bigint object, clamping can cause this length
- // to be reduced. If the signed_length_ is negative then the number
- // is negative.
+ // Operational length in chunks of the bigint object, clamping can
+ // cause this length to be reduced. If the signed_length_ is
+ // negative then the number is negative.
intptr_t signed_length_;
// A sequence of Chunks (typedef in Bignum) representing bignum digits.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698