public void ToSource(StringBuilder sb) { if (attributes != null) { attributes.ToSource(sb); this.NewLine(sb); } TraceModifiers(Modifiers, sb); sb.append("delegate "); Type.ToSource(sb); sb.append(" "); Name.ToSource(sb); sb.append("("); if (Params != null) { String comma = ""; for(ParamDeclNode pdn:Params) { sb.append(comma); comma = ", "; pdn.ToSource(sb); } } sb.append(");"); this.NewLine(sb); }
public void ToSource(StringBuilder sb) { if (attributes != null) { attributes.ToSource(sb); this.NewLine(sb); } this.TraceModifiers(this.modifiers, sb); if (isStaticConstructor) { sb.append("static "); } this.names.get(0).ToSource(sb); sb.append("("); String comma = ""; if (params != null) { for (int i = 0; i < params.size(); i++) { sb.append(comma); comma = ", "; params.get(i).ToSource(sb); } } sb.append(")"); // possible :this or :base if (hasBase) { sb.append(" : base("); } else if (hasThis) { sb.append(" : this("); } if (hasBase || hasThis) { if (thisBaseArgs != null) { comma = ""; for (int i = 0; i < thisBaseArgs.size(); i++) { sb.append(comma); comma = ", "; thisBaseArgs.get(i).ToSource(sb); } } sb.append(")"); } // start block this.NewLine(sb); statementBlock.ToSource(sb); }
Clone fragments detected by clone detection tool
File path: /ArgoUML-0.34-src/argouml-csharp/src/org/argouml/language/csharp/importer/csparser/types/DelegateNode.java File path: /ArgoUML-0.34-src/argouml-csharp/src/org/argouml/language/csharp/importer/csparser/members/ConstructorNode.java
Method name: void ToSource(StringBuilder) Method name: void ToSource(StringBuilder)
Number of AST nodes: 4 Number of AST nodes: 4
1
public  void ToSource(StringBuilder sb)
1
public  void ToSource(StringBuilder sb)
2
		{
2
		{
3
			if (attributes != null)
3
			if (attributes != null)
4
			{
4
			{
5
				attributes.ToSource(sb);
5
				attributes.ToSource(sb);
6
				this.NewLine(sb);
6
				this.NewLine(sb);
7
			}
7
			}
8
			TraceModifiers(Modifiers, sb);
8
			this.TraceModifiers(this.modifiers, sb);
9
9
10
			sb.append("delegate ");
10
			if (isStaticConstructor)
11
			Type.ToSource(sb);
11
			{
12
			sb.append(" ");
12
				sb.append("static ");
13
			Name.ToSource(sb);
13
			}
14
14
15
			sb.append("(");
15
			this.names.get(0).ToSource(sb);
16
			if (Params != null)
16
			sb.append("(");
17
			{
17
18
				String comma = "";
18
			String comma = "";
19
				for(ParamDeclNode pdn:Params)
19
			if (params != null)
20
				{
20
			{
21
					sb.append(comma);
21
				for (int i = 0; i < params.size(); i++)
22
					comma = ", ";
22
				{
23
					pdn.ToSource(sb);
23
					sb.append(comma);
24
				}
24
					comma = ", ";
25
			}
25
					params.get(i).ToSource(sb);
26
			sb.append(");");
26
				}
27
			this.NewLine(sb);
27
			}
28
28
			sb.append(")");
29
		}
29
30
			// possible :this or :base
31
			if (hasBase)
32
			{
33
				sb.append(" : base(");
34
			}
35
			else if (hasThis)
36
			{
37
				sb.append(" : this(");
38
			}
39
			if (hasBase || hasThis)
40
			{
41
				if (thisBaseArgs != null)
42
				{
43
					comma = "";
44
					for (int i = 0; i < thisBaseArgs.size(); i++)
45
					{
46
						sb.append(comma);
47
						comma = ", ";
48
						thisBaseArgs.get(i).ToSource(sb);
49
					}
50
				}
51
				sb.append(")");
52
			}
53
54
			// start block
55
			this.NewLine(sb);
56
57
			statementBlock.ToSource(sb);
58
59
        }
  1. {Non-refactorable}
    Mapping Summary
    Number of mapped statements5
    Number of unmapped statements in the first code fragment0
    Number of unmapped statements in the second code fragment0
    Time elapsed for statement mapping (ms)0.0
    Similarity Score0.667
    Clone typeType 2
    Mapped Statements
    ID Statement ID Statement
    12
    for (ParamDeclNode pdn : Params)
    12
    for (ParamDeclNode pdn : Params)
    11
    for (int i = 0; i < params.size(); i++)
    Differences
    Expression1Expression2Difference
    ParamsparamsVARIABLE_NAME_MISMATCH
    ParamsparamsVARIABLE_NAME_MISMATCH
    11
    for (int i = 0; i < params.size(); i++)
    13
    sb.append(comma);
    12
    sb.append(comma);
    14
    comma = ", ";
    13
    comma = ", ";
    15
    pdn.ToSource(sb);
    15
    pdn.ToSource(sb);
    14
    params.get(i).ToSource(sb);
    Differences
    Expression1Expression2Difference
    pdnparams.get(i)TYPE_COMPATIBLE_REPLACEMENT
    Preondition Violations
    Expression pdn cannot be parameterized, because it has dependencies to/from statements that will be extracted
    14
    params.get(i).ToSource(sb);
    Precondition Violations (1)
    Row Violation
    1Expression pdn cannot be parameterized, because it has dependencies to/from statements that will be extracted