* Gets the ModifierFlags for syntactic modifiers on the provided node. The modifiers will be cached on the node to improve performance. * * NOTE: This function does not use `parent` pointers and will not include modifiers from JSDoc.
(node)
| 18953 | * NOTE: This function does not use `parent` pointers and will not include modifiers from JSDoc. |
| 18954 | */ |
| 18955 | function getSyntacticModifierFlags(node) { |
| 18956 | return getModifierFlagsWorker(node, /*includeJSDoc*/ false); |
| 18957 | } |
| 18958 | ts.getSyntacticModifierFlags = getSyntacticModifierFlags; |
| 18959 | function getJSDocModifierFlagsNoCache(node) { |
| 18960 | var flags = 0 /* ModifierFlags.None */; |
no test coverage detected