mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-18 07:29:16 -05:00
Accepted baselines.
This commit is contained in:
@@ -28,9 +28,9 @@ var A = (function () {
|
||||
var B = (function (_super) {
|
||||
__extends(B, _super);
|
||||
function B(x) {
|
||||
var _this;
|
||||
"use strict";
|
||||
'someStringForEgngInject';
|
||||
var _this;
|
||||
_this = _super.call(this) || this;
|
||||
_this.x = x;
|
||||
return _this;
|
||||
|
||||
@@ -30,9 +30,9 @@ var A = (function () {
|
||||
var B = (function (_super) {
|
||||
__extends(B, _super);
|
||||
function B() {
|
||||
var _this;
|
||||
"use strict";
|
||||
'someStringForEgngInject';
|
||||
var _this;
|
||||
_this = _super.call(this) || this;
|
||||
_this.blub = 12;
|
||||
return _this;
|
||||
|
||||
@@ -28,9 +28,9 @@ var A = (function () {
|
||||
var B = (function (_super) {
|
||||
__extends(B, _super);
|
||||
function B(x) {
|
||||
var _this;
|
||||
"use strict";
|
||||
'someStringForEgngInject';
|
||||
var _this;
|
||||
_this = _super.call(this) || this;
|
||||
_this.x = x;
|
||||
_this.blah = 2;
|
||||
|
||||
@@ -74,8 +74,8 @@ var A = (function () {
|
||||
var B = (function (_super) {
|
||||
__extends(B, _super);
|
||||
function B() {
|
||||
var _this;
|
||||
"use strict"; // No error
|
||||
var _this;
|
||||
_this = _super.call(this) || this;
|
||||
_this.s = 9;
|
||||
return _this;
|
||||
@@ -108,8 +108,8 @@ var D = (function (_super) {
|
||||
var Bs = (function (_super) {
|
||||
__extends(Bs, _super);
|
||||
function Bs() {
|
||||
var _this;
|
||||
"use strict"; // No error
|
||||
var _this;
|
||||
_this = _super.call(this) || this;
|
||||
return _this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user