| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | 1× 1× 1× 16× 1× 5× 1× 1× 1× 1× 3× 1× 1× | "use strict";
var definitions_1 = require("./../definitions");
var ScopeWriter = (function () {
function ScopeWriter(writer) {
this.writer = writer;
}
ScopeWriter.prototype.writeScope = function (scope) {
switch (scope) {
case definitions_1.Scope.Protected:
this.writer.write("protected ");
break;
case definitions_1.Scope.Private:
this.writer.write("private ");
break;
default:
break;
}
};
return ScopeWriter;
}());
exports.ScopeWriter = ScopeWriter;
//# sourceMappingURL=ScopeWriter.js.map
|