1. 08 11月, 2017 1 次提交
  2. 04 11月, 2017 1 次提交
  3. 31 10月, 2017 1 次提交
    • A
      Ensure the invariant that “each syntax node has at most one corresponding... · 38664665
      AlekseyTs 提交于
      Ensure the invariant that “each syntax node has at most one corresponding explicit IOperation node” is met for all test scenarios we have at the moment. (#22894)
      
      Related to #22229.
      
      The following changes are made:
      - Mark some synthesized bound nodes as compiler generated.
      - Use correct syntax for a tuple on the left hand side of deconstruction.
      - For throw statements, no longer add IExpressionStatementOperation on top of IThrowOperation node.
      - For IInterpolatedStringText node, ensure the underlying ILiteralExpression is marked as implicit because it is sharing syntax node with its parent.
      38664665
  4. 28 10月, 2017 2 次提交
  5. 26 10月, 2017 2 次提交
  6. 25 10月, 2017 2 次提交
  7. 21 10月, 2017 1 次提交
  8. 20 10月, 2017 2 次提交
  9. 06 10月, 2017 2 次提交
  10. 05 10月, 2017 1 次提交
    • J
      Test dumper change to include Isimplicit/Language and some formatting change (#22309) · 4b021d7e
      Jinu 提交于
      * Adding cobyrc file for testing
      
      * Adding isImplicit info to ioperation tests
      
      * Adding Language name to the test dumper
      
      * Formatting change to test dumper
      
      * Removing cobyrc file
      
      * Fixing more tests
      
      * Resolving conflicts
      
      * Moving the language to assert check
      
      * Resolving conflicts
      
      * Reacting to merge conflict
      4b021d7e
  11. 23 9月, 2017 2 次提交
  12. 22 9月, 2017 1 次提交
  13. 19 9月, 2017 1 次提交
  14. 16 9月, 2017 1 次提交
  15. 15 9月, 2017 2 次提交
  16. 09 9月, 2017 1 次提交
  17. 26 8月, 2017 1 次提交
  18. 23 8月, 2017 1 次提交
  19. 19 8月, 2017 1 次提交
    • M
      Address PR feedback · 28cdbd97
      Manish Vasani 提交于
      1. Add IsChecked flag for IIncrementExpression and ICompoundAssignmentExpression
      2. Add back VB specific binary operator kinds
      3. Add more unit tests and fix baselines of existing tests
      28cdbd97
  20. 11 8月, 2017 1 次提交
  21. 02 8月, 2017 1 次提交
  22. 30 6月, 2017 1 次提交
    • A
      Refactor to remove LocalFunctionTypeParameterSymbol (#20340) · 888d7c5b
      Andy Gocke 提交于
      LocalFunctionTypeParameterSymbol isn't necessary as long as the functionality around type constraints can be moved into a shared base class between ordinary method symbols and local function symbols.
      In fact, it would be very useful to have a shared base symbol aside from MethodSymbol between local functions, lambdas, and other source method symbols. To this end, I've renamed SourceMemberMethodSymbol to SourceOrdinaryMethodSymbol (since it is just used for ordinary member-level methods), SourceMethodSymbol to SourceMemberMethodSymbol (since it is only used as a base class for member-level method-like functions like ordinary methods, constructors, property accessors, et al.), and added a new abstract class SourceMethodSymbol that is the root of both LocalFunctionSymbol and SourceMemberMethodSymbol. This lets us unify all source method-like symbols under a single base class, SourceMethodSymbol.
      The first three commits perform the refactoring, while the last commit actually removes LocalFunctionTypeParameterSymbol and moves the necessary functionality into SourceMethodSymbol. I expect more functionality to be moved over in subsequent PRs.
      
      Fixes #17244
      888d7c5b
  23. 20 5月, 2017 1 次提交
    • N
      Fix crash in is operator used with tuples (#19413) · b0573484
      Neal Gafter 提交于
      * Fixes crash in `is` operator used with tuples
      Fixes #19310
      
      * Matching an expression of type `byte?` with a pattern of type `int` should not be allowed
      * Add documentation for the breaking change matching `int?` against the pattern `long x`
      Fixes #19151
      
      * Unify subsumption implementations
      Fixes #19273
      
      * Greatly improved code gen for value type pattern match
      Fixes #16129
      Fixes #18944
      Fixes #14252
      
      * Add test confirming that #19122 is fixed.
      Fixes #19122
      b0573484
  24. 08 4月, 2017 1 次提交
  25. 17 3月, 2017 1 次提交
  26. 21 9月, 2016 1 次提交
  27. 11 7月, 2016 1 次提交
  28. 24 6月, 2016 1 次提交
  29. 14 6月, 2016 1 次提交
    • M
      Add support for an OperationTreeVerifier - test only OperationWalker to dump... · 3679da94
      Manish Vasani 提交于
      Add support for an OperationTreeVerifier - test only OperationWalker to dump operation tree. (#11918)
      
      The dump approach should enable to us to (relatively) easily extend the existing C# and VB binding tests to verify the operation tree.
      I have moved the existing IOperation tests to the dump approach and also added couple of additional tests to demonstrate how to write these tests for entire method body operation tree verification.
      3679da94
  30. 16 3月, 2016 1 次提交
  31. 02 2月, 2016 1 次提交
  32. 26 1月, 2016 1 次提交
  33. 26 11月, 2015 1 次提交