org.aya.tyck.order.TyckUnit Maven / Gradle / Ivy
// 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.tyck.order;
import org.aya.concrete.stmt.Signatured;
import org.aya.concrete.stmt.Stmt;
import org.aya.util.error.SourceNode;
public sealed interface TyckUnit
extends SourceNode
permits Stmt, Signatured {
boolean needTyck();
}