Microsoft.R.Editor.Tree.TreeUpdateTask.Resume C# (CSharp) Method

Resume() private method

Resumes tree updates. If changes were made to the text buffer since suspend, full parse is performed.
private Resume ( ) : void
return void
        internal void Resume() {
            if (UpdatesSuspended) {
                UpdatesSuspended = false;

                if (TextBufferChangedSinceSuspend) {
                    TextBufferChangedSinceSuspend = false;

                    GuardedOperations.DispatchInvoke(() =>
                        ProcessPendingTextBufferChanges(async: true),
                        DispatcherPriority.ApplicationIdle);
                }
            }
        }