add reactive capture flag

Reviewed By: jberdine

Differential Revision: D4130898

fbshipit-source-id: c3c1f26
master
Andrzej Kotulski 8 years ago committed by Facebook Github Bot
parent ac47d115f5
commit 90f3712555

@ -1079,6 +1079,10 @@ and reactive =
CLOpt.mk_bool ~deprecated:["reactive"] ~long:"reactive"
"Reactive mode: the analysis starts from the files captured since the `infer` command started"
and reactive_capture =
CLOpt.mk_bool ~long:"reactive-capture"
"Compile source files only when required by analyzer (clang only)"
and report =
CLOpt.mk_path_opt ~deprecated:["report"] ~long:"report"
~meta:"file" "Write a report of the analysis results to a file"
@ -1472,6 +1476,7 @@ and procs_xml = !procs_xml
and quandary = !quandary
and quiet = !quiet
and reactive_mode = !reactive
and reactive_capture = !reactive_capture
and report = !report
and report_custom_error = !report_custom_error
and report_runtime_exceptions = !tracing

@ -231,6 +231,7 @@ val project_root : string
val quandary : bool
val quiet : bool
val reactive_mode : bool
val reactive_capture : bool
val report : string option
val report_runtime_exceptions : bool
val reports_include_ml_loc : bool

Loading…
Cancel
Save