File: main.js

package info (click to toggle)
node-rollup 3.29.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 53,520 kB
  • sloc: javascript: 115,081; sh: 26; makefile: 18
file content (71 lines) | stat: -rw-r--r-- 2,176 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// removed
/*@__PURE__*/ a();
/*@__PURE__*/ (b());
(/*@__PURE__*/ c());
/*@__PURE__*/ d(1)(2)(3);
/*@__PURE__*/ (e(1))(2)(3);
/*@__PURE__*/ (f(1)(2))(3);
/*@__PURE__*/ (g(1)(2)(3));
(/*@__PURE__*/ h(1)(2)(3));
/*@__PURE__*/ i.x(1).y(2).z(3);
/*@__PURE__*/ (j.x)(1).y(2).z(3);
/*@__PURE__*/ (k.x(1)).y(2).z(3);
/*@__PURE__*/ (l.x(1).y)(2).z(3);
/*@__PURE__*/ (m.x(1).y(2)).z(3);
/*@__PURE__*/ (n.x(1).y(2).z)(3);
/*@__PURE__*/ (o.x(1).y(2).z(3));
(/*@__PURE__*/ p.x(1).y(2).z(3));
[ /*@__PURE__*/ q() ];
/*@__PURE__*/ new r();
/*@__PURE__*/ (new s());
(/*@__PURE__*/ new t());
/*@__PURE__*/ new u(1)(2)(3);
/*@__PURE__*/ new (v(1))(2)(3);
/*@__PURE__*/ new (w(1)(2))(3);
/*@__PURE__*/ new (x(1)(2)(3));
(/*@__PURE__*/ new y(1)(2)(3));
/*@__PURE__*/ new z.x(1).y(2).z(3);
/*@__PURE__*/ new (a.x)(1).y(2).z(3);
/*@__PURE__*/ new (b.x(1)).y(2).z(3);
/*@__PURE__*/ new (c.x(1).y)(2).z(3);
/*@__PURE__*/ new (d.x(1).y(2)).z(3);
/*@__PURE__*/ new (e.x(1).y(2).z)(3);
/*@__PURE__*/ new (f.x(1).y(2).z(3));
(/*@__PURE__*/ new g.x(1).y(2).z(3));
[ /*@__PURE__*/ new h() ];

// can be simplified
(/*@__PURE__*/ x(), y());
(/*@__PURE__*/ new x(), y());
(w(), /*@__PURE__*/ x(), y());
(w(), /*@__PURE__*/ new x(), y());
/*@__PURE__*/(g() || h())(x(), y());
/*@__PURE__*/new (g() || h())(x(), y());
(/*@__PURE__*/ (a() || b()))(c(), d());
new (/*@__PURE__*/ (a() || b()))(c(), d());
[ /*@__PURE__*/ x(), y() ];
[ /*@__PURE__*/ new x(), y() ];
[ w(), /*@__PURE__*/ x(), y() ];
[ w(), /*@__PURE__*/ new x(), y() ];

// retained
(/*@__PURE__*/ a)();
(/*@__PURE__*/ b)(1)(2)(3);
(/*@__PURE__*/ c(1))(2)(3);
(/*@__PURE__*/ d(1)(2))(3);
(/*@__PURE__*/ e).x(1).y(2).z(3);
(/*@__PURE__*/ f.x)(1).y(2).z(3);
(/*@__PURE__*/ g.x(1)).y(2).z(3);
(/*@__PURE__*/ h.x(1).y)(2).z(3);
(/*@__PURE__*/ i.x(1).y(2)).z(3);
(/*@__PURE__*/ j.x(1).y(2).z)(3);
new (/*@__PURE__*/ k)();
new (/*@__PURE__*/ l)(1)(2)(3);
(/*@__PURE__*/ new m(1))(2)(3);
(/*@__PURE__*/ new n(1)(2))(3);
new (/*@__PURE__*/ o).x(1).y(2).z(3);
/* */ new (/*@__PURE__*/ p.x)(1).y(2).z(3);
(/*@__PURE__*/ new q.x(1)).y(2).z(3);
(/*@__PURE__*/ new r.x(1).y)(2).z(3);
(/*@__PURE__*/ new s.x(1).y(2)).z(3);
(/*@__PURE__*/ new t.x(1).y(2).z)(3);