1. 16 12月, 2015 5 次提交
  2. 15 12月, 2015 3 次提交
  3. 14 12月, 2015 1 次提交
  4. 12 12月, 2015 1 次提交
    • A
      service/debugger: support function spec. with partial package paths · b5cf1572
      aarzilli 提交于
      packagename.SomeFunction should match
      github.com/someuser/packagename.SomeFunction since the former is
      the familiar syntax.
      To disambiguate between io.SomeFunction and
      github.com/someuser/somepackage/io.SomeFunction specify one extra
      slash at the start of the location specifier: /io.SomeFunction.
      
      Fixes Issue #296
      b5cf1572
  5. 07 11月, 2015 5 次提交
  6. 04 11月, 2015 2 次提交
    • A
      terminal: Split arguments inside the command function · d8ede9b0
      aarzilli 提交于
      Print and set need to receive their argument unsplit to support
      complex expressions
      d8ede9b0
    • 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
  7. 29 10月, 2015 4 次提交
  8. 28 10月, 2015 2 次提交
  9. 23 10月, 2015 2 次提交
    • D
      travis: Allow failures on tip · d15d450a
      Derek Parker 提交于
      d15d450a
    • D
      proc: Improve 'next' functionality · 28e0a322
      Derek Parker 提交于
      Instead of trying to be clever and make an 'educated guess' as to where
      the flow of control may go next, simple do the more naive, yet correct,
      approach of setting a breakpoint everywhere we can in the function and
      seeing where we end up. On top of this we were already setting a
      breakpoint at the return address and deferred functions, so that remains
      the same.
      
      This removes a lot of gnarly, hard to maintain code and takes all the
      guesswork out of this command.
      
      Fixes #281
      28e0a322
  10. 21 10月, 2015 1 次提交
  11. 19 10月, 2015 4 次提交
  12. 17 10月, 2015 1 次提交
  13. 10 10月, 2015 7 次提交
  14. 09 10月, 2015 2 次提交