case ARRAY_INIT_ENTRY: {
ArrayInitEntry initEntry = (ArrayInitEntry) node;
return canBeginWithEmptySpace(initEntry.index != null ? initEntry.index : (ASTNode) initEntry.value);
}
case MAPARRAY_ENTRY: {
MapArrayLiteralKeyValue mapArrayEntry = (MapArrayLiteralKeyValue) node;
return canBeginWithEmptySpace(mapArrayEntry.key);
}
case BLOCK_STATEMENT:
case BLOCK_STATEMENT_UNSCOPED: {