Index: third_party/WebKit/LayoutTests/webaudio/tools/layout-test-tidy.js |
diff --git a/third_party/WebKit/LayoutTests/webaudio/tools/layout-test-tidy.js b/third_party/WebKit/LayoutTests/webaudio/tools/layout-test-tidy.js |
index bffab4bc075da8410e10cce0e191affa68bd685e..4f3bbbdfcbbbb2aa3607811d216047b09f081117 100644 |
--- a/third_party/WebKit/LayoutTests/webaudio/tools/layout-test-tidy.js |
+++ b/third_party/WebKit/LayoutTests/webaudio/tools/layout-test-tidy.js |
@@ -353,8 +353,8 @@ class TidyTask { |
Util.logAndExit('TidyTask.processHTML_', 'Invalid <script> element.'); |
// Start with clang-foramt, then HTMLTidy and RegExp substitution. |
- Module.runClangFormat( |
- scriptElement.textContent, OPTIONS.ClangFormat, 3, this) |
+ Module |
+ .runClangFormat(scriptElement.textContent, OPTIONS.ClangFormat, 3, this) |
Raymond Toy
2017/05/23 16:47:18
Does this mean that you forgot to run tidy on the
|
.then((formattedCodeString) => { |
// Replace the original code with clang-formatted code. |
scriptElement.textContent = formattedCodeString; |