remove comment

This commit is contained in:
Arthur Ozga 2017-06-01 11:17:24 -07:00
parent f2163fecbd
commit 6742f9dcd8

View file

@ -24,21 +24,3 @@ verify.rangeIs(`
throw new Error("Method not implemented.");
}
`);
// class A {
// static prop2: string;
// static prop1: number;
// static m2(arg0: any, arg1: any): any {
// throw new Error("Method not implemented.");
// }
// static m1(arg0: any, arg1: any, arg2: any): any {
// throw new Error("Method not implemented.");
// }
// static foo0() {
// this.m1(1,2,3);
// A.m2(1,2);
// this.prop1 = 10;
// A.prop2 = "asdf";
// }
// }