We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ca99d commit e06b349Copy full SHA for e06b349
jscomp/core/bs_conditional_initial.mli
@@ -25,8 +25,8 @@
25
(** This function set up built in compile time variables used in
26
conditional compilation so that
27
{[
28
- #if BS then
29
- #elif .. then
+ #if BS
+ #elif ..
30
#end
31
]}
32
Is understood, also make sure the playground do the same initialization.
jscomp/ext/warnings.ml
@@ -591,9 +591,7 @@ let descriptions =
591
(37, "Unused constructor.");
592
(38, "Unused extension constructor.");
593
(39, "Unused rec flag.");
594
- (40, "Constructor or label name used out of scope.");
595
(41, "Ambiguous constructor or label name.");
596
- (42, "Disambiguated constructor or label name (compatibility warning).");
597
(43, "Nonoptional label applied as optional.");
598
(44, "Open statement shadows an already defined identifier.");
599
(45, "Open statement shadows an already defined label or constructor.");
@@ -609,7 +607,6 @@ let descriptions =
609
607
(55, "Inlining impossible");
610
608
(56, "Unreachable case in a pattern-matching (based on type information).");
611
(57, "Ambiguous or-pattern variables under guard");
612
- (58, "Missing cmx file");
613
(59, "Assignment to non-mutable value");
614
(60, "Unused module declaration");
615
(61, "Unboxable type in primitive declaration");
0 commit comments