Fixes#33295.
This follows a similar pattern as in #20314 by requiring an explicit
`parent` parameter. Where possible, it uses the appopriate variable at
the call sites.
In several locations there is no context available though (e.g.
inspecting `valueDeclarations`) and we access `.parent` as the code
previously did. From a cursory inspection this seems correct, these
callpaths originate in phases where there must be a `parent` (i.e. in
checker, binder, etc).
Change-Id: I28e4726777b57237bec776e4001e9e69ac591b11
* show more items in navbar
* fixed missing node kind for property assignments
* updated navBarNestedCommonJsExports test
* updated navigationBarMerging_grandchildren test
* updated navigationBarItemsFunctions test
* updated navigationBarAnonymousClassAndFunctionExpressions test
* updated navigationBarFunctionIndirectlyInVariableDeclaration test
* updated navigationBarInitializerSpans test
* updated navigationBarItemsPropertiesDefinedInConstructors test
* updated tests
* change nav icon for properties with function-like initializers
* add test case for binding element with function-like initializer
* add navigationBarNestedObjectLiterals test
* add navigationBarFunctionLikePropertyAssignments test
* made some silly names less silly (?)
* added SpreadAssignments and ShorthandPropertyAssignments
* new wording for primary menu items
`Number.MAX_SAFE_INTEGER` is `2 ** 53 - 1`, so anything greater than that is a 'dangerous' integer to store as a traditional number. This adds a codefix to suggest converting them to a `bigint` literal.
* Changed outlining to better outline ES5 classes (functions assigned to prototype)
* Changed outlining to better outline ES5 classes (properties assigned to functions)
* Fixed some small bugs when merging es5 class nodes. Added tests for new es5 class outline.
* Added support for interlaced ES5 classes (where an ES5 class's members are mixed with other declarations).
* Fixed crash in outline when assigning {} to the prototype.
* Added support for nested es5 declarations.
* Added support for prototype assignment for es5 classes.
1. Everything explodes! Out of stack space!
2. Results aren't used yet.
3. But call and construct use the new getSignatureFromCalls, so I expect
some baseline changes after I get the infinite recursion fixed.