CloneSet6711


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
4220.982class_body_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
146456
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java
246801
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java
Clone Instance
1
Line Count
4
Source Line
6456
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java

protected void consumeSimpleAssertStatement() {
        // AssertStatement ::= 'assert' Expression ';'
        this.expressionLengthPtr--;
        pushOnAstStack(new AssertStatement(this.expressionStack[this.expressionPtr-- ], this.intStack[this.intPtr-- ]));
}


Clone Instance
2
Line Count
4
Source Line
6801
Source File
plugins/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/parser/Parser.java

protected void consumeStatementThrow() {
        // ThrowStatement ::= 'throw' Expression ';'
        this.expressionLengthPtr--;
        pushOnAstStack(new ThrowStatement(this.expressionStack[this.expressionPtr-- ], this.intStack[this.intPtr-- ]));
}


Clone AbstractionParameter Count: 2Parameter Bindings

protected void [[#variable63d196c0]]() {
  // AssertStatement ::= 'assert' Expression ';'
  // ThrowStatement ::= 'throw' Expression ';'
  this.expressionLengthPtr--;
  pushOnAstStack(new [[#variable63d195a0]](this.expressionStack[this.expressionPtr-- ], this.intStack[this.intPtr-- ]));
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#63d196c0]]
consumeSimpleAssertStatement 
12[[#63d196c0]]
consumeStatementThrow 
21[[#63d195a0]]
AssertStatement 
22[[#63d195a0]]
ThrowStatement