Sha256: 351b9d9e8323df3b81dc954e24e0692836936a300f0f25490f7e99aeb3f30eff

Contents?: true

Size: 247 Bytes

Versions: 5

Compression:

Stored size: 247 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

5 entries across 5 versions & 2 rubygems

Version Path
tsc-ruby-0.1.3 test/data/es5.ts
tsc-ruby-0.1.1 test/data/es5.ts
tsc-ruby-0.1.0 test/data/es5.ts
typescript-node-1.1.1 test/data/es5.ts
typescript-node-1.1.0 test/data/es5.ts