1. 19 2月, 2020 1 次提交
  2. 23 1月, 2020 1 次提交
  3. 06 1月, 2018 1 次提交
  4. 15 12月, 2017 1 次提交
  5. 29 6月, 2017 1 次提交
  6. 21 7月, 2016 1 次提交
  7. 20 7月, 2016 1 次提交
  8. 16 10月, 2015 2 次提交
  9. 26 8月, 2015 1 次提交
  10. 02 7月, 2015 1 次提交
    • J
      CodeFormatter Run · 95a76fb1
      Jared Parsons 提交于
      Fell out of our normal cadence for this during the push for RTM. Now that we
      had a bit more breathing room getting us back on track here.
      95a76fb1
  11. 27 5月, 2015 1 次提交
    • M
      User scenario: IDE built-in analyzer UnboundIdentifiersDiagnosticAnalyzer... · 89db5476
      Manish Vasani 提交于
      User scenario: IDE built-in analyzer UnboundIdentifiersDiagnosticAnalyzer throws a null reference exception and gets disabled with an exception diagnostic in the error list.
      
      Fix description: Add a missing null check when computing arguments for object creation expression.
      
      Fixes #3027
      
      Testing done: Existing tests
      89db5476
  12. 27 4月, 2015 1 次提交
    • J
      Report semantic errors in lambdas · 4b733b8b
      Jonathon Marolf 提交于
      The compiler does not generate semantic errors inside lambdas in the
      presence of syntactic errors causing several features to not work in
      lambdas with syntax errors.  The bug for this
      ([1867](https://github.com/dotnet/roslyn/issues/1867)) was moved to
      milestone 1.1 so we are going to use an analyzer in the interim for 1.0.
      
      1. We now check for IncompleteMemberSyntax nodes and
      LambdaExpressionSyntax nodes which contain syntax diagnostics on any of
      their descendant nodes.
      2. We report both unbound identifier names and constructors that the
      compiler reports as binding, but which fail overload resolution
      (actually don't exist).
      
      Performance considerations should be mitigated by only doing these
      checks only lambdas with syntax errors.
      
      Other notes:
      
      - Renamed analyzer to UnboundIdentifier instead of AddImport since it is
      being used in more places than just the AddImport fixer
      - Updated the DiagnosticDescriptor for this analyzer to take
      localizeable strings.
      
      Fixes #1744
      Fixes #1241
      Fixes #1239
      4b733b8b