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 f7d7cb2 commit 75080eeCopy full SHA for 75080ee
jscomp/test/DotDotDot.js
@@ -1,6 +1,13 @@
1
'use strict';
2
3
4
+var MultipleDotDotDots = {
5
+ x: {
6
+ x: 10,
7
+ y: "abc"
8
+ }
9
+};
10
+
11
var v = {
12
x: 10,
13
y: "",
@@ -17,4 +24,5 @@ var v2 = {
17
24
18
25
exports.v = v;
19
26
exports.v2 = v2;
27
+exports.MultipleDotDotDots = MultipleDotDotDots;
20
28
/* No side effect */
jscomp/test/DotDotDot.res
@@ -34,3 +34,10 @@ type svgProps = {
34
x?: string,
35
y?: string,
36
}
37
38
+module MultipleDotDotDots = {
39
+ type t1 = {x: int}
40
+ type t2 = {y: string}
41
+ type t = {dotdotdot: t1, dotdotdot: t2}
42
+ let x: t = {x: 10, y: "abc"}
43
+}
0 commit comments