brintos

brintos / llvm-project-archived public Read only

0
0
Text · 500 B · cb0bff5 Raw
21 lines · python
1#############################################################################2# This script is just to provide a thread plan which won't be popped instantly3# for the completion test. The thread plan class below won't really do anything4# itself.5 6import lldb7 8 9class PushPlanStack:10    def __init__(self, thread_plan, dict):11        pass12 13    def explains_stop(self, event):14        return False15 16    def should_stop(self, event):17        return True18 19    def should_step(self):20        return True21