author | Andrew McCreight <continuation@gmail.com> |
Tue, 07 Feb 2017 14:15:31 -0800 | |
changeset 341838 | 59c0ce731318d210b56b349f1762cf6aeba5c686 |
parent 341837 | 5df20eaa8ef4c3eff723c1d597a439e141395881 |
child 341839 | 6e0ab51985e41c41aa476bb01505cb0774468ce0 |
push id | 37230 |
push user | amccreight@mozilla.com |
push date | Fri, 10 Feb 2017 15:36:14 +0000 |
treeherder | autoland@59c0ce731318 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | billm |
bugs | 1337536 |
milestone | 54.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/ipc/ipdl/ipdl/type.py +++ b/ipc/ipdl/ipdl/type.py @@ -180,17 +180,17 @@ class IPDLType(Type): def needsMoreJuiceThan(self, o): return not IPDLType.convertsTo(self, o) class MessageType(IPDLType): def __init__(self, nested, prio, sendSemantics, direction, ctor=False, dtor=False, cdtype=None, compress=False, verify=False): assert not (ctor and dtor) - assert not (ctor or dtor) or type is not None + assert not (ctor or dtor) or cdtype is not None self.nested = nested self.prio = prio self.nestedRange = (nested, nested) self.sendSemantics = sendSemantics self.direction = direction self.params = [ ] self.returns = [ ]