e4f9326c0e3d74087b82ffe33b93072ad4534a3c
[platform/framework/web/crosswalk-tizen.git] /
1 x({ a: 1 });
2 y({
3   a: 1
4 });
5 $.each({ div: "#list1", ul: "#navigation", dl: "#accordion-dl" });
6
7 var x = { foo: { bar: true } };
8 var y = { a: b, c: d, e: { f: g } };
9 x = {
10   props: {
11     // comment
12     x: 1
13   }
14 };
15 x = {
16   b: function b() {
17     a();
18   },
19   a: b
20 };