D | interface.cc | 78 static_cast<Interface*>(p->value)->Unify(interface, zone, ok); in DoAdd() 91 void Interface::Unify(Interface* that, Zone* zone, bool* ok) { in Unify() function in v8::internal::Interface 92 if (this->forward_) return this->Chase()->Unify(that, zone, ok); in Unify() 93 if (that->forward_) return this->Unify(that->Chase(), zone, ok); in Unify()
|