From 0c8733df239deda7edce0c89b098f61040c9e1f2 Mon Sep 17 00:00:00 2001 From: overlookmotel <557937+overlookmotel@users.noreply.github.com> Date: Wed, 18 Sep 2024 15:19:59 +0000 Subject: [PATCH] test(transformer): clean up identation in test fixtures (#5863) Not sure how added up with mix of tabs and spaces. --- .../arrow-in-class-static-block/output.js | 8 +++---- .../fixtures/use-this-inside-blocks/output.js | 22 +++++++++---------- .../with-this-member-expression/output.js | 6 ++--- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/arrow-in-class-static-block/output.js b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/arrow-in-class-static-block/output.js index d6799b25c2b1f..6c0023a71341b 100644 --- a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/arrow-in-class-static-block/output.js +++ b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/arrow-in-class-static-block/output.js @@ -1,9 +1,9 @@ let f; class C { static { - var _this = this; - f = function() { - return _this; - }; + var _this = this; + f = function() { + return _this; + }; } } diff --git a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/use-this-inside-blocks/output.js b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/use-this-inside-blocks/output.js index 081da1e1183b0..13b2e2f899e85 100644 --- a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/use-this-inside-blocks/output.js +++ b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/use-this-inside-blocks/output.js @@ -1,13 +1,13 @@ function foo() { - var _this = this; - { - let f = function() { - return _this; - }; - } - { - let f2 = function() { - return _this; - }; - } + var _this = this; + { + let f = function() { + return _this; + }; + } + { + let f2 = function() { + return _this; + }; + } } diff --git a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/output.js b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/output.js index 33a2b9b78a8fc..b84ae712f66bf 100644 --- a/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/output.js +++ b/tasks/transform_conformance/tests/babel-plugin-transform-arrow-functions/test/fixtures/with-this-member-expression/output.js @@ -1,10 +1,10 @@ var _this = this; (function() { - return <_this.foo>; + return <_this.foo>; }); (function() { - return <_this.foo.bar>; + return <_this.foo.bar>; }); (function() { - return <_this.foo.bar.qux />; + return <_this.foo.bar.qux />; });