6 references to RunFromAsync
Microsoft.CodeAnalysis.InteractiveHost (1)
Interactive\Core\InteractiveHost.Service.cs (1)
756: script.RunFromAsync(state, catchException: e => true, cancellationToken: CancellationToken.None);
Microsoft.CodeAnalysis.Scripting (5)
Hosting\CommandLine\CommandLineRunner.cs (1)
295: newScript.RunFromAsync(state, catchException: e => true, cancellationToken: cancellationToken);
Script.cs (2)
358=> RunFromAsync(previousState, catchException, cancellationToken).CastAsync<ScriptState<T>, ScriptState>(); 504=> RunFromAsync(previousState, null, cancellationToken);
ScriptState.cs (2)
157=> Script.ContinueWith<object>(code, options).RunFromAsync(this, catchException, cancellationToken); 181=> Script.ContinueWith<TResult>(code, options).RunFromAsync(this, catchException, cancellationToken);