Sha256: d59c714118aefb2238016bd2798637065e233fc21f6eca58ecba604d1fd48daf

Contents?: true

Size: 265 Bytes

Versions: 2

Compression:

Stored size: 265 Bytes

Contents

class Person {

    private _name:string = null;

    constructor() {

    }

    public get name():string
    {
        return "The person name is " + this._name;
    }

    public set name(value:string)
    {
        this._name = value;
    }

}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
typescript-node-1.6.2 test/data/es5.ts
typescript-node-1.4.1 test/data/es5.ts