2019-12-04 01:26:26 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
using Wabbajack.DTOs;
|
|
|
|
|
using Wabbajack.DTOs.Directives;
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
|
namespace Wabbajack.Compiler.CompilationSteps;
|
|
|
|
|
|
|
|
|
|
public class DropAll : ACompilationStep
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
|
public DropAll(ACompiler compiler) : base(compiler)
|
2019-10-30 12:29:06 +00:00
|
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
|
}
|
2019-10-30 12:29:06 +00:00
|
|
|
|
|
2022-10-07 22:57:12 +00:00
|
|
|
|
public override ValueTask<Directive?> Run(RawSourceFile source)
|
2021-10-23 16:51:17 +00:00
|
|
|
|
{
|
|
|
|
|
var result = source.EvolveTo<NoMatch>();
|
|
|
|
|
result.Reason = "No Match in Stack";
|
2022-10-07 22:57:12 +00:00
|
|
|
|
return ValueTask.FromResult<Directive?>(result);
|
2019-10-30 12:29:06 +00:00
|
|
|
|
}
|
2021-10-23 16:51:17 +00:00
|
|
|
|
}
|