Sign in
dart
/
sdk.git
/
refs/heads/dev
/
.
/
pkg
/
front_end
/
testcases
/
dart2js
/
issue56803b.dart.textual_outline_modelled.expect
blob: d0b3fb7134f72fe3293f93df1c35b872cfe0d3bc [
file
] [
log
] [
blame
] [
edit
]
class
Ext
{
const
Ext
()
:
assert
(
maybe
!=
null
,
"Must not be null"
),
_
=
"OK"
;
final
String
_
;
}
const
String
?
maybe
=
bool
.
fromEnvironment
(
"not there"
)
?
"string"
:
null
;
void
main
()
{}