@@ -320,8 +320,9 @@ abstract class ServiceObject implements M.ObjectRef {
320
320
return obj;
321
321
}
322
322
323
- /// If [this] was created from a reference, load the full object
324
- /// from the service by calling [reload] . Else, return [this] .
323
+ /// If this [ServiceObject] was created from a reference, load the full
324
+ /// object from the service by calling [reload] . Else, return this
325
+ /// [ServiceObject] .
325
326
Future <ServiceObject > load () {
326
327
if (loaded) {
327
328
return new Future .value (this );
@@ -340,8 +341,8 @@ abstract class ServiceObject implements M.ObjectRef {
340
341
return isolate! .invokeRpcNoUpgrade ('getObject' , params);
341
342
}
342
343
343
- /// Reload [ this] . Returns a future which completes to [ this] or
344
- /// an exception.
344
+ /// Reload this [ServiceObject ] . Returns a future which completes to this
345
+ /// [ServiceObject] or an exception.
345
346
Future <ServiceObject > reload ({int count = kDefaultFieldLimit}) {
346
347
// TODO(turnidge): Checking for a null id should be part of the
347
348
// "immutable" check.
@@ -380,7 +381,8 @@ abstract class ServiceObject implements M.ObjectRef {
380
381
return _inProgressReload! ;
381
382
}
382
383
383
- /// Update [this] using [map] as a source. [map] can be a reference.
384
+ /// Update this [ServiceObject] using [map] as a source. [map] can be a
385
+ /// reference.
384
386
void updateFromServiceMap (Map map) {
385
387
assert (_isServiceMap (map));
386
388
@@ -4349,7 +4351,7 @@ class Code extends HeapObject implements M.Code {
4349
4351
}
4350
4352
}
4351
4353
4352
- /// Reload [ this] . Returns a future which completes to [ this] or an
4354
+ /// Reload this [Code ] . Returns a future which completes to ` this` or an
4353
4355
/// exception.
4354
4356
Future <ServiceObject > reload ({int count = kDefaultFieldLimit}) {
4355
4357
assert (kind != null );
@@ -4501,7 +4503,7 @@ class Code extends HeapObject implements M.Code {
4501
4503
}
4502
4504
}
4503
4505
4504
- /// Returns true if [address] is contained inside [ this] .
4506
+ /// Returns true if [address] is contained inside this [Code ] .
4505
4507
bool contains (int address) {
4506
4508
return (address >= startAddress) && (address < endAddress);
4507
4509
}
0 commit comments