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

Unified Diff: src/inspector/debugger-script.js

Issue 2687013003: Revert of [debugger] expose side-effect free evaluate to inspector. (Closed)
Patch Set: Created 3 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 | « src/flag-definitions.h ('k') | src/inspector/debugger_script_externs.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/inspector/debugger-script.js
diff --git a/src/inspector/debugger-script.js b/src/inspector/debugger-script.js
index a0719ed493d246abcfae581fbf20a85757a1b4ac..f1c41ac8092db584519bacb6e997ff64be356939 100644
--- a/src/inspector/debugger-script.js
+++ b/src/inspector/debugger-script.js
@@ -445,12 +445,11 @@
/**
* @param {string} expression
- * @param {boolean} throwOnSideEffect
* @return {*}
*/
- function evaluate(expression, throwOnSideEffect)
- {
- return frameMirror.evaluate(expression, throwOnSideEffect).value();
+ function evaluate(expression)
+ {
+ return frameMirror.evaluate(expression).value();
}
/** @return {undefined} */
« no previous file with comments | « src/flag-definitions.h ('k') | src/inspector/debugger_script_externs.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698