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

Unified Diff: lib/runtime/dart/_debugger.js

Issue 1752193002: Add a few more known non-null cases (Closed) Base URL: git@github.com:dart-lang/dev_compiler.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 | lib/runtime/dart/_internal.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_debugger.js
diff --git a/lib/runtime/dart/_debugger.js b/lib/runtime/dart/_debugger.js
index 0f7507a442a0ac8a72cbe78cc4f437dfba66d3fb..ddaa60a5596b489a0bee855bbcf991e7ae08bdf8 100644
--- a/lib/runtime/dart/_debugger.js
+++ b/lib/runtime/dart/_debugger.js
@@ -197,7 +197,7 @@ dart_library.library('dart/_debugger', null, /* Imports */[
this[_simpleFormatter] = simpleFormatter;
}
header(object, config) {
- if (dart.notNull(core.identical(config, skipDartConfig))) return null;
+ if (core.identical(config, skipDartConfig)) return null;
let c = this[_simpleFormatter].preview(object);
if (c == null) return null;
let element = new JsonMLElement('span');
« no previous file with comments | « no previous file | lib/runtime/dart/_internal.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698