fix up jsdoc in let-scoping transformer

This commit is contained in:
Sebastian McKenzie 2014-11-12 01:39:02 +11:00
parent 9987e7fe0e
commit 1ed682fa76

View File

@ -336,7 +336,7 @@ LetScoping.prototype.getLetReferences = function () {
* Turn a `VariableDeclaration` into an array of `AssignmentExpressions` with
* their declarations hoisted to before the closure wrapper.
*
* @param {VariableDeclaration} node
* @param {Node} node VariableDeclaration
* @returns {Array}
*/
@ -360,8 +360,8 @@ LetScoping.prototype.buildPushDeclar = function (node) {
/**
* Push the closure to the body.
*
* @param {Identifier} ret
* @param {CallExpression} call
* @param {Node} ret Identifier
* @param {Node} call CallExpression
*/
LetScoping.prototype.build = function (ret, call) {
@ -376,8 +376,8 @@ LetScoping.prototype.build = function (ret, call) {
/**
* Description
*
* @param {Identifier} ret
* @param {CallExpression} call
* @param {Node} ret Identifier
* @param {Node} call CallExpression
*/
LetScoping.prototype.buildHas = function (ret, call) {