Emits class name with comments.

This commit is contained in:
Ron Buckton 2016-04-07 12:27:44 -07:00
parent 9b8436ca85
commit 9d2f0b37c0
2 changed files with 4 additions and 4 deletions

View file

@ -549,7 +549,7 @@ namespace ts {
/*modifiers*/ undefined,
createVariableDeclarationList([
createVariableDeclaration(
getDeclarationName(node),
node.name || getGeneratedNameForNode(node),
transformClassLikeDeclarationToExpression(node)
)
]),

View file

@ -132,11 +132,11 @@ var WinJS;
var Errors;
(function (Errors) {
var ConnectionError /* extends Error */ = (function () {
function ConnectionError /* extends Error */(request) {
function ConnectionError(request) {
}
return ConnectionError /* extends Error */;
return ConnectionError;
}());
Errors.ConnectionError /* extends Error */ = ConnectionError /* extends Error */;
Errors.ConnectionError = ConnectionError;
})(Errors || (Errors = {}));
var FileService = (function () {
function FileService() {