mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
remove unreachable code in codegen
code is unreachable after return, and identical to the upper block
This commit is contained in:
parent
dfb482a2b7
commit
315120d6e8
1 changed files with 0 additions and 16 deletions
|
@ -3800,22 +3800,6 @@ class CGUnionConversionStruct(CGThing):
|
|||
pre="impl FromJSValConvertible for %s {\n" % self.type,
|
||||
post="\n}")
|
||||
|
||||
conversions.append(CGGeneric(
|
||||
"throw_not_in_union(cx, \"%s\");\n"
|
||||
"Err(())" % ", ".join(names)))
|
||||
method = CGWrapper(
|
||||
CGIndenter(CGList(conversions, "\n\n")),
|
||||
pre="unsafe fn from_jsval(cx: *mut JSContext,\n"
|
||||
" value: HandleValue, _option: ()) -> Result<%s, ()> {\n" % self.type,
|
||||
post="\n}")
|
||||
return CGWrapper(
|
||||
CGIndenter(CGList([
|
||||
CGGeneric("type Config = ();"),
|
||||
method,
|
||||
], "\n")),
|
||||
pre="impl FromJSValConvertible for %s {\n" % self.type,
|
||||
post="\n}")
|
||||
|
||||
def try_method(self, t):
|
||||
templateVars = getUnionTypeTemplateVars(t, self.descriptorProvider)
|
||||
returnType = "Result<Option<%s>, ()>" % templateVars["typeName"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue