File tree Expand file tree Collapse file tree 8 files changed +7
-15
lines changed Expand file tree Collapse file tree 8 files changed +7
-15
lines changed Original file line number Diff line number Diff line change 9
9
#ifndef LLDB_INTERPRETER_SCRIPTEDMETADATA_H
10
10
#define LLDB_INTERPRETER_SCRIPTEDMETADATA_H
11
11
12
- #include " OptionGroupPythonClassWithDict.h"
13
-
14
12
#include " lldb/Host/Host.h"
15
13
#include " lldb/Utility/ProcessInfo.h"
16
14
#include " lldb/Utility/StructuredData.h"
@@ -30,12 +28,6 @@ class ScriptedMetadata {
30
28
}
31
29
}
32
30
33
- ScriptedMetadata (const OptionGroupPythonClassWithDict &option_group) {
34
- auto opt_group = const_cast <OptionGroupPythonClassWithDict &>(option_group);
35
- m_class_name = opt_group.GetName ();
36
- m_args_sp = opt_group.GetStructuredData ();
37
- }
38
-
39
31
explicit operator bool () const { return !m_class_name.empty (); }
40
32
41
33
llvm::StringRef GetClassName () const { return m_class_name; }
Original file line number Diff line number Diff line change 11
11
#include " lldb/API/SBFileSpec.h"
12
12
#include " lldb/API/SBListener.h"
13
13
#include " lldb/API/SBStructuredData.h"
14
- #include " lldb/Interpreter/ScriptedMetadata.h"
15
14
#include " lldb/Target/Process.h"
16
15
#include " lldb/Utility/Instrumentation.h"
16
+ #include " lldb/Utility/ScriptedMetadata.h"
17
17
18
18
using namespace lldb ;
19
19
using namespace lldb_private ;
Original file line number Diff line number Diff line change 17
17
#include " lldb/API/SBStructuredData.h"
18
18
#include " lldb/Core/StructuredDataImpl.h"
19
19
#include " lldb/Host/ProcessLaunchInfo.h"
20
- #include " lldb/Interpreter /ScriptedMetadata.h"
20
+ #include " lldb/Utility /ScriptedMetadata.h"
21
21
22
22
using namespace lldb ;
23
23
using namespace lldb_private ;
Original file line number Diff line number Diff line change 20
20
#include " lldb/Interpreter/OptionGroupFile.h"
21
21
#include " lldb/Interpreter/OptionGroupPlatform.h"
22
22
#include " lldb/Interpreter/OptionGroupPythonClassWithDict.h"
23
- #include " lldb/Interpreter/ScriptedMetadata.h"
24
23
#include " lldb/Target/ExecutionContext.h"
25
24
#include " lldb/Target/Platform.h"
26
25
#include " lldb/Target/Process.h"
27
26
#include " lldb/Utility/Args.h"
27
+ #include " lldb/Utility/ScriptedMetadata.h"
28
28
29
29
#include " llvm/ADT/SmallString.h"
30
30
Original file line number Diff line number Diff line change 25
25
#include " lldb/Interpreter/OptionArgParser.h"
26
26
#include " lldb/Interpreter/OptionGroupPythonClassWithDict.h"
27
27
#include " lldb/Interpreter/Options.h"
28
- #include " lldb/Interpreter/ScriptedMetadata.h"
29
28
#include " lldb/Target/Platform.h"
30
29
#include " lldb/Target/Process.h"
31
30
#include " lldb/Target/StopInfo.h"
32
31
#include " lldb/Target/Target.h"
33
32
#include " lldb/Target/Thread.h"
34
33
#include " lldb/Target/UnixSignals.h"
35
34
#include " lldb/Utility/Args.h"
35
+ #include " lldb/Utility/ScriptedMetadata.h"
36
36
#include " lldb/Utility/State.h"
37
37
38
38
#include " llvm/ADT/ScopeExit.h"
Original file line number Diff line number Diff line change 18
18
#include " lldb/Interpreter/OptionArgParser.h"
19
19
#include " lldb/Interpreter/OptionGroupBoolean.h"
20
20
#include " lldb/Interpreter/ScriptInterpreter.h"
21
- #include " lldb/Interpreter/ScriptedMetadata.h"
22
21
#include " lldb/Target/MemoryRegionInfo.h"
23
22
#include " lldb/Target/Queue.h"
24
23
#include " lldb/Target/RegisterContext.h"
25
24
#include " lldb/Utility/LLDBLog.h"
25
+ #include " lldb/Utility/ScriptedMetadata.h"
26
26
#include " lldb/Utility/State.h"
27
27
28
28
#include < mutex>
Original file line number Diff line number Diff line change 9
9
#ifndef LLDB_SOURCE_PLUGINS_SCRIPTED_PROCESS_H
10
10
#define LLDB_SOURCE_PLUGINS_SCRIPTED_PROCESS_H
11
11
12
- #include " lldb/Interpreter/ScriptedMetadata.h"
13
12
#include " lldb/Target/Process.h"
14
13
#include " lldb/Utility/ConstString.h"
14
+ #include " lldb/Utility/ScriptedMetadata.h"
15
15
#include " lldb/Utility/Status.h"
16
16
17
17
#include " ScriptedThread.h"
Original file line number Diff line number Diff line change 8
8
9
9
#include " lldb/Utility/ProcessInfo.h"
10
10
11
- #include " lldb/Interpreter/ScriptedMetadata.h"
12
11
#include " lldb/Utility/ArchSpec.h"
12
+ #include " lldb/Utility/ScriptedMetadata.h"
13
13
#include " lldb/Utility/Stream.h"
14
14
#include " lldb/Utility/StreamString.h"
15
15
#include " lldb/Utility/UserIDResolver.h"
You can’t perform that action at this time.
0 commit comments