Skip to content

Commit e6fc84e

Browse files
authored
Special JSX children error message (rescript-lang#7044)
* special case error message when passing children to a JSX component that does not accept children * changelog
1 parent f6b0038 commit e6fc84e

File tree

4 files changed

+26
-2
lines changed

4 files changed

+26
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
#### :nail_care: Polish
2424

25+
- Improve error message when passing `children` prop to a component that doesn't accept it. https://github.com/rescript-lang/rescript-compiler/pull/7044
2526
- Improve error messages for pattern matching on option vs non-option, and vice versa. https://github.com/rescript-lang/rescript-compiler/pull/7035
2627
- Improve bigint literal comparison. https://github.com/rescript-lang/rescript-compiler/pull/7029
2728
- Improve output of `@variadic` bindings. https://github.com/rescript-lang/rescript-compiler/pull/7030
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
We've found a bug for you!
3+
/.../fixtures/component_missing_prop_children.res:6:35-42
4+
5+
4 │ type props<'name> = {name: 'name}
6+
5 │
7+
6 │ let make = (): props<'name> => {children: ""}
8+
7 │ }
9+
8 │
10+
11+
This JSX component does not accept child elements. It has no children prop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// Since the React transform isn't active in the tests, mimic what the transform outputs.
2+
module Component = {
3+
@res.jsxComponentProps
4+
type props<'name> = {name: 'name}
5+
6+
let make = (): props<'name> => {children: ""}
7+
}

jscomp/ml/error_message_utils.ml

+7-2
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,13 @@ let print_component_name ppf (p : Path.t) =
287287
let print_component_wrong_prop_error ppf (p : Path.t)
288288
(_fields : Types.label_declaration list) name =
289289
fprintf ppf "@[<v>";
290-
fprintf ppf
291-
"@[<2>The prop @{<error>%s@} does not belong to the JSX component " name;
290+
(match name with
291+
| "children" ->
292+
fprintf ppf
293+
"@[<2>This JSX component does not accept child elements. It has no @{<error>children@} prop "
294+
| _ ->
295+
fprintf ppf
296+
"@[<2>The prop @{<error>%s@} does not belong to the JSX component " name);
292297
print_component_name ppf p;
293298
fprintf ppf "@]@,@,"
294299

0 commit comments

Comments
 (0)