support rest-patterns inside property patterns

This commit is contained in:
Erik Krogh Kristensen
2020-06-09 13:19:20 +02:00
parent c580ada527
commit b510e470b1
4 changed files with 24 additions and 1 deletions

View File

@@ -52,6 +52,6 @@ cp.exec("cmd.sh " + require("optimist").argv.foo); // NOT OK
.usage('Usage: foo bar')
.command();
cp.exec("cmd.sh " + args); // NOT OK - but not flagged yet.
cp.exec("cmd.sh " + args); // NOT OK
});