You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With sample SyntaxWalker based on tslint, once I visit the PropertyAssignment - selector: SELECTOR and invoke typeChecker.getSymbolAtLocation(prop.initializer); I should get the SELECTOR symbol.
Actual behavior:
TypeError: Cannot read property 'members' of undefined
at resolveName (node_modules/typescript/lib/typescript.js:15307:73)
at resolveEntityName (node_modules/typescript/lib/typescript.js:15725:26)
at getSymbolOfEntityNameOrPropertyAccessExpression (node_modules/typescript/lib/typescript.js:28708:28)
at Object.getSymbolAtLocation (node_modules/typescript/lib/typescript.js:28770:28)
The text was updated successfully, but these errors were encountered:
TypeScript Version:
1.8.10
Code
Expected behavior:
With sample
SyntaxWalker
based ontslint
, once I visit thePropertyAssignment
-selector: SELECTOR
and invoketypeChecker.getSymbolAtLocation(prop.initializer);
I should get theSELECTOR
symbol.Actual behavior:
The text was updated successfully, but these errors were encountered: