| Index: third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js b/third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js
|
| index 97569ca18e5ff854f50b19a26d564cfa39e03632..4616803ecbd56845fb1e5b16faddb001e4f56e82 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/formatter_worker/JavaScriptFormatter.js
|
| @@ -299,7 +299,7 @@ WebInspector.JavaScriptFormatter.prototype = {
|
| if (node.consequent.type !== "BlockStatement")
|
| return "<";
|
| }
|
| - } else if (node.type === "BreakStatement" || node.type === "ThrowStatement" || node.type === "ReturnStatement" || node.type === "ExpressionStatement") {
|
| + } else if (node.type === "BreakStatement" || node.type === "ContinueStatement" || node.type === "ThrowStatement" || node.type === "ReturnStatement" || node.type === "ExpressionStatement") {
|
| return "n";
|
| }
|
| return "";
|
|
|