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

Method getComputedLayout

src/native-ts/yoga-layout/index.ts:622–638  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

620 return p ? p.layout.height - this.layout.top - this.layout.height : 0
621 }
622 getComputedLayout(): {
623 left: number
624 top: number
625 right: number
626 bottom: number
627 width: number
628 height: number
629 } {
630 return {
631 left: this.layout.left,
632 top: this.layout.top,
633 right: this.getComputedRight(),
634 bottom: this.getComputedBottom(),
635 width: this.layout.width,
636 height: this.layout.height,
637 }
638 }
639 getComputedBorder(edge: Edge): number {
640 return this.layout.border[physicalEdge(edge)]!
641 }

Callers

nothing calls this directly

Calls 2

getComputedRightMethod · 0.95
getComputedBottomMethod · 0.95

Tested by

no test coverage detected