2 lines
6.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"><head><title>ASTLanguage__ALIssues (infer.ASTLanguage__ALIssues)</title><link rel="stylesheet" href="../../odoc.css"/><meta charset="utf-8"/><meta name="generator" content="odoc 1.5.2"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><script src="../../highlight.pack.js"></script><script>hljs.initHighlightingOnLoad();</script></head><body><div class="content"><header><nav><a href="../index.html">Up</a> <a href="../index.html">infer</a> &#x00BB; ASTLanguage__ALIssues</nav><h1>Module <code>ASTLanguage__ALIssues</code></h1></header><dl><dt class="spec value" id="val-issue_log"><a href="#val-issue_log" class="anchor"></a><code><span class="keyword">val</span> issue_log : <span><a href="../Absint/IssueLog/index.html#type-t">Absint.IssueLog.t</a> <a href="../IStdlib/index.html#module-IStd">IStdlib.IStd</a>.ref</span></code></dt></dl><dl><dt class="spec type" id="type-linter"><a href="#type-linter" class="anchor"></a><code><span class="keyword">type</span> linter</code><code> = </code><code>{</code><table class="record"><tr id="type-linter.condition" class="anchored"><td class="def field"><a href="#type-linter.condition" class="anchor"></a><code>condition : <a href="../ASTLanguage/CTLTypes/index.html#type-t">ASTLanguage.CTLTypes.t</a>;</code></td></tr><tr id="type-linter.issue_desc" class="anchored"><td class="def field"><a href="#type-linter.issue_desc" class="anchor"></a><code>issue_desc : <a href="../ASTLanguage/CIssue/index.html#type-t">ASTLanguage.CIssue.t</a>;</code></td></tr><tr id="type-linter.whitelist_paths" class="anchored"><td class="def field"><a href="#type-linter.whitelist_paths" class="anchor"></a><code>whitelist_paths : <span><a href="../ASTLanguage/ALVar/index.html#type-t">ASTLanguage.ALVar.t</a> list</span>;</code></td></tr><tr id="type-linter.blacklist_paths" class="anchored"><td class="def field"><a href="#type-linter.blacklist_paths" class="anchor"></a><code>blacklist_paths : <span><a href="../ASTLanguage/ALVar/index.html#type-t">ASTLanguage.ALVar.t</a> list</span>;</code></td></tr></table><code>}</code></dt></dl><dl><dt class="spec value" id="val-filter_parsed_linters"><a href="#val-filter_parsed_linters" class="anchor"></a><code><span class="keyword">val</span> filter_parsed_linters : <span><a href="index.html#type-linter">linter</a> list</span> <span>&#45;&gt;</span> <a href="../IBase/SourceFile/index.html#type-t">IBase.SourceFile.t</a> <span>&#45;&gt;</span> <span><a href="index.html#type-linter">linter</a> list</span></code></dt><dt class="spec value" id="val-pp_linters"><a href="#val-pp_linters" class="anchor"></a><code><span class="keyword">val</span> pp_linters : Stdlib.Format.formatter <span>&#45;&gt;</span> <span><a href="index.html#type-linter">linter</a> list</span> <span>&#45;&gt;</span> unit</code></dt></dl><dl><dt class="spec type" id="type-macros_map"><a href="#type-macros_map" class="anchor"></a><code><span class="keyword">type</span> macros_map</code><code> = <span><span>(bool * <span><a href="../ASTLanguage/ALVar/index.html#type-t">ASTLanguage.ALVar.t</a> list</span> * <a href="../ASTLanguage/CTLTypes/index.html#type-t">ASTLanguage.CTLTypes.t</a>)</span> <a href="../ASTLanguage__ALVar/index.html#module-FormulaIdMap">ASTLanguage.ALVar.FormulaIdMap</a>.t</span></code></dt><dd><p>map used to expand macro. It maps a formula id to a triple (visited, parameters, definition). Visited is used during the expansion phase to understand if the formula was already expanded and, if yes we have a cyclic definifion</p></dd></dl><dl><dt class="spec type" id="type-paths_map"><a href="#type-paths_map" class="anchor"></a><code><span class="keyword">type</span> paths_map</code><code> = <span><span><a href="../ASTLanguage/ALVar/index.html#type-t">ASTLanguage.ALVar.t</a> list</span> <a href="../ASTLanguage__ALVar/index.html#module-VarMap">ASTLanguage.ALVar.VarMap</a>.t</span></code></dt><dd><p>Map a path name to a list of paths.</p></dd></dl><dl><dt class="spec value" id="val-invoke_set_of_checkers_on_node"><a href="#val-invoke_set_of_checkers_on_node" class="anchor"></a><code><span class="keyword">val</span> invoke_set_of_checkers_on_node : <span><a href="index.html#type-linter">linter</a> list</span> <span>&#45;&gt;</span> <a href="../ASTLanguage/CLintersContext/index.html#type-context">ASTLanguage.CLintersContext.context</a> <span>&#45;&gt;</span> <a href="../ASTLanguage/Ctl_parser_types/index.html#type-ast_node">ASTLanguage.Ctl_parser_types.ast_node</a> <span>&#45;&gt;</span> unit</code></dt><dd><p>Run frontend checkers on an AST node</p></dd></dl><dl><dt class="spec value" id="val-build_macros_map"><a href="#val-build_macros_map" class="anchor"></a><code><span class="keyword">val</span> build_macros_map : <span><a href="../ASTLanguage/CTL/index.html#type-clause">ASTLanguage.CTL.clause</a> list</span> <span>&#45;&gt;</span> <a href="index.html#type-macros_map">macros_map</a></code></dt><dt class="spec value" id="val-build_paths_map"><a href="#val-build_paths_map" class="anchor"></a><code><span class="keyword">val</span> build_paths_map : <span><span>(string * <span><a href="../ASTLanguage/ALVar/index.html#type-alexp">ASTLanguage.ALVar.alexp</a> list</span>)</span> list</span> <span>&#45;&gt;</span> <a href="index.html#type-paths_map">paths_map</a></code></dt><dt class="spec value" id="val-expand_checkers"><a href="#val-expand_checkers" class="anchor"></a><code><span class="keyword">val</span> expand_checkers : <a href="index.html#type-macros_map">macros_map</a> <span>&#45;&gt;</span> <a href="index.html#type-paths_map">paths_map</a> <span>&#45;&gt;</span> <span><a href="../ASTLanguage/CTL/index.html#type-ctl_checker">ASTLanguage.CTL.ctl_checker</a> list</span> <span>&#45;&gt;</span> <span><a href="../ASTLanguage/CTL/index.html#type-ctl_checker">ASTLanguage.CTL.ctl_checker</a> list</span></code></dt><dt class="spec value" id="val-create_parsed_linters"><a href="#val-create_parsed_linters" class="anchor"></a><code><span class="keyword">val</span> create_parsed_linters : string <span>&#45;&gt;</span> <span><a href="../ASTLanguage/CTL/index.html#type-ctl_checker">ASTLanguage.CTL.ctl_checker</a> list</span> <span>&#45;&gt;</span> <span><a href="index.html#type-linter">linter</a> list</span></code></dt><dt class="spec value" id="val-remove_new_lines_and_whitespace"><a href="#val-remove_new_lines_and_whitespace" class="anchor"></a><code><span class="keyword">val</span> remove_new_lines_and_whitespace : string <span>&#45;&gt;</span> string</code></dt></dl></div></body></html>