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

Unified Diff: runtime/observatory/lib/object_graph.dart

Issue 1687293003: Rewrite asyncStepOver to use await (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/debugger.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/object_graph.dart
diff --git a/runtime/observatory/lib/object_graph.dart b/runtime/observatory/lib/object_graph.dart
index e70570e6407978b18e04ffe603cfedf030e22817..8b491e81c3003787d6d3e9b112b36a468e6cc191 100644
--- a/runtime/observatory/lib/object_graph.dart
+++ b/runtime/observatory/lib/object_graph.dart
@@ -8,8 +8,6 @@ import 'dart:async';
import 'dart:collection';
import 'dart:typed_data';
-import 'package:logging/logging.dart';
-
class _JenkinsSmiHash {
static int combine(int hash, int value) {
hash = 0x1fffffff & (hash + value);
@@ -499,7 +497,7 @@ class ObjectGraph {
if (childId != null) {
succs[edge] = childId;
edge++;
- } else {
+ } else {
// Reference into VM isolate's heap.
}
stream.readUnsigned();
@@ -519,7 +517,6 @@ class ObjectGraph {
void _dfs() {
var N = _N;
- var E = _E;
var firstSuccs = _firstSuccs;
var succs = _succs;
@@ -531,7 +528,6 @@ class ObjectGraph {
var parent = new Uint32List(N + 1);
var dfsNumber = 0;
- var dfsCount = 0;
var stackTop = 0;
var root = 1;
« no previous file with comments | « no previous file | runtime/observatory/lib/src/elements/debugger.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698