Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions semgrep_output_v1.atd
Original file line number Diff line number Diff line change
Expand Up @@ -2197,8 +2197,8 @@ type core_output = {
do not necessarily want to share with the cli_output.
*)
type core_output_extra = {
(* since semgrep 1.108.0 *)
?symbol_analysis: symbol_analysis option;
(* since semgrep 1.128.0 *)
?ungrouped_symbol_analysis: ungrouped_symbol_analysis option;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is this ungrouped_symbol_analysis?

}

(* TODO: now only core_match_extra differ, otherwise it's just like cli_match *)
Expand Down Expand Up @@ -2770,7 +2770,16 @@ type symbol_usage <ocaml attr="deriving show"> = {
locs: location list;
}

type symbol_analysis <ocaml attr="deriving show"> = symbol_usage list
type ungrouped_symbol_analysis <ocaml attr="deriving show"> = symbol_usage list

type subproject_symbol_analysis <ocaml attr="deriving show"> = {
subproject_root_dir: fpath;
symbol_analysis: symbol_usage list;
}


type symbol_analysis <ocaml attr="deriving show"> = subproject_symbol_analysis list


(* ----------------------------- *)
(* The call *)
Expand Down
25 changes: 22 additions & 3 deletions semgrep_output_v1.jsonschema

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions semgrep_output_v1.proto

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

166 changes: 109 additions & 57 deletions semgrep_output_v1.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading