library test; import self as self; import "dart:core" as core; static method main() → void { core::List*>* l = *>[["hi", "world"]]; core::Iterable*>* i1 = l.{core::Iterable::map}*>((core::List* ll) → core::List* => let final core::List* #t1 = ll in #t1.{core::List::==}(null) ?{core::List*} [] : #t1); core::Iterable* i2 = i1.{core::Iterable::map}((core::List* l) → core::int* => l.{core::List::length}); core::print(i2); }