MCPcopy Create free account
hub / github.com/aurelia/binding / parseVariadicArgs

Method parseVariadicArgs

src/parser.js:69–76  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

67 }
68
69 parseVariadicArgs() {
70 this.nextToken();
71 const result = [];
72 while (this.opt(T$Colon)) {
73 result.push(this.parseExpression());
74 }
75 return result;
76 }
77
78 parseExpression() {
79 let exprStart = this.idx;

Callers 2

parseBindingBehaviorMethod · 0.95
parseValueConverterMethod · 0.95

Calls 3

nextTokenMethod · 0.95
optMethod · 0.95
parseExpressionMethod · 0.95

Tested by

no test coverage detected