1. 20 7月, 2017 1 次提交
  2. 19 7月, 2017 1 次提交
  3. 18 7月, 2017 1 次提交
  4. 15 7月, 2017 2 次提交
  5. 12 7月, 2017 2 次提交
  6. 10 7月, 2017 1 次提交
  7. 08 7月, 2017 4 次提交
  8. 07 7月, 2017 1 次提交
  9. 30 6月, 2017 5 次提交
  10. 29 6月, 2017 1 次提交
  11. 27 6月, 2017 3 次提交
  12. 24 6月, 2017 4 次提交
  13. 23 6月, 2017 1 次提交
  14. 22 6月, 2017 1 次提交
  15. 21 6月, 2017 1 次提交
  16. 17 6月, 2017 2 次提交
  17. 14 6月, 2017 1 次提交
  18. 13 6月, 2017 1 次提交
  19. 01 6月, 2017 1 次提交
    • M
      Ensure that IOperations nodes within a C# local function are part of the operation tree · 3e15d4e9
      Manish Vasani 提交于
      Analysis of any code within a local function with IOperation analyzers will produce false or missing diagnostics, as the operation tree doesn't contain any operation nodes within the BoundLocalFunctionStatement. This can be a dogfood blocker for IOperation analyzers on real world code - we had few false reports due this on the Roslyn repo as we use this new language feature, and corresponding rules had to be disabled in the repo.
      3e15d4e9
  20. 20 5月, 2017 1 次提交
  21. 19 5月, 2017 1 次提交
    • M
      Add IOperation support for tuple expressions · 50fee94d
      Manish Vasani 提交于
      Fixes #10856
      
      ```
          public interface ITupleExpression : IOperation
          {
              /// <summary>
              /// Elements for tuple expression.
              /// </summary>
              ImmutableArray<IOperation> Elements { get; }
          }
      ```
      50fee94d
  22. 18 5月, 2017 1 次提交
  23. 11 5月, 2017 1 次提交
  24. 16 4月, 2017 2 次提交