MCPcopy
hub / github.com/digitalbazaar/jsonld.js / argument_list

Function argument_list

tests/webidl/WebIDLParser.js:311–322  ·  view source on GitHub ↗
(store)

Source from the content-addressed store, hash-verified

309 };
310
311 var argument_list = function(store) {
312 var ret = [],
313 arg = argument(store ? ret : null);
314 if (!arg) return;
315 ret.push(arg);
316 while (true) {
317 all_ws(store ? ret : null);
318 if (!consume(OTHER, ",")) return ret;
319 var nxt = argument(store ? ret : null) || error("Trailing comma in arguments list");
320 ret.push(nxt);
321 }
322 };
323
324 var simple_extended_attr = function(store) {
325 all_ws();

Callers 3

simple_extended_attrFunction · 0.85
operation_restFunction · 0.85
callbackFunction · 0.85

Calls 4

argumentFunction · 0.85
all_wsFunction · 0.85
consumeFunction · 0.85
errorFunction · 0.85

Tested by

no test coverage detected