fromIterable static method
BlockSandwich
fromIterable(
- StartBlock first,
- Iterable<
DerivationCitrusSyntax> second, - EndBlock third
Implementation
static BlockSandwich fromIterable(StartBlock first, Iterable<DerivationCitrusSyntax> second, EndBlock third) {
final listResult = CitrusSyntaxList(second);
final result = BlockSandwich(first, listResult, third);
return result;
}