From dfa6ca92a5e41ac7fc640cbbc5df6820f735b8c8 Mon Sep 17 00:00:00 2001 From: haiping008 Date: Mon, 25 Feb 2019 14:01:58 -0600 Subject: [PATCH] Expose runner.execute to public. --- src/Dotnet.Script.Core/Interactive/InteractiveRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dotnet.Script.Core/Interactive/InteractiveRunner.cs b/src/Dotnet.Script.Core/Interactive/InteractiveRunner.cs index e06c9fdb..45c24001 100644 --- a/src/Dotnet.Script.Core/Interactive/InteractiveRunner.cs +++ b/src/Dotnet.Script.Core/Interactive/InteractiveRunner.cs @@ -63,7 +63,7 @@ public virtual async Task RunLoopWithSeed(ScriptContext scriptContext) await RunLoop(); } - protected virtual async Task Execute(string input) + public virtual async Task Execute(string input) { await HandleScriptErrors(async () => {