diff options
author | Chimrod <> | 2024-02-03 17:42:16 +0100 |
---|---|---|
committer | Chimrod <> | 2024-02-08 14:16:41 +0100 |
commit | d7a13b0e5d6e746993e67a291376bd79766e0ed1 (patch) | |
tree | 80c621cbdb97ce69fd666a4e8f90f4952d237027 /lib/syntax/nested_strings.ml | |
parent | 6fd720c07e3e361932e01bfbdbe4637c8f610649 (diff) |
Added a new check to ensure that every call to another location points to an existing one
Diffstat (limited to 'lib/syntax/nested_strings.ml')
-rw-r--r-- | lib/syntax/nested_strings.ml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/syntax/nested_strings.ml b/lib/syntax/nested_strings.ml index 0119197..dee7af0 100644 --- a/lib/syntax/nested_strings.ml +++ b/lib/syntax/nested_strings.ml @@ -2,11 +2,13 @@ open StdLabels let identifier = "escaped_string" let description = "Check for unnecessary use of expression encoded in string" +let is_global = false let active = ref true type context = unit let initialize = Fun.id +let finalize () = [] module TypeBuilder = Compose.Expression (Get_type) |