tomokinakamaru/silverchain

View on GitHub

Showing 85 of 85 total issues

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public RuleTerm visitRuleTerm(AgParser.RuleTermContext ctx) {
    RuleFactor f = visitRuleFactor(ctx.ruleFactor());
    RuleTerm t = null;
    if (ctx.ruleTerm() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public TypeParameterList visitTypeParameterList(AgParser.TypeParameterListContext ctx) {
    TypeParameter p = visitTypeParameter(ctx.typeParameter());
    TypeParameterList ps = null;
    if (ctx.typeParameterList() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public FormalParameters visitFormalParameterList(AgParser.FormalParameterListContext ctx) {
    FormalParameter p = visitFormalParameter(ctx.formalParameter());
    FormalParameters ps = null;
    if (ctx.formalParameterList() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public ImportStatements visitAliasDeclarations(AgParser.AliasDeclarationsContext ctx) {
    ImportStatement i = visitAliasDeclaration(ctx.aliasDeclaration());
    ImportStatements is = null;
    if (ctx.aliasDeclarations() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public TypeReferences visitExceptionList(AgParser.ExceptionListContext ctx) {
    TypeReference r = visitTypeReference(ctx.typeReference());
    TypeReferences rs = null;
    if (ctx.exceptionList() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public Grammars visitClassDeclarations(AgParser.ClassDeclarationsContext ctx) {
    Grammar g = visitClassDeclaration(ctx.classDeclaration());
    Grammars gs = null;
    if (ctx.classDeclarations() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public Rules visitRuleStatements(AgParser.RuleStatementsContext ctx) {
    Rule r = visitRuleStatement(ctx.ruleStatement());
    Rules rs = null;
    if (ctx.ruleStatements() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public Rule visitRuleStatement(AgParser.RuleStatementContext ctx) {
    RuleExpression e = visitRuleExpression(ctx.ruleExpression());
    TypeReference r = null;
    if (ctx.typeReference() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public RuleExpressions visitRuleExpressionList(AgParser.RuleExpressionListContext ctx) {
    RuleExpression e = visitRuleExpression(ctx.ruleExpression());
    RuleExpressions es = null;
    if (ctx.ruleExpressionList() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public RuleFactor visitRuleFactor(AgParser.RuleFactorContext ctx) {
    RuleElement e = visitRuleElement(ctx.ruleElement());
    RepeatOperator o = null;
    if (ctx.repeatOperator() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 411..419

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 13 locations. Consider refactoring.
Open

  @Override
  public TypeArguments visitTypeArgumentList(AgParser.TypeArgumentListContext ctx) {
    TypeArgument a = visitTypeArgument(ctx.typeArgument());
    TypeArguments as = null;
    if (ctx.typeArgumentList() != null) {
Severity: Major
Found in src/main/java/silverchain/parser/adapter/ASTBuilder.java and 12 other locations - About 55 mins to fix
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 45..53
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 78..86
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 102..110
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 146..154
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 156..164
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 166..174
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 176..184
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 186..194
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 233..241
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 331..339
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 354..362
src/main/java/silverchain/parser/adapter/ASTBuilder.java on lines 364..372

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 66.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    test("Foo { Baz bar(Bar bar) baz(Baz baz)+; }")
        .name("Foo")
        .typeParameterCount(0)
        .stateCount(3)
        .end(2)
Severity: Minor
Found in src/test/java/diagram/Tests.java and 1 other location - About 45 mins to fix
src/test/java/diagram/Tests.java on lines 33..43

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 56.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    test("Foo { void bar(Bar bar); }")
        .name("Foo")
        .typeParameterCount(0)
        .stateCount(2)
        .end(1)
Severity: Minor
Found in src/test/java/diagram/Tests.java and 1 other location - About 45 mins to fix
src/test/java/diagram/Tests.java on lines 92..102

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 56.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Method syntaxError has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

      Recognizer<?, ?> recognizer,
      Object offendingSymbol,
      int line,
      int charPositionInLine,
      String msg,
Severity: Minor
Found in src/main/java/silverchain/parser/adapter/ParseErrorListener.java - About 45 mins to fix

    Method syntaxError has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

          Recognizer<?, ?> recognizer,
          Object offendingSymbol,
          int line,
          int charPositionInLine,
          String msg,
    Severity: Minor
    Found in src/main/java/silverchain/parser/adapter/TokenizeErrorListener.java - About 45 mins to fix

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      package silverchain.parser.adapter;
      
      import org.antlr.v4.runtime.BaseErrorListener;
      import org.antlr.v4.runtime.RecognitionException;
      import org.antlr.v4.runtime.Recognizer;
      src/main/java/silverchain/parser/adapter/ParseErrorListener.java on lines 1..25

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 49.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Similar blocks of code found in 2 locations. Consider refactoring.
      Open

      package silverchain.parser.adapter;
      
      import org.antlr.v4.runtime.BaseErrorListener;
      import org.antlr.v4.runtime.RecognitionException;
      import org.antlr.v4.runtime.Recognizer;
      src/main/java/silverchain/parser/adapter/TokenizeErrorListener.java on lines 1..25

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 49.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Method getSignature has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        private String getSignature(MethodDeclaration declaration) {
          StringBuilder builder = new StringBuilder();
          builder.append(declaration.getNameAsString());
          builder.append("(");
          List<String> types = new ArrayList<>();
      Severity: Minor
      Found in src/main/java/silverchain/javadoc/Javadocs.java - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method getSignature has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        private static String getSignature(Method method) {
          StringBuilder builder = new StringBuilder();
          builder.append(method.name());
          builder.append("(");
          if (method.parameters().formalParameters().isPresent()) {
      Severity: Minor
      Found in src/main/java/silverchain/javadoc/Javadocs.java - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method loadComments has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        private void loadComments(MethodDeclaration declaration) {
          String pkg = getPackageName(getCompilationUnit(declaration));
      
          ClassOrInterfaceDeclaration decl = getClassOrInterfaceDeclaration(declaration);
          if (decl == null) {
      Severity: Minor
      Found in src/main/java/silverchain/javadoc/Javadocs.java - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Severity
      Category
      Status
      Source
      Language