File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 24
24
- Fix completion for application with tagged template. https://github.com/rescript-lang/rescript/pull/7278
25
25
- Fix error message for arity in the presence of optional arguments. https://github.com/rescript-lang/rescript/pull/7284
26
26
27
+ #### :house : Internal
28
+
29
+ - Remove ignore in res_scanner.ml . https://github.com/rescript-lang/rescript/pull/7280
30
+
27
31
# 12.0.0-alpha.8
28
32
29
33
#### :bug : Bug fix
Original file line number Diff line number Diff line change @@ -257,13 +257,13 @@ let scan_number scanner =
257
257
8 )
258
258
| _ -> 10
259
259
in
260
- ignore ( scan_digits scanner ~base );
260
+ let _ : bool = scan_digits scanner ~base in
261
261
262
262
(* *)
263
263
let is_float =
264
264
if '.' == scanner.ch then (
265
265
next scanner;
266
- ignore ( scan_digits scanner ~base );
266
+ let _ : bool = scan_digits scanner ~base in
267
267
true )
268
268
else false
269
269
in
You can’t perform that action at this time.
0 commit comments