| 77 | } |
| 78 | |
| 79 | class Car { |
| 80 | constructor(brand) { |
| 81 | this.carname = brand; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Dispatched when loading the repositories fails |
| 86 | * |
| 87 | * @param {object} error The error |
| 88 | * |
| 89 | * @return {object} An action object with a type of LOAD_REPOS_ERROR passing the error |
| 90 | */ |
| 91 | present() { |
| 92 | return 'I have a ' + this.carname; |
| 93 | } |
| 94 | } |
nothing calls this directly
no outgoing calls
no test coverage detected