Skip to content

Commit

Permalink
test(transformer): clean up identation in test fixtures (#5863)
Browse files Browse the repository at this point in the history
Not sure how added up with mix of tabs and spaces.
  • Loading branch information
overlookmotel committed Sep 18, 2024
1 parent dfbde2c commit 0c8733d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
let f;
class C {
static {
var _this = this;
f = function() {
return _this;
};
var _this = this;
f = function() {
return _this;
};
}
}
Original file line number Diff line number Diff line change
@@ -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;
};
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
var _this = this;
(function() {
return <_this.foo></_this.foo>;
return <_this.foo></_this.foo>;
});
(function() {
return <_this.foo.bar></_this.foo.bar>;
return <_this.foo.bar></_this.foo.bar>;
});
(function() {
return <_this.foo.bar.qux />;
return <_this.foo.bar.qux />;
});

0 comments on commit 0c8733d

Please sign in to comment.