1. 02 11月, 2017 7 次提交
  2. 01 11月, 2017 11 次提交
  3. 31 10月, 2017 6 次提交
  4. 29 10月, 2017 3 次提交
  5. 28 10月, 2017 10 次提交
  6. 27 10月, 2017 3 次提交
    • H
      prevent re-analyze to create big hashset (#22693) · 66653fe9
      Heejae Chang 提交于
      * log more info on reanalyze, and prevent re-analyze to create big hash set.
      
      * removed unnecessary log and fixed test failure
      
      * added reanalyze scope
      
      * PR feedbacks.
      66653fe9
    • H
      added completion set and fix all telemetry to track performance (#22811) · 33b8070b
      Heejae Chang 提交于
      * added time tracking to completion set.
      
      from the point we start completion set to first time we are called from VS for best match (which indicate that completion set is actually shown to users first time for this particular completion session)
      
      the event is vs/ide/vbcs/intellisense/completion
      
      if completion is done without showing UI to users (etc or tab), then event will be marked as cancelled.
      
      * added perf tracking to LB fix all.
      
      there were already existing events so I just made those to include perf info (duration) as well.
      
      among all those events, these 2 are ones we were planning to add
      
      vs/ide/vbcs/codefixes/fixalloccurrencescomputation
      this shows time from the point user invoked fix all to where we shows preview window to users.
      
      vs/ide/vbcs/codefixes/applychanges
      this shows time from user clicked Apply from preview window to where we actually applied the changes to VS
      
      there are more events between them in case we want to dig in details later such as how long it took to calculate diagnostics, how many files are affected and etc.
      
      also all related events have correlation id to group related code fix events. also for fix all case, it contains scope to show whether fix all is for document, project, solution.
      
      * PR feedback. removed unnecessary parameter
      
      * removed repeated correction id set
      
      * updated comments.
      33b8070b
    • J