Skip to content

Commit 08cbfeb

Browse files
authored
Update MatchEntry JSDoc
1 parent 66a5cde commit 08cbfeb

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/ast/matchentry.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,11 @@ const Expression = require("./expression");
99
const KIND = "matchentry";
1010

1111
/**
12-
* An array entry - see [Array](#array)
13-
* @constructor Entry
12+
* An match entry - multiple LHS values, single RHS value
13+
* @constructor MatchEntry
1414
* @extends {Expression}
15-
* @property {Node|null} key The entry key/offset
15+
* @property {Node[]} keys The entry key/offset
1616
* @property {Node} value The entry value
17-
* @property {Boolean} byRef By reference
18-
* @property {Boolean} unpack Argument unpacking
1917
*/
2018
module.exports = Expression.extends(KIND, function MatchEntry(
2119
keys,

0 commit comments

Comments
 (0)