diff options
author | Chimrod <> | 2024-11-15 17:03:53 +0100 |
---|---|---|
committer | Chimrod <> | 2024-11-15 17:03:53 +0100 |
commit | 75be18b30ebd08dc28c0c8df72983126b7a126a7 (patch) | |
tree | f9166a283d3738fe5b354c5946f9652fe04c7c5d /bin/qsp_parser.ml | |
parent | 17daa1fc6d93e9b03adff21efdac5de506c78e34 (diff) |
Added a global check reporting variables only reads
Diffstat (limited to 'bin/qsp_parser.ml')
-rw-r--r-- | bin/qsp_parser.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/qsp_parser.ml b/bin/qsp_parser.ml index 96cbf73..9a19664 100644 --- a/bin/qsp_parser.ml +++ b/bin/qsp_parser.ml @@ -24,6 +24,7 @@ let available_checks = snd @@ Qsp_syntax.Check.build (module Qsp_syntax.Nested_strings); snd @@ Qsp_syntax.Check.build (module Qsp_syntax.Locations); snd @@ Qsp_syntax.Check.build (module Qsp_syntax.Dup_test); + snd @@ Qsp_syntax.Check.build (module Qsp_syntax.Write_only); ] let pp_module formatter (module A : Qsp_syntax.S.Analyzer) = |