Skip to content

Support bool untagged variants #6368

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

Merged
Merged
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 @@ -21,6 +21,7 @@
- Support renaming fields in inline records with `@as` attribute. [#6391](https://github.com/rescript-lang/rescript-compiler/pull/6391)
- Add builtin abstract types for File and Blob APIs. https://github.com/rescript-lang/rescript-compiler/pull/6383
- Untagged variants: Support `promise`, RegExes, Dates, File and Blob. https://github.com/rescript-lang/rescript-compiler/pull/6383
- Untagged variants: Support `bool`. https://github.com/rescript-lang/rescript-compiler/pull/6368
- Support aliased types as payloads to untagged variants. https://github.com/rescript-lang/rescript-compiler/pull/6394

#### :nail_care: Polish
Expand Down
15 changes: 15 additions & 0 deletions jscomp/build_tests/unboxed_bool_with_const/bsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"name": "unboxed_bool_with_const",
"version": "0.1.0",
"sources": [
{
"dir": "src",
"subdirs": true
}
],
"package-specs": {
"module": "commonjs",
"in-source": true
},
"suffix": ".bs.js"
}
26 changes: 26 additions & 0 deletions jscomp/build_tests/unboxed_bool_with_const/input.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
//@ts-check

var cp = require("child_process");
var assert = require("assert");
var rescript_exe = require("../../../scripts/bin_path").rescript_exe;

var out = cp.spawnSync(rescript_exe, {
cwd: __dirname,
encoding: "utf8",
});

assert.equal(
out.stdout.slice(out.stdout.indexOf("Main.res:3:3-14")),
`Main.res:3:3-14

1 │ @unboxed
2 │ type t<'a> =
3 │ | Bool(bool)
4 │ | @as(false) False
5 │ | @as(true) True

This untagged variant definition is invalid: At most one case can be a boolean type.

FAILED: cannot make progress due to previous errors.
`
);
5 changes: 5 additions & 0 deletions jscomp/build_tests/unboxed_bool_with_const/src/Main.res
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@unboxed
type t<'a> =
| Bool(bool)
| @as(false) False
| @as(true) True
1 change: 1 addition & 0 deletions jscomp/core/js_exp_make.ml
Original file line number Diff line number Diff line change
Expand Up @@ -805,6 +805,7 @@ let tag_type = function
| Undefined -> undefined
| Untagged IntType -> str "number"
| Untagged FloatType -> str "number"
| Untagged BooleanType -> str "boolean"
| Untagged FunctionType -> str "function"
| Untagged StringType -> str "string"
| Untagged (InstanceType i) -> str (Ast_untagged_variants.Instance.to_string i) ~delim:DNoQuotes
Expand Down
58 changes: 35 additions & 23 deletions jscomp/ml/ast_untagged_variants.ml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ type untaggedError =
| AtMostOneFunction
| AtMostOneString
| AtMostOneNumber
| AtMostOneBoolean
| DuplicateLiteral of string
| ConstructorMoreThanOneArg of string
type error =
Expand Down Expand Up @@ -49,6 +50,7 @@ let report_error ppf =
| AtMostOneInstance i -> "At most one case can be a " ^ (Instance.to_string i) ^ " type."
| AtMostOneFunction -> "At most one case can be a function type."
| AtMostOneString -> "At most one case can be a string type."
| AtMostOneBoolean -> "At most one case can be a boolean type."
| AtMostOneNumber ->
"At most one case can be a number type (int or float)."
| DuplicateLiteral s -> "Duplicate literal " ^ s ^ "."
Expand All @@ -59,6 +61,7 @@ type block_type =
| IntType
| StringType
| FloatType
| BooleanType
| InstanceType of Instance.t
| FunctionType
| ObjectType
Expand Down Expand Up @@ -167,6 +170,8 @@ let get_block_type_from_typ ~env (t: Types.type_expr) : block_type option =
Some IntType
| {desc = Tconstr (path, _, _)} when Path.same path Predef.path_float ->
Some FloatType
| {desc = Tconstr (path, _, _)} when Path.same path Predef.path_bool ->
Some BooleanType
| ({desc = Tconstr _} as t) when Ast_uncurried_utils.typeIsUncurriedFun t ->
Some FunctionType
| {desc = Tarrow _} -> Some FunctionType
Expand Down Expand Up @@ -232,6 +237,7 @@ let checkInvariant ~isUntaggedDef ~(consts : (Location.t * tag) list)
let objectTypes = ref 0 in
let stringTypes = ref 0 in
let numberTypes = ref 0 in
let booleanTypes = ref 0 in
let unknownTypes = ref 0 in
let addStringLiteral ~loc s =
if StringSet.mem s !string_literals then
Expand All @@ -258,6 +264,10 @@ let checkInvariant ~isUntaggedDef ~(consts : (Location.t * tag) list)
raise (Error (loc, InvalidUntaggedVariantDefinition AtMostOneString));
if !numberTypes > 1 then
raise (Error (loc, InvalidUntaggedVariantDefinition AtMostOneNumber));
if !booleanTypes > 1 then
raise (Error (loc, InvalidUntaggedVariantDefinition AtMostOneBoolean));
if !booleanTypes > 0 && (StringSet.mem "true" !nonstring_literals || StringSet.mem "false" !nonstring_literals) then
raise (Error (loc, InvalidUntaggedVariantDefinition AtMostOneBoolean));
()
in
Ext_list.rev_iter consts (fun (loc, literal) ->
Expand All @@ -267,34 +277,27 @@ let checkInvariant ~isUntaggedDef ~(consts : (Location.t * tag) list)
| Some (Float f) -> addNonstringLiteral ~loc f
| Some Null -> addNonstringLiteral ~loc "null"
| Some Undefined -> addNonstringLiteral ~loc "undefined"
| Some (Bool b) ->
addNonstringLiteral ~loc (if b then "true" else "false")
| Some (Bool b) -> addNonstringLiteral ~loc (if b then "true" else "false")
| Some (Untagged _) -> ()
| None -> addStringLiteral ~loc literal.name);
if isUntaggedDef then
Ext_list.rev_iter blocks (fun (loc, block) ->
let name = block.tag.name in
match block.block_type with
| Some UnknownType ->
incr unknownTypes;
invariant loc name
| Some ObjectType ->
incr objectTypes;
invariant loc name
| Some (InstanceType i) ->
match block.block_type with
| Some block_type ->
(match block_type with
| UnknownType -> incr unknownTypes;
| ObjectType -> incr objectTypes;
| (InstanceType i) ->
let count = Hashtbl.find_opt instanceTypes i |> Option.value ~default:0 in
Hashtbl.replace instanceTypes i (count + 1);
invariant loc name
| Some FunctionType ->
incr functionTypes;
invariant loc name
| Some (IntType | FloatType) ->
incr numberTypes;
invariant loc name
| Some StringType ->
incr stringTypes;
invariant loc name
| None -> ())
| FunctionType -> incr functionTypes;
| (IntType | FloatType) -> incr numberTypes;
| BooleanType -> incr booleanTypes;
| StringType -> incr stringTypes;
);
invariant loc block.tag.name
| None -> ()
)

