Followup to changeset d3e90292fd30, discriminated union types: bustage fix when passing an actor

This commit is contained in:
Benjamin Smedberg 2009-09-11 12:05:26 -04:00
parent 334b5bb7d9
commit 13eb6f3032

View File

@ -210,6 +210,8 @@ class ActorType(IPDLType):
def fullname(self):
return self.protocol.fullname()
def isUnionType(self): return False
class UnionType(IPDLType):
def __init__(self, qname, components):
self.qname = qname