Skip to content

Commit

Permalink
Bug 1515170 - in the IPDL compiler, don't use 'is' for comparing stri…
Browse files Browse the repository at this point in the history
…ngs; r=mccr8

Differential Revision: https://phabricator.services.mozilla.com/D14889

UltraBlame original commit: 0e2f7d9f5628c2f7a1bad01b371efab4b4f374c2
  • Loading branch information
marco-c committed Oct 3, 2019
1 parent 1b494ce commit 4bc82b5
Showing 1 changed file with 34 additions and 17 deletions.
51 changes: 34 additions & 17 deletions ipc/ipdl/ipdl/lower.py
Original file line number Diff line number Diff line change
Expand Up @@ -6206,7 +6206,8 @@

if
sems
is
=
=
'
in
'
Expand All @@ -6228,7 +6229,8 @@

elif
sems
is
=
=
'
move
'
Expand All @@ -6250,7 +6252,8 @@

elif
sems
is
=
=
'
out
'
Expand Down Expand Up @@ -6441,7 +6444,8 @@

if
returnsems
is
=
=
'
promise
'
Expand All @@ -6455,7 +6459,8 @@

elif
returnsems
is
=
=
'
callback
'
Expand Down Expand Up @@ -6488,7 +6493,8 @@

elif
returnsems
is
=
=
'
resolver
'
Expand Down Expand Up @@ -6603,7 +6609,8 @@

if
paramsems
is
=
=
'
move
'
Expand All @@ -6630,7 +6637,8 @@

elif
paramsems
is
=
=
'
in
'
Expand Down Expand Up @@ -6671,15 +6679,17 @@

if
retsems
is
=
=
'
in
'
:

if
retcallsems
is
=
=
'
in
'
Expand All @@ -6698,7 +6708,8 @@

elif
retcallsems
is
=
=
'
out
'
Expand Down Expand Up @@ -6726,15 +6737,17 @@

elif
retsems
is
=
=
'
out
'
:

if
retcallsems
is
=
=
'
in
'
Expand All @@ -6756,7 +6769,8 @@

elif
retcallsems
is
=
=
'
out
'
Expand All @@ -6781,7 +6795,8 @@

elif
retsems
is
=
=
'
resolver
'
Expand All @@ -6791,7 +6806,8 @@

if
retsems
is
=
=
'
resolver
'
Expand Down Expand Up @@ -20387,7 +20403,8 @@
self
.
side
is
=
=
'
parent
'
Expand Down

0 comments on commit 4bc82b5

Please sign in to comment.