Skip to content

Commit 16e8a8b

Browse files
Accepted baselines.
1 parent 5691fed commit 16e8a8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/baselines/reference/privateNamesEscapeSequences01(target=es5).js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
139139
exports.IdentifierNameWithExtendedEscape1 = void 0;
140140
var IdentifierNameWithExtendedEscape1 = /** @class */ (function () {
141141
function IdentifierNameWithExtendedEscape1() {
142-
this.\u{78} = 0;
142+
this.x = 0;
143143
}
144144
IdentifierNameWithExtendedEscape1.prototype.doThing = function () {
145145
this.x = 42;
@@ -153,7 +153,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
153153
exports.IdentifierNameWithExtendedEscape2 = void 0;
154154
var IdentifierNameWithExtendedEscape2 = /** @class */ (function () {
155155
function IdentifierNameWithExtendedEscape2() {
156-
this.x\u{78} = 0;
156+
this.xx = 0;
157157
}
158158
IdentifierNameWithExtendedEscape2.prototype.doThing = function () {
159159
this.xx = 42;

0 commit comments

Comments
 (0)