mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-11 09:24:19 -06:00
Delete some baselines so we can rename them with different casing for Linux
This commit is contained in:
parent
0e10fc76b8
commit
d34f7fa384
@ -1,10 +0,0 @@
|
||||
==== tests/cases/compiler/commentsOnObjectLiteral1.ts (1 errors) ====
|
||||
var Person = makeClass(
|
||||
~~~~~~~~~
|
||||
!!! Cannot find name 'makeClass'.
|
||||
/**
|
||||
@scope Person
|
||||
*/
|
||||
{
|
||||
}
|
||||
);
|
||||
@ -1,15 +0,0 @@
|
||||
==== tests/cases/compiler/commentsOnObjectLiteral2.ts (1 errors) ====
|
||||
var Person = makeClass(
|
||||
~~~~~~~~~
|
||||
!!! Cannot find name 'makeClass'.
|
||||
{
|
||||
/**
|
||||
This is just another way to define a constructor.
|
||||
@constructs
|
||||
@param {string} name The name of the person.
|
||||
*/
|
||||
initialize: function(name) {
|
||||
this.name = name;
|
||||
},
|
||||
}
|
||||
);
|
||||
@ -1,4 +0,0 @@
|
||||
==== tests/cases/compiler/logicalNotExpression1.ts (1 errors) ====
|
||||
!foo;
|
||||
~~~
|
||||
!!! Cannot find name 'foo'.
|
||||
@ -1,8 +0,0 @@
|
||||
==== tests/cases/compiler/overloadResolutionOnDefaultConstructor1.ts (1 errors) ====
|
||||
class Bar {
|
||||
public clone() {
|
||||
return new Bar(0);
|
||||
~~~~~~~~~~
|
||||
!!! Supplied parameters do not match any signature of call target.
|
||||
}
|
||||
}
|
||||
@ -1,12 +0,0 @@
|
||||
==== tests/cases/compiler/privateAccessInSubclass1.ts (1 errors) ====
|
||||
class Base {
|
||||
private options: any;
|
||||
}
|
||||
|
||||
class D extends Base {
|
||||
myMethod() {
|
||||
this.options;
|
||||
~~~~~~~~~~~~
|
||||
!!! Property 'Base.options' is inaccessible.
|
||||
}
|
||||
}
|
||||
@ -1,8 +0,0 @@
|
||||
==== tests/cases/compiler/propertyAccessibility2.ts (1 errors) ====
|
||||
class C {
|
||||
private static x = 1;
|
||||
}
|
||||
var c = C.x;
|
||||
~~~
|
||||
!!! Property 'C.x' is inaccessible.
|
||||
|
||||
@ -1,10 +0,0 @@
|
||||
==== tests/cases/compiler/unaryOperators1.ts (3 errors) ====
|
||||
+foo;
|
||||
~~~
|
||||
!!! Cannot find name 'foo'.
|
||||
-bar;
|
||||
~~~
|
||||
!!! Cannot find name 'bar'.
|
||||
~quux;
|
||||
~~~~
|
||||
!!! Cannot find name 'quux'.
|
||||
@ -1,20 +0,0 @@
|
||||
{
|
||||
"scenario": "MultipleLevel module resolution",
|
||||
"projectRoot": "tests/cases/projects/MultipleLevels",
|
||||
"inputFiles": [
|
||||
"root.ts"
|
||||
],
|
||||
"resolvedInputFiles": [
|
||||
"root.ts",
|
||||
"B/B.ts",
|
||||
"A/A.ts",
|
||||
"A/AA/AA.ts",
|
||||
"lib.d.ts"
|
||||
],
|
||||
"emittedFiles": [
|
||||
"A/A.js",
|
||||
"A/AA/AA.js",
|
||||
"B/B.js",
|
||||
"root.js"
|
||||
]
|
||||
}
|
||||
@ -1,20 +0,0 @@
|
||||
{
|
||||
"scenario": "MultipleLevel module resolution",
|
||||
"projectRoot": "tests/cases/projects/MultipleLevels",
|
||||
"inputFiles": [
|
||||
"root.ts"
|
||||
],
|
||||
"resolvedInputFiles": [
|
||||
"root.ts",
|
||||
"B/B.ts",
|
||||
"A/A.ts",
|
||||
"A/AA/AA.ts",
|
||||
"lib.d.ts"
|
||||
],
|
||||
"emittedFiles": [
|
||||
"A/A.js",
|
||||
"A/AA/AA.js",
|
||||
"B/B.js",
|
||||
"root.js"
|
||||
]
|
||||
}
|
||||
@ -1,12 +0,0 @@
|
||||
//// [recursiveGenericMethodCall.ts]
|
||||
interface Generator<T> { (): T; }
|
||||
|
||||
function Generate<T>(func: Generator<T>): T {
|
||||
return Generate(func);
|
||||
}
|
||||
|
||||
|
||||
//// [recursiveGenericMethodCall.js]
|
||||
function Generate(func) {
|
||||
return Generate(func);
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user