You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
239 B
16 lines
239 B
9 years ago
|
type location_t = {
|
||
|
location_type : string;
|
||
|
file : string;
|
||
|
line : int;
|
||
|
}
|
||
|
|
||
|
type stacktree = {
|
||
|
method_name : string;
|
||
|
?location : location_t option;
|
||
|
callees : stacktree list;
|
||
|
}
|
||
|
|
||
|
type crashcontext_t = {
|
||
|
stack : stacktree list;
|
||
|
}
|