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.
52 lines
934 B
52 lines
934 B
10 years ago
|
type tag_value_record = {
|
||
9 years ago
|
tag : string;
|
||
|
value : string;
|
||
10 years ago
|
}
|
||
|
|
||
|
type json_trace_item = {
|
||
9 years ago
|
level : int;
|
||
|
filename : string;
|
||
|
line_number : int;
|
||
8 years ago
|
column_number : int;
|
||
9 years ago
|
description : string;
|
||
|
node_tags : tag_value_record list;
|
||
|
}
|
||
|
|
||
|
type loc = {
|
||
|
file: string;
|
||
9 years ago
|
lnum: int;
|
||
|
cnum: int;
|
||
|
enum: int;
|
||
10 years ago
|
}
|
||
|
|
||
|
type jsonbug = {
|
||
9 years ago
|
bug_class : string;
|
||
|
kind : string;
|
||
|
bug_type : string;
|
||
8 years ago
|
?doc_url : string option;
|
||
9 years ago
|
qualifier : string;
|
||
|
severity : string;
|
||
8 years ago
|
visibility : string;
|
||
9 years ago
|
line: int;
|
||
8 years ago
|
column: int;
|
||
9 years ago
|
procedure : string;
|
||
|
procedure_id : string;
|
||
8 years ago
|
procedure_start_line : int;
|
||
9 years ago
|
file : string;
|
||
|
bug_trace : json_trace_item list;
|
||
|
key : int;
|
||
|
qualifier_tags : tag_value_record list;
|
||
|
hash : int;
|
||
9 years ago
|
?dotty : string option;
|
||
9 years ago
|
?infer_source_loc: loc option;
|
||
8 years ago
|
bug_type_hum: string;
|
||
8 years ago
|
?linters_def_file: string option;
|
||
8 years ago
|
?traceview_id: int option;
|
||
10 years ago
|
}
|
||
|
|
||
8 years ago
|
type report = jsonbug list
|
||
|
|
||
10 years ago
|
type json_trace = {
|
||
9 years ago
|
trace : json_trace_item list;
|
||
10 years ago
|
}
|