Index: src/liveedit.cc |
diff --git a/src/liveedit.cc b/src/liveedit.cc |
index 6fb917caeaae72046bdbf812b2c254003881bb81..916acc266c1a1d97a97e508c265023f3fc62742b 100644 |
--- a/src/liveedit.cc |
+++ b/src/liveedit.cc |
@@ -55,10 +55,7 @@ void SetElementSloppy(Handle<JSObject> object, |
// Ignore return value from SetElement. It can only be a failure if there |
// are element setters causing exceptions and the debugger context has none |
// of these. |
- Handle<Object> no_failure = |
- JSObject::SetElement(object, index, value, NONE, SLOPPY); |
- ASSERT(!no_failure.is_null()); |
- USE(no_failure); |
+ JSObject::SetElement(object, index, value, NONE, SLOPPY).Assert(); |
} |