1. 29 8月, 2019 2 次提交
  2. 27 8月, 2019 1 次提交
  3. 22 8月, 2019 1 次提交
  4. 20 8月, 2019 1 次提交
    • M
      Finalize asWebviewUri api · c5dc9d16
      Matt Bierner 提交于
      Fixes #79242
      
      As discussed, renames `toWebviewResource` to `asWebviewUri` to be consistent with the `asAbsolutePath` api naming
      c5dc9d16
  5. 13 8月, 2019 1 次提交
  6. 12 8月, 2019 2 次提交
  7. 30 7月, 2019 1 次提交
  8. 29 7月, 2019 1 次提交
  9. 25 7月, 2019 1 次提交
  10. 24 7月, 2019 1 次提交
  11. 23 7月, 2019 1 次提交
  12. 10 7月, 2019 2 次提交
  13. 09 7月, 2019 1 次提交
  14. 08 7月, 2019 1 次提交
  15. 02 7月, 2019 2 次提交
  16. 27 6月, 2019 1 次提交
  17. 26 6月, 2019 4 次提交
  18. 25 6月, 2019 1 次提交
  19. 19 6月, 2019 1 次提交
  20. 14 6月, 2019 1 次提交
  21. 13 6月, 2019 1 次提交
  22. 12 6月, 2019 2 次提交
  23. 08 6月, 2019 1 次提交
    • M
      Use readonly arrays for the vscode.DiagnosticCollection api · 84485121
      Matt Bierner 提交于
      ## Problem
      The diagnostic collection object is set up so that it does not mutate the arrays of diagnostics you pass to it. It also does not expect or allow mutation of diagnostics that it returns.
      
      However it it currently typed using normal arrays. This means that if an extension (such as JS/TS) wishes to use readonly diagnostics intnernally, it cannot do so without casting.
      
      ## Proposed Fix
      Use `ReadonlyArray` in diagnostic collection. This should be a safe change for the `set` type methods. The changes to `get` and `forEach` have the risk of breaking the typing of some extensions, but `get` already returned a frozen array of diagnostic so trying to mutate the array itself would have resulted in runtime error.
      84485121
  24. 06 6月, 2019 1 次提交
  25. 05 6月, 2019 1 次提交
  26. 03 6月, 2019 1 次提交
  27. 30 5月, 2019 2 次提交
  28. 29 5月, 2019 3 次提交
  29. 27 5月, 2019 1 次提交