case IMPORT_CONTENT: {
ImportContent importContent = (ImportContent) node;
return canBeginWithEmptySpace(importContent.moduleRef);
}
case STRUCT_INIT_ENTRY: {
StructInitEntry initEntry = (StructInitEntry) node;
return canBeginWithEmptySpace(initEntry.member != null ? initEntry.member : (ASTNode) initEntry.value);
}
case ARRAY_INIT_ENTRY: {
ArrayInitEntry initEntry = (ArrayInitEntry) node;
return canBeginWithEmptySpace(initEntry.index != null ? initEntry.index : (ASTNode) initEntry.value);