From 2d09dcc16fed1918b5a5b38ccd5e74899f2efb48 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Thu, 23 Apr 2015 15:52:18 -0700 Subject: [PATCH] Corrected call. --- src/compiler/emitter.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/emitter.ts b/src/compiler/emitter.ts index 815ae34c213..c3f9d5aa803 100644 --- a/src/compiler/emitter.ts +++ b/src/compiler/emitter.ts @@ -4812,7 +4812,7 @@ var __param = this.__param || function(index, decorator) { return function (targ * This will take care of leading/trailing comments, and sourcemaps if applicable. */ function emit(node: Node): void { - emitNodeWorker(node, /*allowGeneratedIdentifiers*/ true); + emitNodeWorker(node, /*shouldEmitSourceMap*/ true, /*allowGeneratedIdentifiers*/ true); } /**