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

Method writeArgs

src/unparser.js:22–34  ·  view source on GitHub ↗
(args)

Source from the content-addressed store, hash-verified

20 }
21
22 writeArgs(args) {
23 this.write('(');
24
25 for (let i = 0, length = args.length; i < length; ++i) {
26 if (i !== 0) {
27 this.write(',');
28 }
29
30 args[i].accept(this);
31 }
32
33 this.write(')');
34 }
35
36 visitBindingBehavior(behavior) {
37 let args = behavior.args;

Callers 5

visitCallScopeMethod · 0.80
visitCallFunctionMethod · 0.80
visitCallMemberMethod · 0.80
aurelia-binding.jsFile · 0.80
aurelia-binding.jsFile · 0.80

Calls 2

writeMethod · 0.80
acceptMethod · 0.45

Tested by

no test coverage detected