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 a4ccf25 commit c882f6fCopy full SHA for c882f6f
jscomp/test/arity.js
@@ -27,9 +27,16 @@ function h(u) {
27
return m(1, 2);
28
}
29
30
+var nested = {
31
+ x: {
32
+ y: 3
33
+ }
34
+};
35
+
36
exports.u = u;
37
exports.u2 = u2;
38
exports.f = f;
39
exports.add = add;
40
exports.h = h;
41
+exports.nested = nested;
42
/* No side effect */
jscomp/test/arity.re
@@ -59,4 +59,7 @@ let u = obj => {
59
let h = u => {
60
let m = u##hi ;
61
m(.1,2);
62
-}
+}
63
64
+ //
65
+let nested = ({ "x" : {"y" : 3 }} : {. "x" : {. "y" : int }})
0 commit comments