mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 11:35:42 -06:00
Update baselines
* Update baselines * Update project-baselines * Revert "Update project-baselines" This reverts commit eb169712ebad710d11d6b5fad4e8d2ed9b73f50e. * Remove incorrect baseline
This commit is contained in:
parent
3583e14109
commit
881b70c495
@ -12,7 +12,8 @@ class C
|
||||
var C = (function () {
|
||||
function C() {
|
||||
}
|
||||
C.prototype.foo = function () { };
|
||||
C.prototype.foo = function () {
|
||||
};
|
||||
return C;
|
||||
}());
|
||||
C.z = 1;
|
||||
|
||||
@ -25,7 +25,6 @@ class B extends A {
|
||||
[super.foo()]() {
|
||||
return 100;
|
||||
}
|
||||
}
|
||||
;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@ -3,5 +3,5 @@ throw
|
||||
a;
|
||||
|
||||
//// [throwWithoutNewLine2.js]
|
||||
throw ;
|
||||
throw;
|
||||
a;
|
||||
|
||||
@ -7,14 +7,14 @@ m1.f();
|
||||
|
||||
//// [umdDependencyComment2.js]
|
||||
///<amd-dependency path='bar'/>
|
||||
(function (factory) {
|
||||
(function (dependencies, factory) {
|
||||
if (typeof module === 'object' && typeof module.exports === 'object') {
|
||||
var v = factory(require, exports); if (v !== undefined) module.exports = v;
|
||||
}
|
||||
else if (typeof define === 'function' && define.amd) {
|
||||
define(["require", "exports", "bar", "m2"], factory);
|
||||
define(dependencies, factory);
|
||||
}
|
||||
})(function (require, exports) {
|
||||
})(["require", "exports", "bar", "m2"], function (require, exports) {
|
||||
"use strict";
|
||||
var m1 = require("m2");
|
||||
m1.f();
|
||||
|
||||
@ -7,14 +7,14 @@ m1.f();
|
||||
|
||||
//// [umdDependencyCommentName1.js]
|
||||
///<amd-dependency path='bar' name='b'/>
|
||||
(function (factory) {
|
||||
(function (dependencies, factory) {
|
||||
if (typeof module === 'object' && typeof module.exports === 'object') {
|
||||
var v = factory(require, exports); if (v !== undefined) module.exports = v;
|
||||
}
|
||||
else if (typeof define === 'function' && define.amd) {
|
||||
define(["require", "exports", "bar", "m2"], factory);
|
||||
define(dependencies, factory);
|
||||
}
|
||||
})(function (require, exports, b) {
|
||||
})(["require", "exports", "bar", "m2"], function (require, exports, b) {
|
||||
"use strict";
|
||||
var m1 = require("m2");
|
||||
m1.f();
|
||||
|
||||
@ -11,14 +11,14 @@ m1.f();
|
||||
///<amd-dependency path='bar' name='b'/>
|
||||
///<amd-dependency path='foo'/>
|
||||
///<amd-dependency path='goo' name='c'/>
|
||||
(function (factory) {
|
||||
(function (dependencies, factory) {
|
||||
if (typeof module === 'object' && typeof module.exports === 'object') {
|
||||
var v = factory(require, exports); if (v !== undefined) module.exports = v;
|
||||
}
|
||||
else if (typeof define === 'function' && define.amd) {
|
||||
define(["require", "exports", "bar", "goo", "foo", "m2"], factory);
|
||||
define(dependencies, factory);
|
||||
}
|
||||
})(function (require, exports, b, c) {
|
||||
})(["require", "exports", "bar", "goo", "foo", "m2"], function (require, exports, b, c) {
|
||||
"use strict";
|
||||
var m1 = require("m2");
|
||||
m1.f();
|
||||
|
||||
@ -26,7 +26,6 @@ function run(configuration: commands.IConfiguration) {
|
||||
}
|
||||
|
||||
//// [visibilityOfCrossModuleTypeUsage_server.js]
|
||||
"use strict";
|
||||
//// [visibilityOfCrossModuleTypeUsage_commands.js]
|
||||
//visibilityOfCrossModuleTypeUsage
|
||||
"use strict";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user