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

org.aya.concrete.parse.error.BadModifierWarn Maven / Gradle / Ivy

There is a newer version: 0.33.0
Show newest version
// Copyright (c) 2020-2021 Yinsen (Tesla) Zhang.
// Use of this source code is governed by the MIT license that can be found in the LICENSE.md file.
package org.aya.concrete.parse.error;

import org.aya.api.distill.DistillerOptions;
import org.aya.api.error.Problem;
import org.aya.distill.BaseDistiller;
import org.aya.generic.Modifier;
import org.aya.pretty.doc.Doc;
import org.aya.util.error.SourcePos;
import org.jetbrains.annotations.NotNull;

public record BadModifierWarn(
  @Override @NotNull SourcePos sourcePos,
  @NotNull Modifier modifier
) implements Problem {
  @Override public @NotNull Doc describe(@NotNull DistillerOptions options) {
    return Doc.sep(Doc.plain("Ignoring"), Doc.styled(BaseDistiller.KEYWORD, modifier.keyword));
  }

  @Override public @NotNull Severity level() {
    return Severity.WARN;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy