1. 22 8月, 2018 3 次提交
  2. 21 8月, 2018 8 次提交
  3. 18 8月, 2018 5 次提交
  4. 17 8月, 2018 1 次提交
  5. 16 8月, 2018 4 次提交
  6. 15 8月, 2018 2 次提交
  7. 14 8月, 2018 10 次提交
  8. 13 8月, 2018 3 次提交
  9. 11 8月, 2018 4 次提交
    • A
      Add a workaround for long pipe path names (#28841) · 161765c2
      Andy Gocke 提交于
      There's a problem on MacOS where the pipe name may be too long to
      use as a Unix domain socket. Unfortunately, there's no way in the
      version of CoreFX that we reference to override the path name
      used for the named pipe. If the path is too long then the compiler
      server spins infinitely trying to connect to a path.
      
      Since we can't use our own path, the best we can do right now is
      abort compiler server usage if the path would be too long. This
      commit adds a check on Unix machines running on CoreCLR to
      detect when the constructed path will be too long, and bail out
      if this is the case.
      161765c2
    • J
      Remove spurious "cast is redundant" when accessing hidden member · 60ae70a0
      Joey Robichaud 提交于
      The AbstractSpeculationAnalyzer would check whether casting symbols
      used in Invocable expressions would break semantics. However it was not
      considering all MemberAccess to be potentially invokable. This Changes
      the IsInvokable check to consider all MemberAccess expressions.
      
      This fixes #28412.
      60ae70a0
    • C
      Better handle parameter names. · 7da42fc9
      Cyrus Najmabadi 提交于
      7da42fc9
    • S