()
| 1894 | } |
| 1895 | |
| 1896 | getProvidedInfo() { |
| 1897 | switch (this.provided) { |
| 1898 | case undefined: |
| 1899 | return "no provided info"; |
| 1900 | case null: |
| 1901 | return "maybe provided (runtime-defined)"; |
| 1902 | case true: |
| 1903 | return "provided"; |
| 1904 | case false: |
| 1905 | return "not provided"; |
| 1906 | } |
| 1907 | } |
| 1908 | |
| 1909 | getRenameInfo() { |
| 1910 | if (this._usedName !== null && this._usedName !== this.name) { |
no outgoing calls
no test coverage detected