(args)
| 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; |
no test coverage detected