File tree 2 files changed +20
-3
lines changed
2 files changed +20
-3
lines changed Original file line number Diff line number Diff line change 18
18
#### :rocket : New Feature
19
19
- Add support for toplevel ` await ` https://github.com/rescript-lang/rescript-compiler/pull/6054
20
20
21
+ #### :nail_care : Polish
22
+
23
+ - Better error message for extension point https://github.com/rescript-lang/rescript-compiler/pull/6057
24
+
21
25
# 10.1.3
22
26
23
27
#### :rocket : New Feature
Original file line number Diff line number Diff line change @@ -69,12 +69,23 @@ let handle_debugger loc (payload : Ast_payload.t) =
69
69
Ast_external_mk. local_external_apply loc ~pval_prim: [ " #debugger" ]
70
70
~pval_type: (Typ. arrow Nolabel (Typ. any () ) (Ast_literal. type_unit () ))
71
71
[ Ast_literal. val_unit ~loc () ]
72
- | _ -> Location. raise_errorf ~loc " bs.debugger does not accept payload"
72
+ | _ ->
73
+ Location. raise_errorf ~loc " %%debugger extension doesn't accept arguments"
73
74
74
75
let handle_raw ~kind loc payload =
75
76
let is_function = ref false in
76
77
match Ast_payload. raw_as_string_exp_exn ~kind ~is_function payload with
77
- | None -> Location. raise_errorf ~loc " bs.raw can only be applied to a string"
78
+ | None -> (
79
+ match kind with
80
+ | Raw_re ->
81
+ Location. raise_errorf ~loc
82
+ " %%re extension can only be applied to a string"
83
+ | Raw_exp ->
84
+ Location. raise_errorf ~loc
85
+ " %%raw extension can only be applied to a string"
86
+ | Raw_program ->
87
+ Location. raise_errorf ~loc
88
+ " %%%%raw extension can only be applied to a string" )
78
89
| Some exp ->
79
90
{
80
91
exp with
@@ -99,4 +110,6 @@ let handle_raw_structure loc payload =
99
110
~pval_type: (Typ. arrow Nolabel (Typ. any () ) (Typ. any () ))
100
111
[ exp ];
101
112
}
102
- | None -> Location. raise_errorf ~loc " bs.raw can only be applied to a string"
113
+ | None ->
114
+ Location. raise_errorf ~loc
115
+ " %%%%raw extension can only be applied to a string"
You can’t perform that action at this time.
0 commit comments