1. 19 5月, 2015 1 次提交
  2. 15 5月, 2015 1 次提交
  3. 12 5月, 2015 1 次提交
  4. 09 5月, 2015 1 次提交
  5. 14 4月, 2015 1 次提交
  6. 12 4月, 2015 1 次提交
  7. 10 4月, 2015 1 次提交
  8. 09 4月, 2015 1 次提交
  9. 07 4月, 2015 1 次提交
  10. 29 3月, 2015 1 次提交
  11. 28 3月, 2015 1 次提交
  12. 21 3月, 2015 1 次提交
    • B
      Format remainder of VB code base · 15dcad3d
      beep boop 提交于
      Now that the comment formatting issue is fixed in the Formatter type, we can run the formatter on the remainder of the VB code base.
      
      closes #1424
      15dcad3d
  13. 17 3月, 2015 1 次提交
  14. 08 3月, 2015 2 次提交
    • W
      fd627d23
    • W
      Adjust sequence points in VB let clause · 33981fcd
      Wonseok Chae 提交于
      VB compiler does not correctly place sequence points in let clause. As a result the debugger does not hit a sequence point set to let clause. Before this fix, we have the following in PDB:
      
      	<sequencePoints>
      		<entry offset="0x0" hidden="true" document="0"/>
      		<entry offset="0x1" startLine="8" startColumn="25" endLine="8" endColumn="30" document="0"/>
      	</sequencePoints>
      
      After having this fix, we have as in Dev12:
      
                  <sequencePoints>
                      <entry offset="0x0" startLine="8" startColumn="25" endLine="8" endColumn="30" document="0"/>
                  </sequencePoints>
      33981fcd
  15. 07 3月, 2015 3 次提交
  16. 28 1月, 2015 1 次提交
    • T
      The compiler emits catch-all handler to all async methods. In case of async... · b564f8c4
      TomasMatousek 提交于
      The compiler emits catch-all handler to all async methods. In case of async void methods we also emit the offset of the catch handler to PDB, so that the debugger can pretend that exceptions thrown by the async method are unhandled. Otherwise they are lost. Currently the compiler emits wrong offset, so the debugger is completely confused and displays "no source location" when such exception occurs.
      
           The fix is to remove a synthesized "nop" instruction that was incorrectly used to track the catch handler IL offset. Instead mark the synthesized BoundCatchHandler node by a flag and create the IL marker in the CodeGen when emitting instructions for such bound node.
      
           Affects both C# and VB.
      
           Fixes bug 1114809. (changeset 1405564)
      b564f8c4
  17. 25 1月, 2015 1 次提交
  18. 15 1月, 2015 1 次提交
  19. 14 1月, 2015 1 次提交