MCPcopy Create free account
hub / github.com/zenstackhq/zenstack / visitBinary

Method visitBinary

packages/orm/src/utils/schema-utils.ts:51–58  ·  view source on GitHub ↗
(e: BinaryExpression)

Source from the content-addressed store, hash-verified

49 }
50
51 protected visitBinary(e: BinaryExpression): VisitResult {
52 const l = this.visit(e.left);
53 if (l?.abort) {
54 return l;
55 } else {
56 return this.visit(e.right);
57 }
58 }
59
60 protected visitUnary(e: UnaryExpression): VisitResult {
61 return this.visit(e.operand);

Callers 1

visitMethod · 0.95

Calls 1

visitMethod · 0.95

Tested by

no test coverage detected