Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use panic internally where appropriate #79

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- Change `Float.parseFloat` signature. Now accepts only string. https://github.com/rescript-association/rescript-core/pull/54
- Add `getExn`, `getUnsafe`, `getWithDefault`, `map`, `mapWithDefault` and `flatMap` to `Nullable`. https://github.com/rescript-association/rescript-core/pull/67
- Add `getExn`, `getUnsafe`, `getWithDefault`, `map`, `mapWithDefault` and `flatMap` to `Null`. https://github.com/rescript-association/rescript-core/pull/73
- Add `panic`/`Error.panic` and use that where appropriate: https://github.com/rescript-association/rescript-core/pull/72

### Documentation

Expand Down
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@
"clean": "rescript clean",
"build": "rescript",
"watch": "rescript build -w",
"test": "node test/PromiseTest.mjs && node test/TempTests.mjs"
"test": "node test/TestSuite.mjs && node test/TempTests.mjs"
},
"keywords": [
"rescript"
],
"keywords": ["rescript"],
"homepage": "https://github.com/rescript-association/rescript-core",
"author": "ReScript Team",
"license": "MIT",
Expand Down
5 changes: 5 additions & 0 deletions src/Core__Error.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,17 @@ var $$TypeError = {};

var $$URIError = {};

function panic(msg) {
throw new Error("Panic! " + msg);
}

export {
$$EvalError ,
$$RangeError ,
$$ReferenceError ,
$$SyntaxError ,
$$TypeError ,
$$URIError ,
panic ,
}
/* No side effect */
2 changes: 2 additions & 0 deletions src/Core__Error.res
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,5 @@ module URIError = {
}

external raise: t => 'a = "%raise"