let names_from_type_variant ?(isUntaggedDef = false) ~env
(cstrs : Types.constructor_declaration list) =
Expand Down Expand Up @@ -353,6 +356,7 @@ module DynamicChecks = struct
let function_ = Untagged FunctionType |> tag_type
let string = Untagged StringType |> tag_type
let number = Untagged IntType |> tag_type
let boolean = Untagged BooleanType |> tag_type

let ( == ) x y = bin EqEqEq x y
let ( != ) x y = bin NotEqEq x y
Expand All @@ -371,6 +375,11 @@ module DynamicChecks = struct
| Int _ | Float _ -> true
| _ -> false)
in
let literals_overlaps_with_boolean () =
Ext_list.exists literal_cases (function
| Bool _ -> true
| _ -> false)
in
let literals_overlaps_with_object () =
Ext_list.exists literal_cases (function
| Null -> true
Expand All @@ -386,6 +395,8 @@ module DynamicChecks = struct
typeof e != number
| FloatType when literals_overlaps_with_number () = false ->
typeof e != number
| BooleanType when literals_overlaps_with_boolean () = false ->
typeof e != boolean
| InstanceType i -> not (is_instance i e)
| FunctionType -> typeof e != function_
| ObjectType when literals_overlaps_with_object () = false ->
Expand All @@ -394,6 +405,7 @@ module DynamicChecks = struct
| StringType (* overlap *)
| IntType (* overlap *)
| FloatType (* overlap *)
| BooleanType (* overlap *)
| UnknownType -> (
(* We don't know the type of unknown, so we need to express:
this is not one of the literals *)
Expand Down Expand Up @@ -434,7 +446,7 @@ module DynamicChecks = struct
let add_runtime_type_check ~tag_type ~(block_cases : block_type list) x y =
let instances = Ext_list.filter_map block_cases (function InstanceType i -> Some i | _ -> None) in
match tag_type with
| Untagged (IntType | StringType | FloatType | FunctionType) ->
| Untagged (IntType | StringType | FloatType | BooleanType | FunctionType) ->
typeof y == x
| Untagged ObjectType ->
if instances <> [] then
Expand Down
3 changes: 3 additions & 0 deletions jscomp/test/variantsMatching.gen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ export type MyNullable_t<a> = null | undefined | a;

// tslint:disable-next-line:interface-over-type-literal
export type MyNullableExtended_t<a> = null | undefined | "WhyNotAnotherOne" | a;

// tslint:disable-next-line:interface-over-type-literal
export type UntaggedWithBool_t = string | number | boolean | string;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelated: this does not look right.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this unrelated to this specific PR?

23 changes: 23 additions & 0 deletions jscomp/test/variantsMatching.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions jscomp/test/variantsMatching.res
Original file line number Diff line number Diff line change
Expand Up @@ -272,3 +272,17 @@ module CustomTagNotInline = {
let a = A(10)
let b = B(20)
}

module UntaggedWithBool = {
@unboxed @genType
type t = String(string) | Float(float) | Bool(bool) | Object({name: string})
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unrelate: this defines string twice.
It should be an error.

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Where does it define string twice? The object prop name + the constructor..?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess it doesn't look right with this output.

export type UntaggedWithBool_t = string | number | boolean | string;

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ahh, the two comments are connected! Now I see.


let classify = x =>
switch x {
| String(_) => "string"
| Float(_) => "int"
| Bool(true) => "true"
| Bool(_) => "boolean"
| Object({name}) => "Object" ++ name
}
}