All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.go.checks.CodeAfterJumpGoCheck Maven / Gradle / Ivy

The newest version!
/*
 * SonarSource Go
 * Copyright (C) 2018-2025 SonarSource SA
 * mailto:info AT sonarsource DOT com
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the Sonar Source-Available License Version 1, as published by SonarSource SA.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the Sonar Source-Available License for more details.
 *
 * You should have received a copy of the Sonar Source-Available License
 * along with this program; if not, see https://sonarsource.com/license/ssal/
 */
package org.sonar.go.checks;

import org.sonar.check.Rule;
import org.sonarsource.slang.api.NativeTree;
import org.sonarsource.slang.api.Tree;
import org.sonarsource.slang.checks.CodeAfterJumpCheck;

import static org.sonar.go.checks.NativeKinds.LABEL;
import static org.sonar.go.checks.NativeKinds.SEMICOLON;

@Rule(key = "S1763")
public class CodeAfterJumpGoCheck extends CodeAfterJumpCheck {
  @Override
  protected boolean isValidAfterJump(Tree tree) {
    return tree instanceof NativeTree &&
           ((NativeTree) tree).nativeKind().toString().contains(LABEL);
  }

  @Override
  protected boolean shouldIgnore(Tree tree) {
    return tree instanceof NativeTree &&
           ((NativeTree) tree).nativeKind().toString().equals(SEMICOLON);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy