(o)
| 717 | // and also starts with an arrow." |
| 718 | // |
| 719 | options(o) { |
| 720 | // (This design pattern allows us to call 'instance of' on the |
| 721 | // ConsoleOptions in parseVariadicInput, by ensuring that the object created |
| 722 | // with Console.options is, in fact, a new object. |
| 723 | return new ConsoleOptions(o); |
| 724 | } |
| 725 | |
| 726 | // Deal with the arguments to a variadic print function that also takes an |
| 727 | // optional ConsoleOptions argument at the end. |
no outgoing calls
no test coverage detected