MCPcopy Create free account
hub / github.com/SeaOfNodes/Simple / xmeet

Method xmeet

chapter17/src/main/java/com/seaofnodes/simple/type/Type.java:143–152  ·  view source on GitHub ↗
(Type t)

Source from the content-addressed store, hash-verified

141 // Handle cases where 'this.is_simple()' and unequal to 't'.
142 // Subclassed xmeet calls can assert that '!t.is_simple()'.
143 Type xmeet(Type t) {
144 assert is_simple(); // Should be overridden in subclass
145 // ANY meet anything is thing; thing meet ALL is ALL
146 if( _type==TBOT || t._type==TTOP ) return this;
147 if( _type==TTOP || t._type==TBOT ) return t;
148 // 'this' is {TCTRL,TXCTRL}
149 if( !t.is_simple() ) return BOTTOM;
150 // 't' is {TCTRL,TXCTRL}
151 return _type==TCTRL || t._type==TCTRL ? CONTROL : XCONTROL;
152 }
153
154 public Type dual() {
155 return switch( _type ) {

Callers 1

meetMethod · 0.95

Calls 1

is_simpleMethod · 0.95

Tested by

no test coverage detected