Corrected comment.

This commit is contained in:
Daniel Rosenwasser
2014-11-05 18:34:53 -08:00
parent bcddb101aa
commit 652b7f8909
+1 -1
View File
@@ -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[];