закешированный к нам в целях безопасности дебаггер
Go to file
omie d5e00a583d dwarf/line: Support for parsing multiple file tables
Support multiple file / directory tables for multiple compilation units.

- added a type DebugLines that can hold number of DebugLineInfo
- added a supporting attribute to DebugLineInfo called 'Lookup' which is to be
used to quickly lookup if file exists in FileNames slice
- added supporting methods to lookup and return corresponding DebugLineInfo
- changed the debug_line parsing behavior to read all the available tables and
push them to DebugLines

- since Process.lineInfo is now a slice, it was breaking AllPCsBetween as well
- updated that function's definition to accept a new filename parameter to be
able to extract related DebugLineInfo
- updated calls to AllPCsBetween

- fixed tests that were broken due to attribute type change in Process
- updated _fixtures/cgotest program to include stdio.h, so that it updates
.debug_line header
- added a test to check 'next' in a cgo binary
- OSX - 1.4 does not support cgo, handle that in new testcase
2015-08-29 14:51:27 -05:00
_fixtures dwarf/line: Support for parsing multiple file tables 2015-08-29 14:51:27 -05:00
assets Add high-res images 2015-05-19 12:25:26 -05:00
cmd/dlv Add config file and command alias config options. 2015-08-21 14:20:23 -05:00
config Add config file and command alias config options. 2015-08-21 14:20:23 -05:00
dwarf dwarf/line: Support for parsing multiple file tables 2015-08-29 14:51:27 -05:00
proc dwarf/line: Support for parsing multiple file tables 2015-08-29 14:51:27 -05:00
service api/conversions: Do not shorten file paths 2015-08-19 17:38:53 -05:00
source Properly handle infinite for loops when next'ing 2015-07-11 10:21:42 -05:00
terminal Add config file and command alias config options. 2015-08-21 14:20:23 -05:00
.gitignore Update gitignore 2015-08-27 16:21:00 -05:00
.travis.yml Add Go1.5 to travis list 2015-08-19 14:07:19 -05:00
CHANGELOG.md Bump to version 0.7.0-alpha & add CHANGELOG 2015-08-14 14:56:56 -05:00
CONTRIBUTING.md fix dlv version typo 2015-07-29 09:29:04 -04:00
LICENSE Add License and README 2014-05-03 15:31:52 -05:00
Makefile Skip dependency install with SKIP_DEPS env var 2015-08-28 07:59:22 -05:00
README.md Add travis CI 2015-08-04 08:03:35 -05:00

Delve

license GoDoc Build Status Join the chat at https://gitter.im/derekparker/delve

This project is currently pre 1.0.

The Github issue tracker is for bugs only. Please use the developer mailing list for any feature proposals and discussions.

About Delve

Delve is a debugger for the Go programming language. The goal of the project is to provide a simple, full featured debugging tool for Go. Delve should be easy to invoke and easy to use. Chances are if you're using a debugger, most likely things aren't going your way. With that in mind, Delve should stay out of your way as much as possible.