@@ -264,7 +264,7 @@ module.exports = {
264
264
265
265
/**
266
266
* Check whether the given name is a MathML element or not.
267
- * @param {ASTNode } name The node to check.
267
+ * @param {ASTNode } node The node to check.
268
268
* @returns {boolean } `true` if the node is a MathML element.
269
269
*/
270
270
isMathMLElementNode ( node ) {
@@ -307,7 +307,7 @@ module.exports = {
307
307
308
308
/**
309
309
* Check whether the given attribute node is a binding
310
- * @param {ASTNode } name The attribute to check.
310
+ * @param {ASTNode } attribute The attribute to check.
311
311
* @returns {boolean }
312
312
*/
313
313
isBindingAttribute ( attribute ) {
@@ -327,7 +327,7 @@ module.exports = {
327
327
328
328
/**
329
329
* Parse member expression node to get array with all of its parts
330
- * @param {ASTNode } MemberExpression
330
+ * @param {ASTNode } node MemberExpression
331
331
* @returns {Array }
332
332
*/
333
333
parseMemberExpression ( node ) {
@@ -605,7 +605,7 @@ module.exports = {
605
605
/**
606
606
* Return generator with all properties
607
607
* @param {ASTNode } node Node to check
608
- * @param {string } groupName Name of parent group
608
+ * @param {Set } groups Name of parent group
609
609
*/
610
610
* iterateProperties ( node , groups ) {
611
611
const nodes = node . properties . filter ( p => p . type === 'Property' && groups . has ( this . getStaticPropertyName ( p . key ) ) )
0 commit comments