Sign in
dart
/
sdk
/
c84edaefe9e457e9cc975c050019479b2d94dea2
/
.
/
pkg
/
front_end
/
testcases
/
patterns
/
dead_if_else.dart.weak.expect
blob: 2735778c31c65bcb53ceb6b852e12c68b0179fa1 [
file
]
library
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method method
(
core
::
bool
b1
)
→
dynamic
{
{
hoisted core
::
bool
b2
;
final
synthesized core
::
bool
#0#0 = b1;
if
(
true
)
{
b2
=
#0#0;
{
core
::
print
(
b2
);
}
}
else
{
core
::
print
(
b1
);
}
}
}