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.
33 lines
547 B
33 lines
547 B
10 years ago
|
type tag_value_record = {
|
||
|
tag : string;
|
||
|
value : string;
|
||
|
}
|
||
|
|
||
|
type json_trace_item = {
|
||
|
level : int;
|
||
|
filename : string;
|
||
|
line_number : int;
|
||
|
description : string;
|
||
|
node_tags : tag_value_record list;
|
||
|
}
|
||
|
|
||
|
type jsonbug = {
|
||
|
bug_class : string;
|
||
|
kind : string;
|
||
|
bug_type : string;
|
||
|
qualifier : string;
|
||
|
severity : string;
|
||
|
line: int;
|
||
|
procedure : string;
|
||
|
procedure_id : string;
|
||
|
file : string;
|
||
|
bug_trace : json_trace_item list;
|
||
|
key : int;
|
||
|
qualifier_tags : tag_value_record list;
|
||
|
hash : int;
|
||
|
}
|
||
|
|
||
|
type json_trace = {
|
||
|
trace : json_trace_item list;
|
||
|
}
|