| library test; |
| import self as self; |
| import "dart:core" as core; |
| |
| static method strings() → core::List<core::String*>* { |
| core::Iterable<core::String*>* stuff = core::_GrowableList::•<dynamic>(0).{core::Iterable::expand}<core::String*>((dynamic i) → core::List<core::String*>* { |
| return core::_GrowableList::•<core::String*>(0); |
| }){((dynamic) →* core::Iterable<core::String*>*) →* core::Iterable<core::String*>*}; |
| return stuff.{core::Iterable::toList}(){({growable: core::bool*}) →* core::List<core::String*>*}; |
| } |
| static method main() → dynamic { |
| self::strings(); |
| } |