Add tests

This commit is contained in:
Yui T 2015-12-11 19:28:21 -08:00
parent 0f3eb0a058
commit af65e86aaa

View file

@ -0,0 +1,17 @@
/// <reference path='fourslash.ts'/>
//// class Foo {
//// constructor(private privateParam: number,
//// public publicParam: string,
//// protected protectedParam: boolean) {
////
//// let localPrivate = privateParam;
//// this.privateParam += 10;
////
//// let localPublic = publicParam;
//// this.publicParam += " Hello!";
////
//// let localProtected = protectedParam;
//// this.protectedParam = !this.protectedParam;
//// }
//// }