summaryrefslogtreecommitdiff
path: root/python/helpers/pydev/pydevd_trace_api.py
blob: 5d2f30e98a3a6c5ed2ec8bd4886d68b56a5af4c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
def add_line_breakpoint(plugin, pydb, type, file, line, condition, expression, func_name):
    return None

def add_exception_breakpoint(plugin, pydb, type, exception):
    return False

def remove_exception_breakpoint(plugin, pydb, type, exception):
    return False

def get_breakpoints(plugin, pydb):
    return None

def can_not_skip(plugin, pydb, pydb_frame, frame):
    return False

def has_exception_breaks(plugin, pydb):
    return False

def cmd_step_into(plugin, pydb, frame, event, args, stop_info):
    return False

def cmd_step_over(plugin, pydb, frame, event, args, stop_info):
    return False

def stop(plugin, pydb, frame, event, args, stop_info, arg, step_cmd):
    return False

def get_breakpoint(plugin, pydb, pydb_frame, frame, event, args):
    return None

def suspend(plugin, pydb, thread, frame):
    return None

def exception_break(plugin, pydb, pydb_frame, frame, args, arg):
    return None