| Previous CloneSet | Next CloneSet | Back to Main Report |
| Clone Mass | Clones in CloneSet | Parameter Count | Clone Similarity | Syntax Category [Sequence Length] |
|---|---|---|---|---|
| 8 | 19 | 4 | 0.953 | statement_sequence[2] |
| Clone Abstraction | Parameter Bindings |
| Clone Instance (Click to see clone) | Line Count | Source Line | Source File |
|---|---|---|---|
| 1 | 8 | 582 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 2 | 8 | 592 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 3 | 8 | 602 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 4 | 8 | 612 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 5 | 8 | 622 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 6 | 8 | 632 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 7 | 8 | 642 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 8 | 8 | 662 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 9 | 8 | 672 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 10 | 8 | 682 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 11 | 8 | 692 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 12 | 8 | 702 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 13 | 8 | 712 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 14 | 8 | 722 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 15 | 8 | 732 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 16 | 8 | 742 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 17 | 8 | 752 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 18 | 8 | 762 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| 19 | 8 | 772 | plugins/org.eclipse.jdt.core/formatter/org/eclipse/jdt/internal/formatter/DefaultCodeFormatterOptions.java |
| ||||
final Object alignmentForArgumentsInAllocationExpressionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ALLOCATION_EXPRESSION);
if (alignmentForArgumentsInAllocationExpressionOption != null) {
try {
this.alignment_for_arguments_in_allocation_expression = Integer.parseInt((String) alignmentForArgumentsInAllocationExpressionOption);
} catch (NumberFormatException e) {
this.alignment_for_arguments_in_allocation_expression = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_arguments_in_allocation_expression = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForArgumentsInEnumConstantOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT);
if (alignmentForArgumentsInEnumConstantOption != null) {
try {
this.alignment_for_arguments_in_enum_constant = Integer.parseInt((String) alignmentForArgumentsInEnumConstantOption);
} catch (NumberFormatException e) {
this.alignment_for_arguments_in_enum_constant = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_arguments_in_enum_constant = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForArgumentsInExplicitConstructorCallOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_EXPLICIT_CONSTRUCTOR_CALL);
if (alignmentForArgumentsInExplicitConstructorCallOption != null) {
try {
this.alignment_for_arguments_in_explicit_constructor_call = Integer.parseInt((String) alignmentForArgumentsInExplicitConstructorCallOption);
} catch (NumberFormatException e) {
this.alignment_for_arguments_in_explicit_constructor_call = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_arguments_in_explicit_constructor_call = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForArgumentsInMethodInvocationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_METHOD_INVOCATION);
if (alignmentForArgumentsInMethodInvocationOption != null) {
try {
this.alignment_for_arguments_in_method_invocation = Integer.parseInt((String) alignmentForArgumentsInMethodInvocationOption);
} catch (NumberFormatException e) {
this.alignment_for_arguments_in_method_invocation = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_arguments_in_method_invocation = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForArgumentsInQualifiedAllocationExpressionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_QUALIFIED_ALLOCATION_EXPRESSION);
if (alignmentForArgumentsInQualifiedAllocationExpressionOption != null) {
try {
this.alignment_for_arguments_in_qualified_allocation_expression = Integer.parseInt((String) alignmentForArgumentsInQualifiedAllocationExpressionOption);
} catch (NumberFormatException e) {
this.alignment_for_arguments_in_qualified_allocation_expression = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_arguments_in_qualified_allocation_expression = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForAssignmentOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ASSIGNMENT);
if (alignmentForAssignmentOption != null) {
try {
this.alignment_for_assignment = Integer.parseInt((String) alignmentForAssignmentOption);
} catch (NumberFormatException e) {
this.alignment_for_assignment = Alignment.M_ONE_PER_LINE_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_assignment = Alignment.M_ONE_PER_LINE_SPLIT;
}
}
|
| ||||
final Object alignmentForBinaryExpressionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION);
if (alignmentForBinaryExpressionOption != null) {
try {
this.alignment_for_binary_expression = Integer.parseInt((String) alignmentForBinaryExpressionOption);
} catch (NumberFormatException e) {
this.alignment_for_binary_expression = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_binary_expression = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForConditionalExpressionOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION);
if (alignmentForConditionalExpressionOption != null) {
try {
this.alignment_for_conditional_expression = Integer.parseInt((String) alignmentForConditionalExpressionOption);
} catch (NumberFormatException e) {
this.alignment_for_conditional_expression = Alignment.M_ONE_PER_LINE_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_conditional_expression = Alignment.M_ONE_PER_LINE_SPLIT;
}
}
|
| ||||
final Object alignmentForEnumConstantsOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_ENUM_CONSTANTS);
if (alignmentForEnumConstantsOption != null) {
try {
this.alignment_for_enum_constants = Integer.parseInt((String) alignmentForEnumConstantsOption);
} catch (NumberFormatException e) {
this.alignment_for_enum_constants = Alignment.NONE;
}
catch (ClassCastException e) {
this.alignment_for_enum_constants = Alignment.NONE;
}
}
|
| ||||
final Object alignmentForExpressionsInArrayInitializerOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_ARRAY_INITIALIZER);
if (alignmentForExpressionsInArrayInitializerOption != null) {
try {
this.alignment_for_expressions_in_array_initializer = Integer.parseInt((String) alignmentForExpressionsInArrayInitializerOption);
} catch (NumberFormatException e) {
this.alignment_for_expressions_in_array_initializer = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_expressions_in_array_initializer = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForMultipleFieldsOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS);
if (alignmentForMultipleFieldsOption != null) {
try {
this.alignment_for_multiple_fields = Integer.parseInt((String) alignmentForMultipleFieldsOption);
} catch (NumberFormatException e) {
this.alignment_for_multiple_fields = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_multiple_fields = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForParametersInConstructorDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_CONSTRUCTOR_DECLARATION);
if (alignmentForParametersInConstructorDeclarationOption != null) {
try {
this.alignment_for_parameters_in_constructor_declaration = Integer.parseInt((String) alignmentForParametersInConstructorDeclarationOption);
} catch (NumberFormatException e) {
this.alignment_for_parameters_in_constructor_declaration = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_parameters_in_constructor_declaration = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForParametersInMethodDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_METHOD_DECLARATION);
if (alignmentForParametersInMethodDeclarationOption != null) {
try {
this.alignment_for_parameters_in_method_declaration = Integer.parseInt((String) alignmentForParametersInMethodDeclarationOption);
} catch (NumberFormatException e) {
this.alignment_for_parameters_in_method_declaration = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_parameters_in_method_declaration = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForSelectorInMethodInvocationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SELECTOR_IN_METHOD_INVOCATION);
if (alignmentForSelectorInMethodInvocationOption != null) {
try {
this.alignment_for_selector_in_method_invocation = Integer.parseInt((String) alignmentForSelectorInMethodInvocationOption);
} catch (NumberFormatException e) {
this.alignment_for_selector_in_method_invocation = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_selector_in_method_invocation = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForSuperclassInTypeDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERCLASS_IN_TYPE_DECLARATION);
if (alignmentForSuperclassInTypeDeclarationOption != null) {
try {
this.alignment_for_superclass_in_type_declaration = Integer.parseInt((String) alignmentForSuperclassInTypeDeclarationOption);
} catch (NumberFormatException e) {
this.alignment_for_superclass_in_type_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_superclass_in_type_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
}
}
|
| ||||
final Object alignmentForSuperinterfacesInEnumDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION);
if (alignmentForSuperinterfacesInEnumDeclarationOption != null) {
try {
this.alignment_for_superinterfaces_in_enum_declaration = Integer.parseInt((String) alignmentForSuperinterfacesInEnumDeclarationOption);
} catch (NumberFormatException e) {
this.alignment_for_superinterfaces_in_enum_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_superinterfaces_in_enum_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
}
}
|
| ||||
final Object alignmentForSuperinterfacesInTypeDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_TYPE_DECLARATION);
if (alignmentForSuperinterfacesInTypeDeclarationOption != null) {
try {
this.alignment_for_superinterfaces_in_type_declaration = Integer.parseInt((String) alignmentForSuperinterfacesInTypeDeclarationOption);
} catch (NumberFormatException e) {
this.alignment_for_superinterfaces_in_type_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_superinterfaces_in_type_declaration = Alignment.M_NEXT_SHIFTED_SPLIT;
}
}
|
| ||||
final Object alignmentForThrowsClauseInConstructorDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_CONSTRUCTOR_DECLARATION);
if (alignmentForThrowsClauseInConstructorDeclarationOption != null) {
try {
this.alignment_for_throws_clause_in_constructor_declaration = Integer.parseInt((String) alignmentForThrowsClauseInConstructorDeclarationOption);
} catch (NumberFormatException e) {
this.alignment_for_throws_clause_in_constructor_declaration = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_throws_clause_in_constructor_declaration = Alignment.M_COMPACT_SPLIT;
}
}
|
| ||||
final Object alignmentForThrowsClauseInMethodDeclarationOption = settings.get(DefaultCodeFormatterConstants.FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_METHOD_DECLARATION);
if (alignmentForThrowsClauseInMethodDeclarationOption != null) {
try {
this.alignment_for_throws_clause_in_method_declaration = Integer.parseInt((String) alignmentForThrowsClauseInMethodDeclarationOption);
} catch (NumberFormatException e) {
this.alignment_for_throws_clause_in_method_declaration = Alignment.M_COMPACT_SPLIT;
}
catch (ClassCastException e) {
this.alignment_for_throws_clause_in_method_declaration = Alignment.M_COMPACT_SPLIT;
}
}
|
| |||
final Object [[#variablebaeb96a0]]= settings.get(DefaultCodeFormatterConstants. [[#variablebb515a00]]);
if ( [[#variablebaeb96a0]]!= null) {
try {
this. [[#variablebaeb9640]]= Integer.parseInt((String) [[#variablebaeb96a0]]);
}
catch (NumberFormatException e) {
this. [[#variablebaeb9640]]= Alignment. [[#variablebaeb96c0]];
}
catch (ClassCastException e) {
this. [[#variablebaeb9640]]= Alignment. [[#variablebaeb96c0]];
}
}
|
| CloneAbstraction |
| Parameter Index | Clone Instance | Parameter Name | Value |
|---|---|---|---|
| 1 | 1 | [[#baeb96a0]] | alignmentForArgumentsInAllocationExpressionOption |
| 1 | 2 | [[#baeb96a0]] | alignmentForArgumentsInEnumConstantOption |
| 1 | 3 | [[#baeb96a0]] | alignmentForArgumentsInExplicitConstructorCallOption |
| 1 | 4 | [[#baeb96a0]] | alignmentForArgumentsInMethodInvocationOption |
| 1 | 5 | [[#baeb96a0]] | alignmentForArgumentsInQualifiedAllocationExpressionOption |
| 1 | 6 | [[#baeb96a0]] | alignmentForAssignmentOption |
| 1 | 7 | [[#baeb96a0]] | alignmentForBinaryExpressionOption |
| 1 | 8 | [[#baeb96a0]] | alignmentForConditionalExpressionOption |
| 1 | 9 | [[#baeb96a0]] | alignmentForEnumConstantsOption |
| 1 | 10 | [[#baeb96a0]] | alignmentForExpressionsInArrayInitializerOption |
| 1 | 11 | [[#baeb96a0]] | alignmentForMultipleFieldsOption |
| 1 | 12 | [[#baeb96a0]] | alignmentForParametersInConstructorDeclarationOption |
| 1 | 13 | [[#baeb96a0]] | alignmentForParametersInMethodDeclarationOption |
| 1 | 14 | [[#baeb96a0]] | alignmentForSelectorInMethodInvocationOption |
| 1 | 15 | [[#baeb96a0]] | alignmentForSuperclassInTypeDeclarationOption |
| 1 | 16 | [[#baeb96a0]] | alignmentForSuperinterfacesInEnumDeclarationOption |
| 1 | 17 | [[#baeb96a0]] | alignmentForSuperinterfacesInTypeDeclarationOption |
| 1 | 18 | [[#baeb96a0]] | alignmentForThrowsClauseInConstructorDeclarationOption |
| 1 | 19 | [[#baeb96a0]] | alignmentForThrowsClauseInMethodDeclarationOption |
| 2 | 1 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ALLOCATION_EXPRESSION |
| 2 | 2 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_ENUM_CONSTANT |
| 2 | 3 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_EXPLICIT_CONSTRUCTOR_CALL |
| 2 | 4 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_METHOD_INVOCATION |
| 2 | 5 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_ARGUMENTS_IN_QUALIFIED_ALLOCATION_EXPRESSION |
| 2 | 6 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_ASSIGNMENT |
| 2 | 7 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_BINARY_EXPRESSION |
| 2 | 8 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_CONDITIONAL_EXPRESSION |
| 2 | 9 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_ENUM_CONSTANTS |
| 2 | 10 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_EXPRESSIONS_IN_ARRAY_INITIALIZER |
| 2 | 11 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_MULTIPLE_FIELDS |
| 2 | 12 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_CONSTRUCTOR_DECLARATION |
| 2 | 13 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_PARAMETERS_IN_METHOD_DECLARATION |
| 2 | 14 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_SELECTOR_IN_METHOD_INVOCATION |
| 2 | 15 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_SUPERCLASS_IN_TYPE_DECLARATION |
| 2 | 16 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_ENUM_DECLARATION |
| 2 | 17 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_SUPERINTERFACES_IN_TYPE_DECLARATION |
| 2 | 18 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_CONSTRUCTOR_DECLARATION |
| 2 | 19 | [[#bb515a00]] | FORMATTER_ALIGNMENT_FOR_THROWS_CLAUSE_IN_METHOD_DECLARATION |
| 3 | 1 | [[#baeb9640]] | alignment_for_arguments_in_allocation_expression |
| 3 | 2 | [[#baeb9640]] | alignment_for_arguments_in_enum_constant |
| 3 | 3 | [[#baeb9640]] | alignment_for_arguments_in_explicit_constructor_call |
| 3 | 4 | [[#baeb9640]] | alignment_for_arguments_in_method_invocation |
| 3 | 5 | [[#baeb9640]] | alignment_for_arguments_in_qualified_allocation_expression |
| 3 | 6 | [[#baeb9640]] | alignment_for_assignment |
| 3 | 7 | [[#baeb9640]] | alignment_for_binary_expression |
| 3 | 8 | [[#baeb9640]] | alignment_for_conditional_expression |
| 3 | 9 | [[#baeb9640]] | alignment_for_enum_constants |
| 3 | 10 | [[#baeb9640]] | alignment_for_expressions_in_array_initializer |
| 3 | 11 | [[#baeb9640]] | alignment_for_multiple_fields |
| 3 | 12 | [[#baeb9640]] | alignment_for_parameters_in_constructor_declaration |
| 3 | 13 | [[#baeb9640]] | alignment_for_parameters_in_method_declaration |
| 3 | 14 | [[#baeb9640]] | alignment_for_selector_in_method_invocation |
| 3 | 15 | [[#baeb9640]] | alignment_for_superclass_in_type_declaration |
| 3 | 16 | [[#baeb9640]] | alignment_for_superinterfaces_in_enum_declaration |
| 3 | 17 | [[#baeb9640]] | alignment_for_superinterfaces_in_type_declaration |
| 3 | 18 | [[#baeb9640]] | alignment_for_throws_clause_in_constructor_declaration |
| 3 | 19 | [[#baeb9640]] | alignment_for_throws_clause_in_method_declaration |
| 4 | 1 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 2 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 3 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 4 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 5 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 6 | [[#baeb96c0]] | M_ONE_PER_LINE_SPLIT |
| 4 | 7 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 8 | [[#baeb96c0]] | M_ONE_PER_LINE_SPLIT |
| 4 | 9 | [[#baeb96c0]] | NONE |
| 4 | 10 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 11 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 12 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 13 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 14 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 15 | [[#baeb96c0]] | M_NEXT_SHIFTED_SPLIT |
| 4 | 16 | [[#baeb96c0]] | M_NEXT_SHIFTED_SPLIT |
| 4 | 17 | [[#baeb96c0]] | M_NEXT_SHIFTED_SPLIT |
| 4 | 18 | [[#baeb96c0]] | M_COMPACT_SPLIT |
| 4 | 19 | [[#baeb96c0]] | M_COMPACT_SPLIT |