(...args)
| 738 | return this.compose({ methods: assign({}, ...args) }); |
| 739 | }, |
| 740 | properties(...args) { |
| 741 | return this.compose({ properties: assign({}, ...args) }); |
| 742 | }, |
| 743 | initializers(...args) { |
| 744 | return this.compose({ initializers: extractUniqueFunctions(...args) }); |
| 745 | }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…