let panic = msg => make(j`Panic! $msg`)->raise
14 changes: 14 additions & 0 deletions src/Core__Error.resi
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,17 @@ if 5 > 10 {
```
*/
external raise: t => 'a = "%raise"

/**
Raises a panic exception with the given message.

A panic exception is a native JavaScript exception that is not intended to be caught and
handled. Compared to a ReScript exception this will give a better stack trace and
debugging experience.

## Examples
```rescript
Error.panic("Uh oh. This was unexpected!")
```
*/
let panic: string => 'a
42 changes: 17 additions & 25 deletions src/Core__List.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as Curry from "rescript/lib/es6/curry.js";
import * as Belt_Array from "rescript/lib/es6/belt_Array.js";
import * as Caml_option from "rescript/lib/es6/caml_option.js";
import * as Core__Array from "./Core__Array.mjs";
import * as Core__Error from "./Core__Error.mjs";

function head(x) {
if (x) {
Expand All @@ -15,11 +16,9 @@ function head(x) {
function headExn(x) {
if (x) {
return x.hd;
} else {
return Core__Error.panic("List.headExn: list is empty");
}
throw {
RE_EXN_ID: "Not_found",
Error: new Error()
};
}

function tail(x) {
Expand All @@ -32,11 +31,9 @@ function tail(x) {
function tailExn(x) {
if (x) {
return x.tl;
} else {
return Core__Error.panic("List.tailExn: list is empty");
}
throw {
RE_EXN_ID: "Not_found",
Error: new Error()
};
}

function add(xs, x) {
Expand Down Expand Up @@ -70,29 +67,24 @@ function get(x, n) {

function getExn(x, n) {
if (n < 0) {
throw {
RE_EXN_ID: "Not_found",
Error: new Error()
};
}
var _x = x;
var _n = n;
while(true) {
var n$1 = _n;
var x$1 = _x;
if (x$1) {
return Core__Error.panic("List.getExn: n < 0");
} else {
var _x = x;
var _n = n;
while(true) {
var n$1 = _n;
var x$1 = _x;
if (!x$1) {
return Core__Error.panic("List.nthAuxAssert: list is empty");
}
if (n$1 === 0) {
return x$1.hd;
}
_n = n$1 - 1 | 0;
_x = x$1.tl;
continue ;
}
throw {
RE_EXN_ID: "Not_found",
Error: new Error()
};
};
};
}
}

function partitionAux(p, _cell, _precX, _precY) {
Expand Down
8 changes: 4 additions & 4 deletions src/Core__List.res
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ let head = x =>

let headExn = x =>
switch x {
| list{} => raise(Not_found)
| list{} => Core__Error.panic("List.headExn: list is empty")
| list{x, ..._} => x
}

Expand All @@ -106,7 +106,7 @@ let tail = x =>

let tailExn = x =>
switch x {
| list{} => raise(Not_found)
| list{} => Core__Error.panic("List.tailExn: list is empty")
| list{_, ...t} => t
}

Expand All @@ -132,7 +132,7 @@ let rec nthAuxAssert = (x, n) =>
} else {
nthAuxAssert(t, n - 1)
}
| _ => raise(Not_found)
| list{} => Core__Error.panic("List.nthAuxAssert: list is empty")
}

let get = (x, n) =>
Expand All @@ -144,7 +144,7 @@ let get = (x, n) =>

let getExn = (x, n) =>
if n < 0 {
raise(Not_found)
Core__Error.panic("List.getExn: n < 0")
} else {
nthAuxAssert(x, n)
}
Expand Down
6 changes: 3 additions & 3 deletions src/Core__List.resi
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ List.headExn(list{}) // Raises an Error

## Exceptions

- Raises an Error if list is empty.
- Panics if list is empty.

*/
let headExn: t<'a> => 'a
Expand Down Expand Up @@ -114,7 +114,7 @@ List.tailExn(list{}) // Raises an Error

## Exceptions

- Raises an Error if list is empty.
- Panics if list is empty.
*/
let tailExn: t<'a> => t<'a>

Expand Down Expand Up @@ -162,7 +162,7 @@ abc->List.getExn(4) // Raises an Error

## Exceptions

- Raises an Error if `index` is larger than the length of list.
- Panics if `index` is less than 0 or larger than the length of list.
*/
let getExn: (t<'a>, int) => 'a

Expand Down
7 changes: 3 additions & 4 deletions src/Core__Option.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import * as Curry from "rescript/lib/es6/curry.js";
import * as Caml_option from "rescript/lib/es6/caml_option.js";
import * as Core__Error from "./Core__Error.mjs";

function filter(opt, p) {
var p$1 = Curry.__1(p);
Expand All @@ -22,11 +23,9 @@ function forEach(opt, f) {
function getExn(x) {
if (x !== undefined) {
return Caml_option.valFromOption(x);
} else {
return Core__Error.panic("List.headExn: option is None");
}
throw {
RE_EXN_ID: "Not_found",
Error: new Error()
};
}

function mapWithDefault(opt, $$default, f) {
Expand Down
2 changes: 1 addition & 1 deletion src/Core__Option.res
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ let forEach = (opt, f) => forEachU(opt, (. x) => f(x))
let getExn = x =>
switch x {
| Some(x) => x
| None => raise(Not_found)
| None => Core__Error.panic("List.headExn: option is None")
}

external getUnsafe: option<'a> => 'a = "%identity"
Expand Down
2 changes: 1 addition & 1 deletion src/Core__Option.resi
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Option.getExn(None) /* Raises an Error */

## Exceptions

- Raises an error if `opt` is `None`
- Panics if `opt` is `None`
*/
let getExn: option<'a> => 'a

Expand Down
7 changes: 3 additions & 4 deletions src/Core__Result.mjs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
// Generated by ReScript, PLEASE EDIT WITH CARE

import * as Curry from "rescript/lib/es6/curry.js";
import * as Core__Error from "./Core__Error.mjs";

function getExn(x) {
if (x.TAG === /* Ok */0) {
return x._0;
} else {
return Core__Error.panic("Result.getExn: result is Error");
}
throw {
RE_EXN_ID: "Not_found",
Error: new Error()
};
}

function mapWithDefault(opt, $$default, f) {
Expand Down
2 changes: 1 addition & 1 deletion src/Core__Result.res
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type t<'a, 'b> = result<'a, 'b> = Ok('a) | Error('b)
let getExn = x =>
switch x {
| Ok(x) => x
| Error(_) => raise(Not_found)
| Error(_) => Core__Error.panic("Result.getExn: result is Error")
}

let mapWithDefaultU = (opt, default, f) =>
Expand Down
4 changes: 4 additions & 0 deletions src/Core__Result.resi
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ type t<'a, 'b> = result<'a, 'b> = Ok('a) | Error('b)

Result.getExn(Result.Error("Invalid data")) /* raises exception */
```

## Exceptions

- Panics if `res` is `Error(_)`
*/
let getExn: t<'a, 'b> => 'a

Expand Down
4 changes: 4 additions & 0 deletions src/RescriptCore.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Generated by ReScript, PLEASE EDIT WITH CARE

import * as Core__Error from "./Core__Error.mjs";

var $$Array;

Expand Down Expand Up @@ -93,6 +94,8 @@ var List;

var Result;

var panic = Core__Error.panic;

export {
$$Array ,
Console ,
Expand Down Expand Up @@ -140,5 +143,6 @@ export {
$$Option ,
List ,
Result ,
panic ,
}
/* No side effect */
2 changes: 2 additions & 0 deletions src/RescriptCore.res
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,5 @@ type null<+'a> = Js.null<'a>
type undefined<+'a> = Js.undefined<'a>

type nullable<+'a> = Js.nullable<'a>

let panic = Core__Error.panic
39 changes: 39 additions & 0 deletions test/ErrorTests.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
// Generated by ReScript, PLEASE EDIT WITH CARE

import * as Test from "./Test.mjs";
import * as Js_exn from "rescript/lib/es6/js_exn.js";
import * as RescriptCore from "../src/RescriptCore.mjs";
import * as Caml_js_exceptions from "rescript/lib/es6/caml_js_exceptions.js";

function panicTest(param) {
var caught;
try {
caught = RescriptCore.panic("uh oh");
}
catch (raw_err){
var err = Caml_js_exceptions.internalToOCamlException(raw_err);
if (err.RE_EXN_ID === Js_exn.$$Error) {
caught = err._1.message;
} else {
throw err;
}
}
Test.run([
[
"ErrorTests.res",
8,
22,
43
],
"Should resolve test"
], caught, (function (prim0, prim1) {
return prim0 === prim1;
}), "Panic! uh oh");
}

panicTest(undefined);

export {
panicTest ,
}
/* Not a pure module */
11 changes: 11 additions & 0 deletions test/ErrorTests.res
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
open RescriptCore

let panicTest = () => {
let caught = try panic("uh oh") catch {
| Exn.Error(err) => Error.message(err)
}

Test.run(__POS_OF__("Should resolve test"), caught, \"==", Some("Panic! uh oh"))
}

panicTest()
Loading