1. 12 8月, 2017 2 次提交
  2. 11 8月, 2017 2 次提交
  3. 10 8月, 2017 3 次提交
  4. 09 8月, 2017 12 次提交
  5. 08 8月, 2017 8 次提交
    • J
      Tagging VB/C# Ioperation tests (#21310) · f7b0555c
      Jinu 提交于
      * Tagging VB/C# Ioperation tests
      
      * Fix the Wrong Tagging
      f7b0555c
    • A
      Re-baseline some emit tests · 343ada1b
      Andy Gocke 提交于
      The frame creation pass now considers scope of captured variable
      introduction instead of closure creation, so the ordering can change if
      two or more nested functions access variables 'outside-in', e.g.
      
      ```csharp
      {
          int x = 0;
          {
              int y = 0;
              int L1() => y;
      
              {
                   int z = 0;
                   int L2() => x;
              }
          }
      }
      ```
      
      If we visit closures in-order in the previous example, we create frames
      for L1, then L2. If we visit captured variables scopes, however, we
      visit `x` (captured by L2), then `y` (captued by L1).
      343ada1b
    • A
      Move MakeFrames logic into Analysis · 012c7fe9
      Andy Gocke 提交于
      This is part of the effort to move as much logic from LambdaRewriter
      into Analysis as possible. The more logic there is in the Rewriter, the
      more difficult it is to find calculation problems until the last
      possible moment, and it's also very difficult to calculate useful
      information for later analysis passes, like the final debug and closure
      IDs for each environment.
      012c7fe9
    • J
      Use langver=latest for scripting (#21331) · 995b158e
      Julien Couvreur 提交于
      995b158e
    • J
      Enable skipped tests and fix them (#21335) · 6a2133c4
      Julien Couvreur 提交于
      6a2133c4
    • J
      Typo · a12306e4
      John Doe 提交于
      a12306e4
    • J
      Replace project reference with linked file · 12b2937d
      Jason Malinowski 提交于
      ExpressionEvaluatorPackage was depending upon ServicesVisualStudioImpl
      to get the references for ProvideRoslynBindingRedirection.cs that it
      was building itself. This is somewhat terrifying as that's an assembly
      dependency that at runtime isn't allowed to exist, so let's be explicit.
      12b2937d
    • H
      removed left out from deleted esent code. · 9af0651c
      Heejae Chang 提交于
      9af0651c
  6. 06 8月, 2017 1 次提交
  7. 05 8月, 2017 10 次提交
  8. 04 8月, 2017 2 次提交