Commit 7faf9c66 authored by Stefan Behnel's avatar Stefan Behnel

implement may_be_none() for CloneNode

parent ec2a95df
......@@ -7829,6 +7829,9 @@ class CloneNode(CoercionNode):
def result(self):
return self.arg.result()
def may_be_none(self):
return self.arg.may_be_none()
def type_dependencies(self, env):
return self.arg.type_dependencies(env)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment