public async Task <ExecutionResult> ExecuteTextAsync(string text) { try { if (InteractiveCommands.InCommand) { var cmdResult = InteractiveCommands.TryExecuteCommand(); if (cmdResult != null) { return(await cmdResult.ConfigureAwait(false)); } } var result = await _interactiveHost.ExecuteAsync(text).ConfigureAwait(false); if (result.Success) { SubmissionSuccessfullyExecuted(result); } return(new ExecutionResult(result.Success)); } catch (Exception e) when(FatalError.Report(e)) { throw ExceptionUtilities.Unreachable; } }
public async Task <ExecutionResult> ExecuteCodeAsync(string text) { try { if (InteractiveCommands.InCommand) { var cmdResult = InteractiveCommands.TryExecuteCommand(); if (cmdResult != null) { return(await cmdResult.ConfigureAwait(false)); } } var result = await _interactiveHost.ExecuteAsync(text).ConfigureAwait(false); if (result.Success) { // We are not executing a command (the current content type is not "Interactive Command"), // so the source document should not have been removed. Debug.Assert(_workspace.CurrentSolution.GetProject(_currentSubmissionProjectId).HasDocuments); SubmissionSuccessfullyExecuted(result); } return(new ExecutionResult(result.Success)); } catch (Exception e) when(FatalError.Report(e)) { throw ExceptionUtilities.Unreachable; } }
public async Task <ExecutionResult> ExecuteCodeAsync(string text) { try { if (InteractiveCommands.InCommand) { var cmdResult = InteractiveCommands.TryExecuteCommand(); if (cmdResult != null) { return(await cmdResult.ConfigureAwait(false)); } } var result = await _interactiveHost.ExecuteAsync(text).ConfigureAwait(false); if (result.Success) { // We are not executing a command (the current content type is not "Interactive Command"), // so the source document should not have been removed. Debug.Assert(_workspace.CurrentSolution.GetProject(_currentSubmissionProjectId).HasDocuments); // only remember the submission if we compiled successfully, otherwise we // ignore it's id so we don't reference it in the next submission. _previousSubmissionProjectId = _currentSubmissionProjectId; // Grab any directive references from it var compilation = await _workspace.CurrentSolution.GetProject(_previousSubmissionProjectId).GetCompilationAsync().ConfigureAwait(false); _references = _references.Union(compilation.DirectiveReferences); // update local search paths - remote paths has already been updated UpdateResolvers(result); } return(new ExecutionResult(result.Success)); } catch (Exception e) when(FatalError.Report(e)) { throw ExceptionUtilities.Unreachable; } }