Take the following: ``` TypeScript var f: any; `${ f }`; ``` Right now, neither findAllRefs nor getOccurrences, will find the `f` in the template. Note that the following _does_ work as expected for getOccurrences: ``` TypeScript this; `${ this }`; ```