(name, ...args)
| 17 | // setContext arranges to add name(args) to all messages added |
| 18 | // until the next setContext or run call. |
| 19 | setContext(name, ...args) { |
| 20 | this.context = name + "(" + args.join(",") + ")"; |
| 21 | } |
| 22 | |
| 23 | log(...args) { |
| 24 | this.result.push(["LOG", this.context, ...args]); |
no outgoing calls
no test coverage detected