10 lines
230 B
C#
10 lines
230 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
using Microsoft.CodeAnalysis.CSharp.Syntax;
|
|||
|
|
|
|||
|
|
namespace wvdet.CodeChecker
|
|||
|
|
{
|
|||
|
|
public interface ICheckable
|
|||
|
|
{
|
|||
|
|
List<Detail> Check(string filepath, CompilationUnitSyntax root);
|
|||
|
|
}
|
|||
|
|
}
|