Sha256: 368e622ed6266be88e44f0c055d6a8e61803aa55655d95201b73c8c0a322031c

Contents?: true

Size: 245 Bytes

Versions: 2

Compression:

Stored size: 245 Bytes

Contents

(function() {

    var helloFunction = function() {
        this.var_ = "Hello Closure compiler";
    };

    helloFunction.prototype.alert = function() {
        alert(this.var_);
    };


    var h = new helloFunction();
    h.alert();

})();

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
k4compiler-0.0.1 spec/k4compiler/compiler/closure/src/hello-compiled-script.js
k4compiler-0.0.1 spec/k4compiler/compiler/closure/src/hello.js