Accepted baselines.

This commit is contained in:
Daniel Rosenwasser
2016-09-02 13:04:14 -07:00
parent bab6d6fbb2
commit ce953ceb45
4 changed files with 5 additions and 5 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;

View File

@@ -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;
}