Get the declaration initializer when it is container-like (See getExpandoInitializer).
(node)
| 16421 | ts.getEffectiveInitializer = getEffectiveInitializer; |
| 16422 | /** Get the declaration initializer when it is container-like (See getExpandoInitializer). */ |
| 16423 | function getDeclaredExpandoInitializer(node) { |
| 16424 | var init = getEffectiveInitializer(node); |
| 16425 | return init && getExpandoInitializer(init, isPrototypeAccess(node.name)); |
| 16426 | } |
| 16427 | ts.getDeclaredExpandoInitializer = getDeclaredExpandoInitializer; |
| 16428 | function hasExpandoValueProperty(node, isPrototypeAssignment) { |
| 16429 | return ts.forEach(node.properties, function (p) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…