diff options
author | Jason Molenda <jmolenda@apple.com> | 2019-04-25 20:45:10 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 2019-04-25 20:45:10 +0000 |
commit | 1cb2c21fb4bdf1d1d363837df750c853d4e5c5c6 (patch) | |
tree | e7e9cca0cf391cd5945c3094ed67b1d11a28b96e /lldb/packages/Python/lldbsuite/test/python_api | |
parent | 917c477a074b44d9ace0d1da16bf5e694b07de52 (diff) | |
download | bcm5719-llvm-1cb2c21fb4bdf1d1d363837df750c853d4e5c5c6.tar.gz bcm5719-llvm-1cb2c21fb4bdf1d1d363837df750c853d4e5c5c6.zip |
Another use of the interactive lldb.debugger.
llvm-svn: 359240
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py b/lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py index 33a45e9c93d..75a8d6cfc65 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py @@ -92,7 +92,7 @@ def __lldb_init_module(debugger, dict): debugger.CreateCategory("JASSynth").AddTypeSynthetic( lldb.SBTypeNameSpecifier("JustAStruct"), lldb.SBTypeSynthetic.CreateWithClassName("synth.jasSynthProvider")) - cat = lldb.debugger.CreateCategory("CCCSynth") + cat = debugger.CreateCategory("CCCSynth") cat.AddTypeSynthetic( lldb.SBTypeNameSpecifier("CCC"), lldb.SBTypeSynthetic.CreateWithClassName("synth.CCCSynthProvider", |