1. 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
  2. 29 10月, 2015 4 次提交
  3. 28 10月, 2015 2 次提交
  4. 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
  5. 21 10月, 2015 1 次提交
  6. 19 10月, 2015 4 次提交
  7. 17 10月, 2015 1 次提交
  8. 10 10月, 2015 7 次提交
  9. 09 10月, 2015 2 次提交
  10. 07 10月, 2015 6 次提交
  11. 05 10月, 2015 9 次提交
  12. 03 10月, 2015 1 次提交