We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66a5cde commit 08cbfebCopy full SHA for 08cbfeb
src/ast/matchentry.js
@@ -9,13 +9,11 @@ const Expression = require("./expression");
9
const KIND = "matchentry";
10
11
/**
12
- * An array entry - see [Array](#array)
13
- * @constructor Entry
+ * An match entry - multiple LHS values, single RHS value
+ * @constructor MatchEntry
14
* @extends {Expression}
15
- * @property {Node|null} key The entry key/offset
+ * @property {Node[]} keys The entry key/offset
16
* @property {Node} value The entry value
17
- * @property {Boolean} byRef By reference
18
- * @property {Boolean} unpack Argument unpacking
19
*/
20
module.exports = Expression.extends(KIND, function MatchEntry(
21
keys,
0 commit comments