fix YAMLValueImpl visibility

GitOrigin-RevId: fdfac0e591ed72832a42d283fa2ad096a1af9409
This commit is contained in:
Vladimir Krivosheev
2025-02-14 16:03:10 +01:00
committed by intellij-monorepo-bot
parent 502920d89b
commit d354c204c0

View File

@@ -1,16 +1,18 @@
// Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
// Copyright 2000-2025 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license.
package org.jetbrains.yaml.psi.impl;
import com.intellij.lang.ASTNode;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiElementVisitor;
import org.jetbrains.annotations.ApiStatus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.yaml.YAMLTokenTypes;
import org.jetbrains.yaml.psi.YAMLValue;
import org.jetbrains.yaml.psi.YamlPsiElementVisitor;
abstract class YAMLValueImpl extends YAMLPsiElementImpl implements YAMLValue {
@ApiStatus.Internal
public abstract class YAMLValueImpl extends YAMLPsiElementImpl implements YAMLValue {
YAMLValueImpl(@NotNull ASTNode node) {
super(node);
}