From 652b7f890970e9a25492bb0b5a7d58e66e9eb0cc Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Wed, 5 Nov 2014 18:34:53 -0800 Subject: [PATCH] Corrected comment. --- src/compiler/checker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 805a96a6b84..504d3ce474d 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -5371,7 +5371,7 @@ module ts { * * If 'node' is a CallExpression or a NewExpression, then its argument list is returned. * If 'node' is a TaggedTemplateExpression, a new argument list is constructed from the substitution - * expressions, where the first element of the argument list is 'undefined' to represent the "cooked" strings array. + * expressions, where the first element of the argument list is the template portion for error reporting purposes. */ function getEffectiveCallArguments(node: CallExpression | TaggedTemplateExpression): Expression[] { var args: Expression[];