using System.Collections.Generic; using Microsoft.CodeAnalysis.CSharp.Syntax; namespace wvdet.CodeChecker { public interface ICheckable { List Check(string filepath, CompilationUnitSyntax root); } }