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

Function getEffectiveModifierFlags

test/fixtures/snapshot/typescript.js:18942–18944  ·  view source on GitHub ↗

* Gets the effective ModifierFlags for the provided node, including JSDoc modifiers. The modifiers will be cached on the node to improve performance. * * NOTE: This function may use `parent` pointers.

(node)

Source from the content-addressed store, hash-verified

18940 * NOTE: This function may use `parent` pointers.
18941 */
18942 function getEffectiveModifierFlags(node) {
18943 return getModifierFlagsWorker(node, /*includeJSDoc*/ true);
18944 }
18945 ts.getEffectiveModifierFlags = getEffectiveModifierFlags;
18946 function getEffectiveModifierFlagsAlwaysIncludeJSDoc(node) {
18947 return getModifierFlagsWorker(node, /*includeJSDOc*/ true, /*alwaysIncludeJSDOc*/ true);

Callers 2

hasEffectiveModifiersFunction · 0.85

Calls 1

getModifierFlagsWorkerFunction · 0.85

Tested by

no test coverage detected