Skip to content

Commit 494d1ca

Browse files
committed
Remove functions from public API
1 parent 2e1e9df commit 494d1ca

File tree

2 files changed

+23
-8
lines changed

2 files changed

+23
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Now they are called as `from_generators(g1, [g2, g3, ...])` to ensure one generator is always provided.
1515
- `char_from_list(["a", "b", "c"])` is now `char_from_list("a", ["b", "c"])` to address the same issue present in the `from_generators` functions.
1616
- Require `prng` >= 4.0.1 (#7)
17+
- These functions are now private:
18+
- `failwith`
19+
- `try`
20+
- `rescue_error`
21+
- These functions are now internal:
22+
- `rescue`
1723

1824
### Fixed
1925

src/qcheck.gleam

+17-8
Original file line numberDiff line numberDiff line change
@@ -1785,16 +1785,17 @@ fn fail(test_error_display: String) -> a {
17851785
do_fail(test_error_display)
17861786
}
17871787

1788-
// If this returned an opaque Exn type then you couldn't mess up the
1789-
// `test_error_message.rescue` call later, but it could potentially conflict
1790-
// with non-gleeunit test frameworks, depending on how they deal with
1791-
// exceptions.
1792-
pub fn failwith(
1788+
fn failwith(
17931789
original_value original_value: a,
17941790
shrunk_value shrunk_value: a,
17951791
shrink_steps shrink_steps: Int,
17961792
error_msg error_msg: String,
17971793
) -> b {
1794+
// If this returned an opaque Exn type then you couldn't mess up the
1795+
// `test_error_message.rescue` call later, but it could potentially conflict
1796+
// with non-gleeunit test frameworks, depending on how they deal with
1797+
// exceptions.
1798+
17981799
new_test_error(
17991800
original_value: original_value,
18001801
shrunk_value: shrunk_value,
@@ -1869,20 +1870,23 @@ fn regexp_first_submatch(
18691870
}
18701871

18711872
/// Mainly for asserting values in qcheck internal tests.
1873+
///
18721874
fn test_error_message_get_original_value(
18731875
test_error_str: String,
18741876
) -> Result(String, String) {
18751877
regexp_first_submatch(pattern: "original_value: (.+?);", in: test_error_str)
18761878
}
18771879

18781880
/// Mainly for asserting values in qcheck internal tests.
1881+
///
18791882
fn test_error_message_get_shrunk_value(
18801883
test_error_str: String,
18811884
) -> Result(String, String) {
18821885
regexp_first_submatch(pattern: "shrunk_value: (.+?);", in: test_error_str)
18831886
}
18841887

18851888
/// Mainly for asserting values in qcheck internal tests.
1889+
///
18861890
fn test_error_message_get_shrink_steps(
18871891
test_error_str: String,
18881892
) -> Result(String, String) {
@@ -1892,6 +1896,11 @@ fn test_error_message_get_shrink_steps(
18921896
/// This function should only be called to rescue a function that may call
18931897
/// `failwith` at some point to raise an exception. It will likely
18941898
/// raise otherwise.
1899+
///
1900+
/// This function is internal. Breaking changes may occur without a major
1901+
/// version update.
1902+
///
1903+
@internal
18951904
pub fn rescue(thunk: fn() -> a) -> Result(a, TestErrorMessage) {
18961905
case rescue_error(thunk) {
18971906
Ok(a) -> Ok(a)
@@ -1917,18 +1926,18 @@ pub fn rescue(thunk: fn() -> a) -> Result(a, TestErrorMessage) {
19171926

19181927
@external(erlang, "qcheck_ffi", "rescue_error")
19191928
@external(javascript, "./qcheck_ffi.mjs", "rescue_error")
1920-
pub fn rescue_error(f: fn() -> a) -> Result(a, String)
1929+
fn rescue_error(f: fn() -> a) -> Result(a, String)
19211930

19221931
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19231932
// MARK: Try
19241933
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
19251934

1926-
pub type Try(a) {
1935+
type Try(a) {
19271936
NoPanic(a)
19281937
Panic(exception.Exception)
19291938
}
19301939

1931-
pub fn try(f: fn() -> a) -> Try(a) {
1940+
fn try(f: fn() -> a) -> Try(a) {
19321941
case exception.rescue(fn() { f() }) {
19331942
Ok(y) -> NoPanic(y)
19341943
Error(exn) -> Panic(exn)

0 commit comments

Comments
 (0)