Skip to content

Commit ca617fc

Browse files
jvillardfacebook-github-bot
authored andcommitted
update website
Summary: periodic `make doc-publish` Reviewed By: da319 Differential Revision: D31610148 fbshipit-source-id: 0c97a406a
1 parent f5c36ee commit ca617fc

File tree

94 files changed

+317
-152
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+317
-152
lines changed

website/docs/all-issue-types.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,6 +1426,22 @@ std::shared_ptr<int> callMethodReturnsnonPOD(bool b) {
14261426
}
14271427
```
14281428
1429+
## NO_MATCHING_BRANCH_IN_TRY
1430+
1431+
Reported as "No Matching Branch In Try" by [pulse](/docs/next/checker-pulse).
1432+
1433+
No matching branch is found when evaluating the `of` section of a `try` expression. Corresponds to the `{try_clause,V}` error in the Erlang runtime.
1434+
1435+
For example, if we call `tail([])` and the full definition of `tail` is
1436+
```erlang
1437+
tail(X) ->
1438+
try X of
1439+
[_|T] -> {ok,T}
1440+
catch
1441+
_ -> error
1442+
end.
1443+
```
1444+
14291445
## NO_MATCHING_CASE_CLAUSE
14301446

14311447
Reported as "No Matching Case Clause" by [pulse](/docs/next/checker-pulse).

website/docs/checker-pulse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ The following issue types are reported by this checker:
8282
- [NIL_BLOCK_CALL](/docs/next/all-issue-types#nil_block_call)
8383
- [NIL_INSERTION_INTO_COLLECTION](/docs/next/all-issue-types#nil_insertion_into_collection)
8484
- [NIL_MESSAGING_TO_NON_POD](/docs/next/all-issue-types#nil_messaging_to_non_pod)
85+
- [NO_MATCHING_BRANCH_IN_TRY](/docs/next/all-issue-types#no_matching_branch_in_try)
8586
- [NO_MATCHING_CASE_CLAUSE](/docs/next/all-issue-types#no_matching_case_clause)
8687
- [NO_MATCHING_FUNCTION_CLAUSE](/docs/next/all-issue-types#no_matching_function_clause)
8788
- [NO_MATCH_OF_RHS](/docs/next/all-issue-types#no_match_of_rhs)

website/static/man/next/infer-analyze.1.html

Lines changed: 58 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/next/infer-capture.1.html

Lines changed: 11 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/next/infer-compile.1.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/next/infer-debug.1.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/next/infer-explore.1.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/next/infer-help.1.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/next/infer-report.1.html

Lines changed: 22 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/static/man/next/infer-reportdiff.1.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)