1. 27 11月, 2020 1 次提交
  2. 20 10月, 2020 1 次提交
  3. 23 9月, 2020 1 次提交
  4. 10 7月, 2020 1 次提交
  5. 12 5月, 2020 1 次提交
  6. 22 4月, 2020 1 次提交
    • M
      Add SyncActionDescriptor.from helper (#95731) · 7aa60aef
      Matt Bierner 提交于
      * Add SyncActionDescriptor.from
      
      There are a whole lot of places in our code where have the following pattern:
      
      ```
      actionRegistry.registerWorkbenchAction(SyncActionDescriptor.create(CreateNewLocalTerminalAction, CreateNewLocalTerminalAction.ID, CreateNewLocalTerminalAction.LABEL));
      ```
      
      Notice how the class name has to be repeated  three times.
      
      This change introduces a helper function `SyncActionDescriptor.from` that lets you instead just pass in the class:
      
      ```js
      actionRegistry.registerWorkbenchAction(SyncActionDescriptor.create(CreateNewLocalTerminalAction));
      ```
      
      * Avoid cast
      7aa60aef
  7. 08 4月, 2020 1 次提交
  8. 15 11月, 2019 1 次提交
    • M
      Convert SyncActionDescriptor to use a `create` function (#84878) · 36a8322a
      Matt Bierner 提交于
      For #81574
      
      See #84669 for details of the problem around strict function types. This change converts `SyncActionDescriptor` to use a static `create` function. This allows us to make the `create` function generic so that it can take the correct types for strictFunctionTypes
      36a8322a
  9. 29 10月, 2019 1 次提交
  10. 02 10月, 2019 1 次提交
  11. 21 9月, 2019 1 次提交
  12. 18 9月, 2019 1 次提交
  13. 17 9月, 2019 1 次提交
  14. 16 9月, 2019 2 次提交
  15. 14 9月, 2019 1 次提交
  16. 11 9月, 2019 1 次提交
  17. 29 8月, 2019 1 次提交
  18. 27 8月, 2019 1 次提交
  19. 23 8月, 2019 2 次提交
  20. 22 8月, 2019 1 次提交
  21. 21 8月, 2019 2 次提交
  22. 20 8月, 2019 1 次提交
  23. 19 8月, 2019 9 次提交
  24. 11 6月, 2019 1 次提交
  25. 21 2月, 2019 1 次提交
  26. 07 2月, 2019 1 次提交
  27. 05 1月, 2019 1 次提交
  28. 13 12月, 2018 1 次提交
  29. 26 11月, 2018 1 次提交
    • B
      TPromise => Promise (#63768) · 55565d4f
      Benjamin Pasero 提交于
      * remove more TPromise (for #53526)
      
      * fix failing webview integration tests on macOS
      
      * do not instantiate TPromise (fix #62716)
      
      * more TPromise removal and fixes
      
      * 💄
      
      * 💄
      55565d4f