1. 10 1月, 2016 3 次提交
  2. 19 12月, 2015 1 次提交
  3. 16 12月, 2015 5 次提交
  4. 07 11月, 2015 4 次提交
  5. 04 11月, 2015 1 次提交
    • A
      proc: Implements expression interpreter · 43b64ec3
      aarzilli 提交于
      Supported operators:
      
      - All (binary and unary) operators between basic types except <-,
      ++ and -- (includes & to take the address of an expression)
      - Comparison operators between supported compound types
      - Typecast of integer constants into pointer types
      - struct members
      - indexing of arrays, slices and strings
      - slicing of arrays, slices and strings
      - pointer dereferencing
      - true, false and nil constants
      
      Implements #116, #117 and #251
      43b64ec3
  6. 29 10月, 2015 2 次提交
  7. 19 10月, 2015 2 次提交
  8. 07 10月, 2015 3 次提交
  9. 02 10月, 2015 1 次提交
    • A
      proc/variables: chanRecvReturnAddress uses outdated frame info · d30221da
      aarzilli 提交于
      g.SP refers to the frame the goroutine was in the last time it was
      scheduled out. Instead of calling proc.(*Process).stacktrace directly
      we should call proc.(*Process).GoroutineStacktrace that substitutes
      fresh values retrieved from thread registers when necessary.
      This bug leads to occasional problems with `next`.
      d30221da
  10. 30 9月, 2015 1 次提交
  11. 29 9月, 2015 3 次提交
  12. 28 9月, 2015 1 次提交
  13. 20 9月, 2015 1 次提交
  14. 18 9月, 2015 2 次提交
  15. 17 9月, 2015 1 次提交
  16. 06 9月, 2015 1 次提交
  17. 10 8月, 2015 2 次提交
  18. 02 8月, 2015 1 次提交
  19. 30 7月, 2015 1 次提交
  20. 28 7月, 2015 1 次提交
  21. 13 7月, 2015 1 次提交
    • D
      Implement 'trace' subcommand · 3cee10d8
      Derek Parker 提交于
      Allows a user to execute `dlv trace [regexp]` and Delve will execute the
      program and output information on functions matching [regexp].
      3cee10d8
  22. 21 6月, 2015 2 次提交