case IMPORT_SELECTIVE: {
ImportSelective importSelective = (ImportSelective) node;
return canBeginWithEmptySpace((ASTNode) importSelective.fragment);
}
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);