Add missed update of thisInObjectLiterals baseline

This commit is contained in:
Nathan Shively-Sanders
2016-03-09 13:20:49 -08:00
parent 4012587808
commit 32978247bd
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ tests/cases/conformance/expressions/thisKeyword/thisInObjectLiterals.ts(14,21):
}
}
//type of 'this' in an object literal property of a function type is Any
//type of 'this' in an object literal method is the type of the object literal
var obj = {
f() {
return this.spaaace;

View File

@@ -9,7 +9,7 @@ class MyClass {
}
}
//type of 'this' in an object literal property of a function type is Any
//type of 'this' in an object literal method is the type of the object literal
var obj = {
f() {
return this.spaaace;
@@ -29,7 +29,7 @@ var MyClass = (function () {
};
return MyClass;
}());
//type of 'this' in an object literal property of a function type is Any
//type of 'this' in an object literal method is the type of the object literal
var obj = {
f: function () {
return this.spaaace;