(kind Kind)
| 2982 | } |
| 2983 | |
| 2984 | func IsParameterPropertyModifier(kind Kind) bool { |
| 2985 | return ModifierToFlag(kind)&ModifierFlagsParameterPropertyModifier != 0 |
| 2986 | } |
| 2987 | |
| 2988 | func ForEachChildAndJSDoc(node *Node, sourceFile *SourceFile, v Visitor) bool { |
| 2989 | if visitNodes(v, node.JSDoc(sourceFile)) { |
no test coverage detected