Esempio n. 1
0
 public override Task <object> Evaluate(EvaluationContext ctx)
 {
     return(Task.FromResult <object>(Value));
 }
Esempio n. 2
0
 public override IAsyncEnumerable <Path> ComputePaths(EvaluationContext ctx)
 {
     return(AsyncUtil.Empty <Path>());
 }
Esempio n. 3
0
 public override async Task GenerateOutputs(EvaluationContext ctx)
 {
     var scopedCtx = GetScopeLocalContext(ctx);
     await Inner.GenerateOutputs(scopedCtx);
 }