Update to fix rename of 'extends' to 'superclasses' upstream

This commit is contained in:
Jason Paryani
2014-10-19 21:34:46 -07:00
parent f14bcb1e85
commit 0a120ef4cd
2 changed files with 10 additions and 7 deletions

View File

@@ -157,8 +157,13 @@ cdef extern from "capnp/schema.h" namespace " ::capnp":
Maybe[Method] findMethodByName(StringPtr name)
Method getMethodByName(StringPtr name)
bint extends(InterfaceSchema other)
SuperclassList getSuperclasses()
# kj::Maybe<InterfaceSchema> findSuperclass(uint64_t typeId) const;
cdef cppclass SuperclassList" ::capnp::InterfaceSchema::SuperclassList":
uint size()
InterfaceSchema operator[](uint index)
cdef cppclass StructSchema(Schema):
cppclass Field:
StructNode.Member.Reader getProto()