1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
tests/cases/compiler/es6ClassTest2.ts(17,1): error TS2304: Cannot find name 'console'.
tests/cases/compiler/es6ClassTest2.ts(30,9): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/compiler/es6ClassTest2.ts(35,9): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
==== tests/cases/compiler/es6ClassTest2.ts (3 errors) ====
class BasicMonster {
constructor(public name: string, public health: number) {
}
attack(target) {
// WScript.Echo("Attacks " + target);
}
isAlive = true;
}
var m1 = new BasicMonster("1", 100);
var m2 = new BasicMonster("2", 100);
m1.attack(m2);
m1.health = 0;
console.log((<any>m5.isAlive).toString());
~~~~~~~
!!! error TS2304: Cannot find name 'console'.
class GetSetMonster {
constructor(public name: string, private _health: number) {
}
attack(target) {
// WScript.Echo("Attacks " + target);
}
// The contextual keyword "get" followed by an identifier and
// a curly body defines a getter in the same way that "get"
// defines one in an object literal.
get isAlive() {
~~~~~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
return this._health > 0;
}
// Likewise, "set" can be used to define setters.
set health(value: number) {
~~~~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
if (value < 0) {
throw new Error('Health must be non-negative.')
}
this._health = value
}
}
var m3 = new BasicMonster("1", 100);
var m4 = new BasicMonster("2", 100);
m3.attack(m4);
m3.health = 0;
var x = (<any>m5.isAlive).toString()
class OverloadedMonster {
constructor(name: string);
constructor(public name: string, public health?: number) {
}
attack();
attack(a: any);
attack(target?) {
//WScript.Echo("Attacks " + target);
}
isAlive = true;
}
var m5 = new OverloadedMonster("1");
var m6 = new OverloadedMonster("2");
m5.attack(m6);
m5.health = 0;
var y = (<any>m5.isAlive).toString()
class SplatMonster {
constructor(...args: string[]) { }
roar(name: string, ...args: number[]) { }
}
function foo() { return true; }
class PrototypeMonster {
age: number = 1;
name: string;
b = foo();
}
class SuperParent {
constructor(a: number) {
}
b(b: string) {
}
c() {
}
}
class SuperChild extends SuperParent {
constructor() {
super(1);
}
b() {
super.b('str');
}
c() {
super.c();
}
}
class Statics {
static foo = 1;
static bar: string;
static baz() {
return "";
}
}
var stat = new Statics();
interface IFoo {
x: number;
z: string;
}
class ImplementsInterface implements IFoo {
public x: number;
public z: string;
constructor() {
this.x = 1;
this.z = "foo";
}
}
class Visibility {
public foo() { }
private bar() { }
private x: number;
public y: number;
public z: number;
constructor() {
this.x = 1;
this.y = 2;
}
}
class BaseClassWithConstructor {
constructor(public x: number, public s: string) { }
}
// used to test codegen
class ChildClassWithoutConstructor extends BaseClassWithConstructor { }
var ccwc = new ChildClassWithoutConstructor(1, "s");
|