]> git.lizzy.rs Git - rust.git/commit
Auto merge of #25905 - michaelwoerister:lldb-pp-strings, r=brson
authorbors <bors@rust-lang.org>
Tue, 2 Jun 2015 13:07:41 +0000 (13:07 +0000)
committerbors <bors@rust-lang.org>
Tue, 2 Jun 2015 13:07:41 +0000 (13:07 +0000)
commitc800b22e95f93ac55cc001b87bfa34852995c3c9
tree782e529dd77a3f8e0e2bd619a4c8d7d18c859cba
parent48e9ef640480a5371759d011da7acbe2fa182511
parentd136714e04fa244fb45a8459cb717dc682208697
Auto merge of #25905 - michaelwoerister:lldb-pp-strings, r=brson

GDB and LLDB pretty printers have some common functionality and also access some common information, such as the layout of standard library types. So far, this information has been duplicated in the two pretty printing python modules. This PR introduces a common module used by both debuggers.

This PR also implements proper rendering of `String` and `&str` values in LLDB.