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

Unified Diff: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-9-expected.txt

Issue 2823233004: DevTools: make JSFormatter aware of parenthesized expressions (Closed)
Patch Set: ac Created 3 years, 8 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
Index: third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-9-expected.txt
diff --git a/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-9-expected.txt b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-9-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..83a5cca771339f02d2a9a7908a398bccc8c77e63
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/inspector/sources/pretty-print-javascript-9-expected.txt
@@ -0,0 +1,17 @@
+Verifies JavaScript pretty-printing functionality.
+
+
+Running: parenthesizedExpressions
+====== 8< ------
+if ((a))
+ ((b));
+else
+ (c);
+
+------ >8 ======
+Correct mapping for <if>
+Correct mapping for <((a))>
+Correct mapping for <((b));>
+Correct mapping for <else>
+Correct mapping for <(c)>
+

Powered by Google App Engine
This is Rietveld 408576698