Delete some baselines so we can rename them with different casing for Linux

This commit is contained in:
Dan Quirk 2014-07-22 17:09:24 -07:00
parent 0e10fc76b8
commit d34f7fa384
10 changed files with 0 additions and 119 deletions

View File

@ -1,10 +0,0 @@
==== tests/cases/compiler/commentsOnObjectLiteral1.ts (1 errors) ====
var Person = makeClass(
~~~~~~~~~
!!! Cannot find name 'makeClass'.
/**
@scope Person
*/
{
}
);

View File

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

View File

@ -1,4 +0,0 @@
==== tests/cases/compiler/logicalNotExpression1.ts (1 errors) ====
!foo;
~~~
!!! Cannot find name 'foo'.

View File

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

View File

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

View File

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

View File

@ -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'.

View File

@ -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"
]
}

View File

@ -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"
]
}

View File

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