MCPcopy Create free account
hub / github.com/codeaashu/claude-code / hideInstance

Function hideInstance

src/ink/reconciler.ts:381–385  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

379 },
380 getPublicInstance: (instance): DOMElement => instance as DOMElement,
381 hideInstance(node) {
382 node.isHidden = true
383 node.yogaNode?.setDisplay(LayoutDisplay.None)
384 markDirty(node)
385 },
386 unhideInstance(node) {
387 node.isHidden = false
388 node.yogaNode?.setDisplay(LayoutDisplay.Flex)

Callers

nothing calls this directly

Calls 2

markDirtyFunction · 0.85
setDisplayMethod · 0.45

Tested by

no test coverage detected