(source, kind)
| 151328 | } |
| 151329 | } |
| 151330 | function getModifierKindFromSource(source, kind) { |
| 151331 | return ts.filter(source.modifiers, function (modifier) { return modifier.kind === kind; }); |
| 151332 | } |
| 151333 | function isConstructorAssignment(x) { |
| 151334 | if (!x.name) |
| 151335 | return false; |
no test coverage detected
searching dependent graphs…