1. 31 1月, 2020 2 次提交
  2. 30 1月, 2020 6 次提交
  3. 29 1月, 2020 1 次提交
    • T
      DiagnosticAnalyzerInfoCache refactorings (#40287) · 4b19656b
      Tomáš Matoušek 提交于
      * Move "is telemetry allowed" flag to DiagnosticAnalyzerInfoCache
      
      * Clean up DiagnosticService
      
      * Fixes
      
      * Remove analyzer exception telemetry reporting.
      
      * Remove reporting analyzer exceptions from SupportedDiagnostics.
      
      The diagnostics will be reported when the compiler runs the analyzer on the compilation.
      
      * Remove unused parameter
      
      * Clean up analyzer telemetry reporting.
      
      * Test fixes
      
      * Feedback
      4b19656b
  4. 28 1月, 2020 5 次提交
  5. 27 1月, 2020 2 次提交
  6. 26 1月, 2020 2 次提交
  7. 25 1月, 2020 4 次提交
  8. 24 1月, 2020 5 次提交
  9. 23 1月, 2020 2 次提交
  10. 22 1月, 2020 7 次提交
  11. 21 1月, 2020 1 次提交
    • T
      EnC simplify reporting module diagnostics. (#40999) · d794dbee
      Tomáš Matoušek 提交于
      Previously we reported diagnostics caused by the debuggee not allowing edits in the corresponding module in EnC diagnostic analyzer.
      A module does not support edits if any of its instances does not support the edits. There are scenarios in which module instances may be loaded while in break mode.
      E.g. if the user attaches to a secondary process while debugging a primary process, the secondary process might have a module instance loaded of the same module loaded to the primary process.
      To handle these cases we hooked up debugger module load/unload events and invalidated the reported diagnostics.
      
      This approach has a few problems:
      1) EnC analyzer is now non-deterministic, as it can give different answers for the same inputs depending on the state of the debuggee
      2) Turns out that the debugger does not deliver module load/unload events in all cases (e.g. when the secondary process is killed).
      3) It's a bit complicated and would get even more complicated once we moved EnC to OOP/Cloud
      
      Instead, we don't report these errors until the user triggers the "continue" action. At this point the VS and all processes being debugged are blocked until the changes analyzed and applied.
      Since this situation is not very common the slight regression in interactivity is acceptable.
      d794dbee
  12. 19 1月, 2020 1 次提交
  13. 18 1月, 2020 2 次提交