MCPcopy Index your code
hub / github.com/nodejs/node / getSyntacticModifierFlags

Function getSyntacticModifierFlags

test/fixtures/snapshot/typescript.js:18955–18957  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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 */;

Callers 2

hasSyntacticModifiersFunction · 0.85

Calls 1

getModifierFlagsWorkerFunction · 0.85

Tested by

no test coverage detected