@finqu/cool 1.1.9 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/dist/css/cool-grid.css +1 -1
  2. package/dist/css/cool-grid.css.map +1 -1
  3. package/dist/css/cool-grid.min.css.map +1 -1
  4. package/dist/css/cool-reboot.css +5 -1
  5. package/dist/css/cool-reboot.css.map +6 -4
  6. package/dist/css/cool-reboot.min.css +1 -1
  7. package/dist/css/cool-reboot.min.css.map +1 -1
  8. package/dist/css/cool.css +190 -55
  9. package/dist/css/cool.css.map +23 -19
  10. package/dist/css/cool.min.css +1 -1
  11. package/dist/css/cool.min.css.map +1 -1
  12. package/dist/js/cool.bundle.js +565 -178
  13. package/dist/js/cool.bundle.js.map +1 -1
  14. package/dist/js/cool.bundle.min.js +2 -2
  15. package/dist/js/cool.bundle.min.js.map +1 -1
  16. package/dist/js/cool.esm.js +565 -178
  17. package/dist/js/cool.esm.js.map +1 -1
  18. package/dist/js/cool.esm.min.js +2 -2
  19. package/dist/js/cool.esm.min.js.map +1 -1
  20. package/dist/js/cool.js +565 -178
  21. package/dist/js/cool.js.map +1 -1
  22. package/dist/js/cool.min.js +2 -2
  23. package/dist/js/cool.min.js.map +1 -1
  24. package/html/index.html +846 -4
  25. package/js/dist/collapse.js +1043 -629
  26. package/js/dist/collapse.js.map +1 -1
  27. package/js/dist/common.js +520 -282
  28. package/js/dist/common.js.map +1 -1
  29. package/js/dist/dropdown.js +273 -58
  30. package/js/dist/dropdown.js.map +1 -1
  31. package/js/dist/popover.js +273 -58
  32. package/js/dist/popover.js.map +1 -1
  33. package/js/dist/sectiontabs.js +273 -58
  34. package/js/dist/sectiontabs.js.map +1 -1
  35. package/js/dist/select.js +9904 -3726
  36. package/js/dist/select.js.map +1 -1
  37. package/js/dist/tooltip.js +1703 -1434
  38. package/js/dist/tooltip.js.map +1 -1
  39. package/js/src/abstract-ui-component.js +16 -5
  40. package/js/src/collapse.js +24 -10
  41. package/js/src/common.js +18 -0
  42. package/js/src/dialog.js +6 -17
  43. package/js/src/dropdown.js +2 -2
  44. package/js/src/popover.js +2 -2
  45. package/js/src/section-tabs.js +2 -2
  46. package/js/src/select.js +578 -177
  47. package/js/src/toast.js +2 -2
  48. package/js/src/tooltip.js +7 -2
  49. package/js/src/util/index.js +10 -0
  50. package/package.json +1 -1
  51. package/scss/_button-group.scss +4 -0
  52. package/scss/_buttons.scss +3 -3
  53. package/scss/_custom-forms.scss +14 -12
  54. package/scss/_dialog.scss +16 -5
  55. package/scss/_frame.scss +1 -0
  56. package/scss/_images.scss +45 -1
  57. package/scss/_input-group.scss +12 -6
  58. package/scss/_mixins.scss +1 -0
  59. package/scss/_notification.scss +13 -0
  60. package/scss/_reboot.scss +4 -0
  61. package/scss/_section.scss +14 -2
  62. package/scss/_select.scss +10 -1
  63. package/scss/_tables.scss +2 -1
  64. package/scss/_variables.scss +2 -2
  65. package/scss/cool.scss +2 -1
  66. package/scss/mixins/_notification-variant.scss +7 -0
  67. package/scss/utilities/_collapse.scss +2 -2
  68. package/scss/utilities/_cursor.scss +12 -0
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Cool UI collapse.js v1.1.8 (https://finqu.fi)
2
+ * Cool UI collapse.js v1.1.9 (https://finqu.fi)
3
3
  * Copyright 2011-2019 Finqu Oy
4
4
  * Licensed under the ISC license - (http://opensource.org/licenses/ISC)
5
5
  */
@@ -17,7 +17,7 @@
17
17
 
18
18
  var cov_2jd14bepcm = function () {
19
19
  var path = "/Users/aki/Projects/Finqu/www-structure/finqu-lib/finqu-ui/js/src/util/index.js";
20
- var hash = "12a5c1d33f0b709c3d9502b4d339446b676d47e4";
20
+ var hash = "9850c22355c90dfbb57e869a1abf444408954ba5";
21
21
 
22
22
  var Function = function () {}.constructor;
23
23
 
@@ -475,6 +475,36 @@
475
475
  line: 105,
476
476
  column: 15
477
477
  }
478
+ },
479
+ "45": {
480
+ start: {
481
+ line: 108,
482
+ column: 0
483
+ },
484
+ end: {
485
+ line: 116,
486
+ column: 1
487
+ }
488
+ },
489
+ "46": {
490
+ start: {
491
+ line: 112,
492
+ column: 2
493
+ },
494
+ end: {
495
+ line: 114,
496
+ column: 3
497
+ }
498
+ },
499
+ "47": {
500
+ start: {
501
+ line: 113,
502
+ column: 3
503
+ },
504
+ end: {
505
+ line: 113,
506
+ column: 17
507
+ }
478
508
  }
479
509
  },
480
510
  fnMap: {
@@ -789,6 +819,30 @@
789
819
  }
790
820
  },
791
821
  line: 97
822
+ },
823
+ "13": {
824
+ name: "(anonymous_13)",
825
+ decl: {
826
+ start: {
827
+ line: 110,
828
+ column: 9
829
+ },
830
+ end: {
831
+ line: 110,
832
+ column: 10
833
+ }
834
+ },
835
+ loc: {
836
+ start: {
837
+ line: 110,
838
+ column: 23
839
+ },
840
+ end: {
841
+ line: 115,
842
+ column: 2
843
+ }
844
+ },
845
+ line: 110
792
846
  }
793
847
  },
794
848
  branchMap: {
@@ -1181,6 +1235,39 @@
1181
1235
  }
1182
1236
  }],
1183
1237
  line: 101
1238
+ },
1239
+ "11": {
1240
+ loc: {
1241
+ start: {
1242
+ line: 112,
1243
+ column: 2
1244
+ },
1245
+ end: {
1246
+ line: 114,
1247
+ column: 3
1248
+ }
1249
+ },
1250
+ type: "if",
1251
+ locations: [{
1252
+ start: {
1253
+ line: 112,
1254
+ column: 2
1255
+ },
1256
+ end: {
1257
+ line: 114,
1258
+ column: 3
1259
+ }
1260
+ }, {
1261
+ start: {
1262
+ line: 112,
1263
+ column: 2
1264
+ },
1265
+ end: {
1266
+ line: 114,
1267
+ column: 3
1268
+ }
1269
+ }],
1270
+ line: 112
1184
1271
  }
1185
1272
  },
1186
1273
  s: {
@@ -1228,7 +1315,10 @@
1228
1315
  "41": 0,
1229
1316
  "42": 0,
1230
1317
  "43": 0,
1231
- "44": 0
1318
+ "44": 0,
1319
+ "45": 0,
1320
+ "46": 0,
1321
+ "47": 0
1232
1322
  },
1233
1323
  f: {
1234
1324
  "0": 0,
@@ -1243,7 +1333,8 @@
1243
1333
  "9": 0,
1244
1334
  "10": 0,
1245
1335
  "11": 0,
1246
- "12": 0
1336
+ "12": 0,
1337
+ "13": 0
1247
1338
  },
1248
1339
  b: {
1249
1340
  "0": [0, 0],
@@ -1256,7 +1347,8 @@
1256
1347
  "7": [0, 0],
1257
1348
  "8": [0, 0],
1258
1349
  "9": [0, 0],
1259
- "10": [0, 0, 0]
1350
+ "10": [0, 0, 0],
1351
+ "11": [0, 0]
1260
1352
  },
1261
1353
  _coverageSchema: "43e27e138ebf9cfc5966b082cf9a028302ed4184"
1262
1354
  };
@@ -1323,9 +1415,25 @@
1323
1415
 
1324
1416
  cov_2jd14bepcm.s[40]++;
1325
1417
 
1418
+ cov_2jd14bepcm.s[45]++;
1419
+ $.event.special.destroyed = {
1420
+ remove: function remove(obj) {
1421
+ cov_2jd14bepcm.f[13]++;
1422
+ cov_2jd14bepcm.s[46]++;
1423
+
1424
+ if (obj.handler) {
1425
+ cov_2jd14bepcm.b[11][0]++;
1426
+ cov_2jd14bepcm.s[47]++;
1427
+ obj.handler();
1428
+ } else {
1429
+ cov_2jd14bepcm.b[11][1]++;
1430
+ }
1431
+ }
1432
+ };
1433
+
1326
1434
  var cov_1o94gtu15 = function () {
1327
1435
  var path = "/Users/aki/Projects/Finqu/www-structure/finqu-lib/finqu-ui/js/src/abstract-ui-component.js";
1328
- var hash = "631b1d551c062c1704f9d1e5fac794c20a08485c";
1436
+ var hash = "06e3033bfb01687e153112138c4d90f5c7ac9bf0";
1329
1437
 
1330
1438
  var Function = function () {}.constructor;
1331
1439
 
@@ -1361,7 +1469,7 @@
1361
1469
  },
1362
1470
  end: {
1363
1471
  line: 10,
1364
- column: 33
1472
+ column: 30
1365
1473
  }
1366
1474
  },
1367
1475
  "3": {
@@ -1391,7 +1499,7 @@
1391
1499
  },
1392
1500
  end: {
1393
1501
  line: 21,
1394
- column: 35
1502
+ column: 32
1395
1503
  }
1396
1504
  },
1397
1505
  "6": {
@@ -1421,7 +1529,7 @@
1421
1529
  },
1422
1530
  end: {
1423
1531
  line: 32,
1424
- column: 36
1532
+ column: 33
1425
1533
  }
1426
1534
  },
1427
1535
  "9": {
@@ -1451,7 +1559,7 @@
1451
1559
  },
1452
1560
  end: {
1453
1561
  line: 43,
1454
- column: 33
1562
+ column: 30
1455
1563
  }
1456
1564
  },
1457
1565
  "12": {
@@ -1481,46 +1589,76 @@
1481
1589
  },
1482
1590
  end: {
1483
1591
  line: 54,
1484
- column: 34
1592
+ column: 31
1485
1593
  }
1486
1594
  },
1487
1595
  "15": {
1488
1596
  start: {
1489
1597
  line: 61,
1490
- column: 5
1598
+ column: 22
1491
1599
  },
1492
1600
  end: {
1493
- line: 68,
1494
- column: 6
1601
+ line: 61,
1602
+ column: 39
1495
1603
  }
1496
1604
  },
1497
1605
  "16": {
1498
1606
  start: {
1499
1607
  line: 63,
1608
+ column: 8
1609
+ },
1610
+ end: {
1611
+ line: 66,
1612
+ column: 9
1613
+ }
1614
+ },
1615
+ "17": {
1616
+ start: {
1617
+ line: 65,
1500
1618
  column: 12
1501
1619
  },
1502
1620
  end: {
1503
- line: 67,
1621
+ line: 65,
1622
+ column: 31
1623
+ }
1624
+ },
1625
+ "18": {
1626
+ start: {
1627
+ line: 72,
1628
+ column: 5
1629
+ },
1630
+ end: {
1631
+ line: 79,
1632
+ column: 6
1633
+ }
1634
+ },
1635
+ "19": {
1636
+ start: {
1637
+ line: 74,
1638
+ column: 12
1639
+ },
1640
+ end: {
1641
+ line: 78,
1504
1642
  column: 13
1505
1643
  }
1506
1644
  },
1507
- "17": {
1645
+ "20": {
1508
1646
  start: {
1509
- line: 64,
1647
+ line: 75,
1510
1648
  column: 16
1511
1649
  },
1512
1650
  end: {
1513
- line: 64,
1651
+ line: 75,
1514
1652
  column: 36
1515
1653
  }
1516
1654
  },
1517
- "18": {
1655
+ "21": {
1518
1656
  start: {
1519
- line: 66,
1657
+ line: 77,
1520
1658
  column: 10
1521
1659
  },
1522
1660
  end: {
1523
- line: 66,
1661
+ line: 77,
1524
1662
  column: 31
1525
1663
  }
1526
1664
  }
@@ -1661,14 +1799,38 @@
1661
1799
  loc: {
1662
1800
  start: {
1663
1801
  line: 59,
1664
- column: 17
1802
+ column: 14
1665
1803
  },
1666
1804
  end: {
1667
- line: 69,
1805
+ line: 67,
1668
1806
  column: 5
1669
1807
  }
1670
1808
  },
1671
1809
  line: 59
1810
+ },
1811
+ "6": {
1812
+ name: "(anonymous_6)",
1813
+ decl: {
1814
+ start: {
1815
+ line: 70,
1816
+ column: 4
1817
+ },
1818
+ end: {
1819
+ line: 70,
1820
+ column: 5
1821
+ }
1822
+ },
1823
+ loc: {
1824
+ start: {
1825
+ line: 70,
1826
+ column: 17
1827
+ },
1828
+ end: {
1829
+ line: 80,
1830
+ column: 5
1831
+ }
1832
+ },
1833
+ line: 70
1672
1834
  }
1673
1835
  },
1674
1836
  branchMap: {
@@ -1840,68 +2002,101 @@
1840
2002
  "5": {
1841
2003
  loc: {
1842
2004
  start: {
1843
- line: 61,
2005
+ line: 63,
2006
+ column: 8
2007
+ },
2008
+ end: {
2009
+ line: 66,
2010
+ column: 9
2011
+ }
2012
+ },
2013
+ type: "if",
2014
+ locations: [{
2015
+ start: {
2016
+ line: 63,
2017
+ column: 8
2018
+ },
2019
+ end: {
2020
+ line: 66,
2021
+ column: 9
2022
+ }
2023
+ }, {
2024
+ start: {
2025
+ line: 63,
2026
+ column: 8
2027
+ },
2028
+ end: {
2029
+ line: 66,
2030
+ column: 9
2031
+ }
2032
+ }],
2033
+ line: 63
2034
+ },
2035
+ "6": {
2036
+ loc: {
2037
+ start: {
2038
+ line: 72,
1844
2039
  column: 5
1845
2040
  },
1846
2041
  end: {
1847
- line: 68,
2042
+ line: 79,
1848
2043
  column: 6
1849
2044
  }
1850
2045
  },
1851
2046
  type: "if",
1852
2047
  locations: [{
1853
2048
  start: {
1854
- line: 61,
2049
+ line: 72,
1855
2050
  column: 5
1856
2051
  },
1857
2052
  end: {
1858
- line: 68,
2053
+ line: 79,
1859
2054
  column: 6
1860
2055
  }
1861
2056
  }, {
1862
2057
  start: {
1863
- line: 61,
2058
+ line: 72,
1864
2059
  column: 5
1865
2060
  },
1866
2061
  end: {
1867
- line: 68,
2062
+ line: 79,
1868
2063
  column: 6
1869
2064
  }
1870
2065
  }],
1871
- line: 61
2066
+ line: 72
1872
2067
  },
1873
- "6": {
2068
+ "7": {
1874
2069
  loc: {
1875
2070
  start: {
1876
- line: 63,
2071
+ line: 74,
1877
2072
  column: 12
1878
2073
  },
1879
2074
  end: {
1880
- line: 67,
2075
+ line: 78,
1881
2076
  column: 13
1882
2077
  }
1883
2078
  },
1884
2079
  type: "if",
1885
2080
  locations: [{
1886
2081
  start: {
1887
- line: 63,
2082
+ line: 74,
1888
2083
  column: 12
1889
2084
  },
1890
2085
  end: {
1891
- line: 67,
2086
+ line: 78,
1892
2087
  column: 13
1893
2088
  }
1894
2089
  }, {
1895
2090
  start: {
1896
- line: 63,
2091
+ line: 74,
1897
2092
  column: 12
1898
2093
  },
1899
2094
  end: {
1900
- line: 67,
2095
+ line: 78,
1901
2096
  column: 13
1902
2097
  }
1903
2098
  }],
1904
- line: 63
2099
+ line: 74
1905
2100
  }
1906
2101
  },
1907
2102
  s: {
@@ -1923,7 +2118,10 @@
1923
2118
  "15": 0,
1924
2119
  "16": 0,
1925
2120
  "17": 0,
1926
- "18": 0
2121
+ "18": 0,
2122
+ "19": 0,
2123
+ "20": 0,
2124
+ "21": 0
1927
2125
  },
1928
2126
  f: {
1929
2127
  "0": 0,
@@ -1931,7 +2129,8 @@
1931
2129
  "2": 0,
1932
2130
  "3": 0,
1933
2131
  "4": 0,
1934
- "5": 0
2132
+ "5": 0,
2133
+ "6": 0
1935
2134
  },
1936
2135
  b: {
1937
2136
  "0": [0, 0],
@@ -1940,7 +2139,8 @@
1940
2139
  "3": [0, 0],
1941
2140
  "4": [0, 0],
1942
2141
  "5": [0, 0],
1943
- "6": [0, 0]
2142
+ "6": [0, 0],
2143
+ "7": [0, 0]
1944
2144
  },
1945
2145
  _coverageSchema: "43e27e138ebf9cfc5966b082cf9a028302ed4184"
1946
2146
  };
@@ -1970,7 +2170,7 @@
1970
2170
  if (typeof onInit === 'function') {
1971
2171
  cov_1o94gtu15.b[0][0]++;
1972
2172
  cov_1o94gtu15.s[2]++;
1973
- onInit.call(this.el);
2173
+ onInit.call(this);
1974
2174
  } else {
1975
2175
  cov_1o94gtu15.b[0][1]++;
1976
2176
  }
@@ -1985,7 +2185,7 @@
1985
2185
  if (typeof onUpdate === 'function') {
1986
2186
  cov_1o94gtu15.b[1][0]++;
1987
2187
  cov_1o94gtu15.s[5]++;
1988
- onUpdate.call(this.el);
2188
+ onUpdate.call(this);
1989
2189
  } else {
1990
2190
  cov_1o94gtu15.b[1][1]++;
1991
2191
  }
@@ -2000,7 +2200,7 @@
2000
2200
  if (typeof onDestroy === 'function') {
2001
2201
  cov_1o94gtu15.b[2][0]++;
2002
2202
  cov_1o94gtu15.s[8]++;
2003
- onDestroy.call(this.el);
2203
+ onDestroy.call(this);
2004
2204
  } else {
2005
2205
  cov_1o94gtu15.b[2][1]++;
2006
2206
  }
@@ -2015,7 +2215,7 @@
2015
2215
  if (typeof onShow === 'function') {
2016
2216
  cov_1o94gtu15.b[3][0]++;
2017
2217
  cov_1o94gtu15.s[11]++;
2018
- onShow.call(this.el);
2218
+ onShow.call(this);
2019
2219
  } else {
2020
2220
  cov_1o94gtu15.b[3][1]++;
2021
2221
  }
@@ -2030,35 +2230,50 @@
2030
2230
  if (typeof onClose === 'function') {
2031
2231
  cov_1o94gtu15.b[4][0]++;
2032
2232
  cov_1o94gtu15.s[14]++;
2033
- onClose.call(this.el);
2233
+ onClose.call(this);
2034
2234
  } else {
2035
2235
  cov_1o94gtu15.b[4][1]++;
2036
2236
  }
2237
+ } // Reset callback
2238
+ ;
2239
+
2240
+ _proto.onReset = function onReset() {
2241
+ cov_1o94gtu15.f[5]++;
2242
+ var onReset = (cov_1o94gtu15.s[15]++, this.opts.onReset);
2243
+ cov_1o94gtu15.s[16]++;
2244
+
2245
+ if (typeof onReset === 'function') {
2246
+ cov_1o94gtu15.b[5][0]++;
2247
+ cov_1o94gtu15.s[17]++;
2248
+ onReset.call(this);
2249
+ } else {
2250
+ cov_1o94gtu15.b[5][1]++;
2251
+ }
2037
2252
  } // Debug log
2038
2253
  ;
2039
2254
 
2040
2255
  _proto.log = function log() {
2041
- cov_1o94gtu15.f[5]++;
2042
- cov_1o94gtu15.s[15]++;
2256
+ cov_1o94gtu15.f[6]++;
2257
+ cov_1o94gtu15.s[18]++;
2043
2258
 
2044
2259
  if (this.debug) {
2045
- cov_1o94gtu15.b[5][0]++;
2046
- cov_1o94gtu15.s[16]++;
2260
+ cov_1o94gtu15.b[6][0]++;
2261
+ cov_1o94gtu15.s[19]++;
2047
2262
 
2048
2263
  if (typeof this.debug === 'function') {
2049
- cov_1o94gtu15.b[6][0]++;
2050
- cov_1o94gtu15.s[17]++;
2264
+ cov_1o94gtu15.b[7][0]++;
2265
+ cov_1o94gtu15.s[20]++;
2051
2266
  this.debug.apply(this, arguments);
2052
2267
  } else {
2053
2268
  var _console;
2054
2269
 
2055
- cov_1o94gtu15.b[6][1]++;
2056
- cov_1o94gtu15.s[18]++;
2270
+ cov_1o94gtu15.b[7][1]++;
2271
+ cov_1o94gtu15.s[21]++;
2057
2272
 
2058
2273
  (_console = console).log.apply(_console, arguments);
2059
2274
  }
2060
2275
  } else {
2061
- cov_1o94gtu15.b[5][1]++;
2276
+ cov_1o94gtu15.b[6][1]++;
2062
2277
  }
2063
2278
  };
2064
2279
 
@@ -2067,7 +2282,7 @@
2067
2282
 
2068
2283
  var cov_2g5l3k4997 = function () {
2069
2284
  var path = "/Users/aki/Projects/Finqu/www-structure/finqu-lib/finqu-ui/js/src/collapse.js";
2070
- var hash = "a30a133ae18b38abf0270bb6107680b2d63d0b1c";
2285
+ var hash = "34a0d24fd1a96b9d39da03d424ddc402cedfdd44";
2071
2286
 
2072
2287
  var Function = function () {}.constructor;
2073
2288
 
@@ -2372,777 +2587,837 @@
2372
2587
  column: 8
2373
2588
  },
2374
2589
  end: {
2375
- line: 74,
2376
- column: 27
2590
+ line: 76,
2591
+ column: 9
2377
2592
  }
2378
2593
  },
2379
2594
  "30": {
2380
2595
  start: {
2381
2596
  line: 75,
2382
- column: 8
2597
+ column: 12
2383
2598
  },
2384
2599
  end: {
2385
2600
  line: 75,
2386
- column: 31
2601
+ column: 47
2387
2602
  }
2388
2603
  },
2389
2604
  "31": {
2390
2605
  start: {
2391
- line: 76,
2606
+ line: 78,
2392
2607
  column: 8
2393
2608
  },
2394
2609
  end: {
2395
- line: 76,
2396
- column: 34
2610
+ line: 78,
2611
+ column: 27
2397
2612
  }
2398
2613
  },
2399
2614
  "32": {
2400
2615
  start: {
2401
- line: 77,
2616
+ line: 79,
2402
2617
  column: 8
2403
2618
  },
2404
2619
  end: {
2405
- line: 77,
2406
- column: 34
2620
+ line: 79,
2621
+ column: 31
2407
2622
  }
2408
2623
  },
2409
2624
  "33": {
2410
2625
  start: {
2411
- line: 78,
2626
+ line: 80,
2412
2627
  column: 8
2413
2628
  },
2414
2629
  end: {
2415
- line: 78,
2416
- column: 45
2630
+ line: 80,
2631
+ column: 34
2417
2632
  }
2418
2633
  },
2419
2634
  "34": {
2420
2635
  start: {
2421
- line: 79,
2636
+ line: 81,
2422
2637
  column: 8
2423
2638
  },
2424
2639
  end: {
2425
- line: 79,
2426
- column: 59
2640
+ line: 81,
2641
+ column: 34
2427
2642
  }
2428
2643
  },
2429
2644
  "35": {
2430
2645
  start: {
2431
- line: 85,
2646
+ line: 82,
2432
2647
  column: 8
2433
2648
  },
2434
2649
  end: {
2435
- line: 92,
2436
- column: 11
2650
+ line: 82,
2651
+ column: 45
2437
2652
  }
2438
2653
  },
2439
2654
  "36": {
2440
2655
  start: {
2441
- line: 87,
2442
- column: 12
2656
+ line: 83,
2657
+ column: 8
2443
2658
  },
2444
2659
  end: {
2660
+ line: 83,
2661
+ column: 59
2662
+ }
2663
+ },
2664
+ "37": {
2665
+ start: {
2666
+ line: 89,
2667
+ column: 8
2668
+ },
2669
+ end: {
2670
+ line: 96,
2671
+ column: 11
2672
+ }
2673
+ },
2674
+ "38": {
2675
+ start: {
2445
2676
  line: 91,
2677
+ column: 12
2678
+ },
2679
+ end: {
2680
+ line: 95,
2446
2681
  column: 13
2447
2682
  }
2448
2683
  },
2449
- "37": {
2684
+ "39": {
2450
2685
  start: {
2451
- line: 88,
2686
+ line: 92,
2452
2687
  column: 16
2453
2688
  },
2454
2689
  end: {
2455
- line: 88,
2690
+ line: 92,
2456
2691
  column: 29
2457
2692
  }
2458
2693
  },
2459
- "38": {
2694
+ "40": {
2460
2695
  start: {
2461
- line: 90,
2696
+ line: 94,
2462
2697
  column: 16
2463
2698
  },
2464
2699
  end: {
2465
- line: 90,
2700
+ line: 94,
2466
2701
  column: 28
2467
2702
  }
2468
2703
  },
2469
- "39": {
2704
+ "41": {
2470
2705
  start: {
2471
- line: 94,
2706
+ line: 98,
2472
2707
  column: 8
2473
2708
  },
2474
2709
  end: {
2475
- line: 101,
2710
+ line: 105,
2476
2711
  column: 17
2477
2712
  }
2478
2713
  },
2479
- "40": {
2714
+ "42": {
2480
2715
  start: {
2481
- line: 96,
2716
+ line: 100,
2482
2717
  column: 12
2483
2718
  },
2484
2719
  end: {
2485
- line: 100,
2720
+ line: 104,
2486
2721
  column: 13
2487
2722
  }
2488
2723
  },
2489
- "41": {
2724
+ "43": {
2490
2725
  start: {
2491
- line: 98,
2726
+ line: 102,
2492
2727
  column: 16
2493
2728
  },
2494
2729
  end: {
2495
- line: 98,
2730
+ line: 102,
2496
2731
  column: 58
2497
2732
  }
2498
2733
  },
2499
- "42": {
2734
+ "44": {
2500
2735
  start: {
2501
- line: 99,
2736
+ line: 103,
2502
2737
  column: 16
2503
2738
  },
2504
2739
  end: {
2505
- line: 99,
2740
+ line: 103,
2506
2741
  column: 67
2507
2742
  }
2508
2743
  },
2509
- "43": {
2744
+ "45": {
2510
2745
  start: {
2511
- line: 107,
2746
+ line: 111,
2512
2747
  column: 8
2513
2748
  },
2514
2749
  end: {
2515
- line: 107,
2750
+ line: 111,
2516
2751
  column: 36
2517
2752
  }
2518
2753
  },
2519
- "44": {
2754
+ "46": {
2520
2755
  start: {
2521
- line: 113,
2756
+ line: 117,
2522
2757
  column: 17
2523
2758
  },
2524
2759
  end: {
2525
- line: 113,
2760
+ line: 117,
2526
2761
  column: 58
2527
2762
  }
2528
2763
  },
2529
- "45": {
2764
+ "47": {
2530
2765
  start: {
2531
- line: 114,
2766
+ line: 118,
2532
2767
  column: 33
2533
2768
  },
2534
2769
  end: {
2535
- line: 118,
2770
+ line: 122,
2536
2771
  column: 9
2537
2772
  }
2538
2773
  },
2539
- "46": {
2774
+ "48": {
2540
2775
  start: {
2541
- line: 120,
2776
+ line: 124,
2542
2777
  column: 8
2543
2778
  },
2544
2779
  end: {
2545
- line: 125,
2780
+ line: 129,
2546
2781
  column: 9
2547
2782
  }
2548
2783
  },
2549
- "47": {
2784
+ "49": {
2550
2785
  start: {
2551
- line: 122,
2786
+ line: 126,
2552
2787
  column: 12
2553
2788
  },
2554
2789
  end: {
2555
- line: 124,
2790
+ line: 128,
2556
2791
  column: 13
2557
2792
  }
2558
2793
  },
2559
- "48": {
2794
+ "50": {
2560
2795
  start: {
2561
- line: 123,
2796
+ line: 127,
2562
2797
  column: 16
2563
2798
  },
2564
2799
  end: {
2565
- line: 123,
2800
+ line: 127,
2566
2801
  column: 45
2567
2802
  }
2568
2803
  },
2569
- "49": {
2804
+ "51": {
2570
2805
  start: {
2571
- line: 131,
2806
+ line: 136,
2572
2807
  column: 8
2573
2808
  },
2574
2809
  end: {
2575
- line: 131,
2576
- column: 53
2810
+ line: 138,
2811
+ column: 9
2577
2812
  }
2578
2813
  },
2579
- "50": {
2814
+ "52": {
2580
2815
  start: {
2581
- line: 132,
2816
+ line: 137,
2817
+ column: 12
2818
+ },
2819
+ end: {
2820
+ line: 137,
2821
+ column: 54
2822
+ }
2823
+ },
2824
+ "53": {
2825
+ start: {
2826
+ line: 140,
2827
+ column: 8
2828
+ },
2829
+ end: {
2830
+ line: 140,
2831
+ column: 50
2832
+ }
2833
+ },
2834
+ "54": {
2835
+ start: {
2836
+ line: 141,
2582
2837
  column: 8
2583
2838
  },
2584
2839
  end: {
2585
- line: 132,
2840
+ line: 141,
2586
2841
  column: 44
2587
2842
  }
2588
2843
  },
2589
- "51": {
2844
+ "55": {
2590
2845
  start: {
2591
- line: 134,
2846
+ line: 143,
2592
2847
  column: 8
2593
2848
  },
2594
2849
  end: {
2595
- line: 136,
2850
+ line: 145,
2596
2851
  column: 9
2597
2852
  }
2598
2853
  },
2599
- "52": {
2854
+ "56": {
2600
2855
  start: {
2601
- line: 135,
2856
+ line: 144,
2602
2857
  column: 12
2603
2858
  },
2604
2859
  end: {
2605
- line: 135,
2860
+ line: 144,
2606
2861
  column: 44
2607
2862
  }
2608
2863
  },
2609
- "53": {
2864
+ "57": {
2610
2865
  start: {
2611
- line: 138,
2866
+ line: 147,
2612
2867
  column: 8
2613
2868
  },
2614
2869
  end: {
2615
- line: 140,
2870
+ line: 149,
2616
2871
  column: 9
2617
2872
  }
2618
2873
  },
2619
- "54": {
2874
+ "58": {
2620
2875
  start: {
2621
- line: 139,
2876
+ line: 148,
2622
2877
  column: 12
2623
2878
  },
2624
2879
  end: {
2625
- line: 139,
2626
- column: 48
2880
+ line: 148,
2881
+ column: 45
2627
2882
  }
2628
2883
  },
2629
- "55": {
2884
+ "59": {
2630
2885
  start: {
2631
- line: 142,
2886
+ line: 151,
2632
2887
  column: 8
2633
2888
  },
2634
2889
  end: {
2635
- line: 142,
2890
+ line: 151,
2636
2891
  column: 35
2637
2892
  }
2638
2893
  },
2639
- "56": {
2894
+ "60": {
2640
2895
  start: {
2641
- line: 143,
2896
+ line: 152,
2642
2897
  column: 8
2643
2898
  },
2644
2899
  end: {
2645
- line: 143,
2900
+ line: 152,
2646
2901
  column: 54
2647
2902
  }
2648
2903
  },
2649
- "57": {
2904
+ "61": {
2650
2905
  start: {
2651
- line: 145,
2906
+ line: 154,
2652
2907
  column: 8
2653
2908
  },
2654
2909
  end: {
2655
- line: 147,
2910
+ line: 156,
2656
2911
  column: 9
2657
2912
  }
2658
2913
  },
2659
- "58": {
2914
+ "62": {
2660
2915
  start: {
2661
- line: 146,
2916
+ line: 155,
2662
2917
  column: 12
2663
2918
  },
2664
2919
  end: {
2665
- line: 146,
2666
- column: 48
2920
+ line: 155,
2921
+ column: 45
2667
2922
  }
2668
2923
  },
2669
- "59": {
2924
+ "63": {
2670
2925
  start: {
2671
- line: 149,
2926
+ line: 158,
2672
2927
  column: 8
2673
2928
  },
2674
2929
  end: {
2675
- line: 162,
2930
+ line: 171,
2676
2931
  column: 11
2677
2932
  }
2678
2933
  },
2679
- "60": {
2934
+ "64": {
2680
2935
  start: {
2681
- line: 151,
2936
+ line: 160,
2682
2937
  column: 12
2683
2938
  },
2684
2939
  end: {
2685
- line: 151,
2940
+ line: 160,
2686
2941
  column: 51
2687
2942
  }
2688
2943
  },
2689
- "61": {
2944
+ "65": {
2690
2945
  start: {
2691
- line: 153,
2946
+ line: 162,
2692
2947
  column: 12
2693
2948
  },
2694
2949
  end: {
2695
- line: 155,
2950
+ line: 164,
2696
2951
  column: 13
2697
2952
  }
2698
2953
  },
2699
- "62": {
2954
+ "66": {
2700
2955
  start: {
2701
- line: 154,
2956
+ line: 163,
2702
2957
  column: 16
2703
2958
  },
2704
2959
  end: {
2705
- line: 154,
2960
+ line: 163,
2706
2961
  column: 49
2707
2962
  }
2708
2963
  },
2709
- "63": {
2964
+ "67": {
2710
2965
  start: {
2711
- line: 157,
2966
+ line: 166,
2712
2967
  column: 12
2713
2968
  },
2714
2969
  end: {
2715
- line: 157,
2970
+ line: 166,
2716
2971
  column: 45
2717
2972
  }
2718
2973
  },
2719
- "64": {
2974
+ "68": {
2720
2975
  start: {
2721
- line: 158,
2976
+ line: 167,
2722
2977
  column: 12
2723
2978
  },
2724
2979
  end: {
2725
- line: 158,
2726
- column: 54
2980
+ line: 167,
2981
+ column: 51
2727
2982
  }
2728
2983
  },
2729
- "65": {
2984
+ "69": {
2730
2985
  start: {
2731
- line: 159,
2986
+ line: 168,
2732
2987
  column: 12
2733
2988
  },
2734
2989
  end: {
2735
- line: 159,
2990
+ line: 168,
2736
2991
  column: 49
2737
2992
  }
2738
2993
  },
2739
- "66": {
2994
+ "70": {
2740
2995
  start: {
2741
- line: 160,
2996
+ line: 169,
2742
2997
  column: 12
2743
2998
  },
2744
2999
  end: {
2745
- line: 160,
3000
+ line: 169,
2746
3001
  column: 47
2747
3002
  }
2748
3003
  },
2749
- "67": {
3004
+ "71": {
2750
3005
  start: {
2751
- line: 161,
3006
+ line: 170,
2752
3007
  column: 12
2753
3008
  },
2754
3009
  end: {
2755
- line: 161,
3010
+ line: 170,
2756
3011
  column: 33
2757
3012
  }
2758
3013
  },
2759
- "68": {
3014
+ "72": {
2760
3015
  start: {
2761
- line: 164,
3016
+ line: 173,
2762
3017
  column: 8
2763
3018
  },
2764
3019
  end: {
2765
- line: 164,
3020
+ line: 173,
2766
3021
  column: 22
2767
3022
  }
2768
3023
  },
2769
- "69": {
3024
+ "73": {
2770
3025
  start: {
2771
- line: 170,
3026
+ line: 179,
2772
3027
  column: 8
2773
3028
  },
2774
3029
  end: {
2775
- line: 170,
2776
- column: 53
3030
+ line: 179,
3031
+ column: 50
2777
3032
  }
2778
3033
  },
2779
- "70": {
3034
+ "74": {
2780
3035
  start: {
2781
- line: 171,
3036
+ line: 180,
2782
3037
  column: 8
2783
3038
  },
2784
3039
  end: {
2785
- line: 171,
3040
+ line: 180,
2786
3041
  column: 44
2787
3042
  }
2788
3043
  },
2789
- "71": {
3044
+ "75": {
2790
3045
  start: {
2791
- line: 173,
3046
+ line: 182,
2792
3047
  column: 8
2793
3048
  },
2794
3049
  end: {
2795
- line: 175,
3050
+ line: 184,
2796
3051
  column: 9
2797
3052
  }
2798
3053
  },
2799
- "72": {
3054
+ "76": {
2800
3055
  start: {
2801
- line: 174,
3056
+ line: 183,
2802
3057
  column: 12
2803
3058
  },
2804
3059
  end: {
2805
- line: 174,
3060
+ line: 183,
2806
3061
  column: 44
2807
3062
  }
2808
3063
  },
2809
- "73": {
3064
+ "77": {
2810
3065
  start: {
2811
- line: 177,
3066
+ line: 186,
2812
3067
  column: 8
2813
3068
  },
2814
3069
  end: {
2815
- line: 179,
3070
+ line: 188,
2816
3071
  column: 9
2817
3072
  }
2818
3073
  },
2819
- "74": {
3074
+ "78": {
2820
3075
  start: {
2821
- line: 178,
3076
+ line: 187,
2822
3077
  column: 12
2823
3078
  },
2824
3079
  end: {
2825
- line: 178,
2826
- column: 51
3080
+ line: 187,
3081
+ column: 48
2827
3082
  }
2828
3083
  },
2829
- "75": {
3084
+ "79": {
2830
3085
  start: {
2831
- line: 181,
3086
+ line: 190,
2832
3087
  column: 8
2833
3088
  },
2834
3089
  end: {
2835
- line: 181,
3090
+ line: 190,
2836
3091
  column: 58
2837
3092
  }
2838
3093
  },
2839
- "76": {
3094
+ "80": {
2840
3095
  start: {
2841
- line: 183,
3096
+ line: 192,
2842
3097
  column: 8
2843
3098
  },
2844
3099
  end: {
2845
- line: 185,
3100
+ line: 194,
2846
3101
  column: 15
2847
3102
  }
2848
3103
  },
2849
- "77": {
3104
+ "81": {
2850
3105
  start: {
2851
- line: 184,
3106
+ line: 193,
2852
3107
  column: 12
2853
3108
  },
2854
3109
  end: {
2855
- line: 184,
3110
+ line: 193,
2856
3111
  column: 42
2857
3112
  }
2858
3113
  },
2859
- "78": {
3114
+ "82": {
2860
3115
  start: {
2861
- line: 187,
3116
+ line: 196,
2862
3117
  column: 8
2863
3118
  },
2864
3119
  end: {
2865
- line: 189,
3120
+ line: 198,
2866
3121
  column: 9
2867
3122
  }
2868
3123
  },
2869
- "79": {
3124
+ "83": {
2870
3125
  start: {
2871
- line: 188,
3126
+ line: 197,
2872
3127
  column: 12
2873
3128
  },
2874
3129
  end: {
2875
- line: 188,
2876
- column: 51
3130
+ line: 197,
3131
+ column: 48
2877
3132
  }
2878
3133
  },
2879
- "80": {
3134
+ "84": {
2880
3135
  start: {
2881
- line: 191,
3136
+ line: 200,
2882
3137
  column: 8
2883
3138
  },
2884
3139
  end: {
2885
- line: 203,
3140
+ line: 217,
2886
3141
  column: 11
2887
3142
  }
2888
3143
  },
2889
- "81": {
3144
+ "85": {
2890
3145
  start: {
2891
- line: 193,
3146
+ line: 202,
2892
3147
  column: 12
2893
3148
  },
2894
3149
  end: {
2895
- line: 193,
3150
+ line: 202,
2896
3151
  column: 51
2897
3152
  }
2898
3153
  },
2899
- "82": {
3154
+ "86": {
2900
3155
  start: {
2901
- line: 195,
3156
+ line: 204,
2902
3157
  column: 12
2903
3158
  },
2904
3159
  end: {
2905
- line: 197,
3160
+ line: 206,
2906
3161
  column: 13
2907
3162
  }
2908
3163
  },
2909
- "83": {
3164
+ "87": {
2910
3165
  start: {
2911
- line: 196,
3166
+ line: 205,
2912
3167
  column: 16
2913
3168
  },
2914
3169
  end: {
2915
- line: 196,
3170
+ line: 205,
2916
3171
  column: 49
2917
3172
  }
2918
3173
  },
2919
- "84": {
3174
+ "88": {
2920
3175
  start: {
2921
- line: 199,
3176
+ line: 208,
2922
3177
  column: 12
2923
3178
  },
2924
3179
  end: {
2925
- line: 199,
3180
+ line: 208,
2926
3181
  column: 45
2927
3182
  }
2928
3183
  },
2929
- "85": {
3184
+ "89": {
2930
3185
  start: {
2931
- line: 200,
3186
+ line: 209,
2932
3187
  column: 12
2933
3188
  },
2934
3189
  end: {
2935
- line: 200,
3190
+ line: 209,
2936
3191
  column: 46
2937
3192
  }
2938
3193
  },
2939
- "86": {
3194
+ "90": {
2940
3195
  start: {
2941
- line: 201,
3196
+ line: 210,
2942
3197
  column: 12
2943
3198
  },
2944
3199
  end: {
2945
- line: 201,
3200
+ line: 210,
2946
3201
  column: 50
2947
3202
  }
2948
3203
  },
2949
- "87": {
3204
+ "91": {
2950
3205
  start: {
2951
- line: 202,
3206
+ line: 211,
2952
3207
  column: 12
2953
3208
  },
2954
3209
  end: {
2955
- line: 202,
3210
+ line: 211,
2956
3211
  column: 34
2957
3212
  }
2958
3213
  },
2959
- "88": {
3214
+ "92": {
2960
3215
  start: {
2961
- line: 205,
3216
+ line: 214,
3217
+ column: 12
3218
+ },
3219
+ end: {
3220
+ line: 216,
3221
+ column: 13
3222
+ }
3223
+ },
3224
+ "93": {
3225
+ start: {
3226
+ line: 215,
3227
+ column: 16
3228
+ },
3229
+ end: {
3230
+ line: 215,
3231
+ column: 58
3232
+ }
3233
+ },
3234
+ "94": {
3235
+ start: {
3236
+ line: 219,
2962
3237
  column: 8
2963
3238
  },
2964
3239
  end: {
2965
- line: 205,
3240
+ line: 219,
2966
3241
  column: 23
2967
3242
  }
2968
3243
  },
2969
- "89": {
3244
+ "95": {
2970
3245
  start: {
2971
- line: 210,
3246
+ line: 224,
2972
3247
  column: 8
2973
3248
  },
2974
3249
  end: {
2975
- line: 228,
3250
+ line: 242,
2976
3251
  column: 11
2977
3252
  }
2978
3253
  },
2979
- "90": {
3254
+ "96": {
2980
3255
  start: {
2981
- line: 212,
3256
+ line: 226,
2982
3257
  column: 23
2983
3258
  },
2984
3259
  end: {
2985
- line: 212,
3260
+ line: 226,
2986
3261
  column: 45
2987
3262
  }
2988
3263
  },
2989
- "91": {
3264
+ "97": {
2990
3265
  start: {
2991
- line: 213,
3266
+ line: 227,
2992
3267
  column: 28
2993
3268
  },
2994
3269
  end: {
2995
- line: 213,
3270
+ line: 227,
2996
3271
  column: 64
2997
3272
  }
2998
3273
  },
2999
- "92": {
3274
+ "98": {
3000
3275
  start: {
3001
- line: 215,
3276
+ line: 229,
3002
3277
  column: 12
3003
3278
  },
3004
3279
  end: {
3005
- line: 218,
3280
+ line: 232,
3006
3281
  column: 13
3007
3282
  }
3008
3283
  },
3009
- "93": {
3284
+ "99": {
3010
3285
  start: {
3011
- line: 216,
3286
+ line: 230,
3012
3287
  column: 16
3013
3288
  },
3014
3289
  end: {
3015
- line: 216,
3290
+ line: 230,
3016
3291
  column: 51
3017
3292
  }
3018
3293
  },
3019
- "94": {
3294
+ "100": {
3020
3295
  start: {
3021
- line: 217,
3296
+ line: 231,
3022
3297
  column: 16
3023
3298
  },
3024
3299
  end: {
3025
- line: 217,
3300
+ line: 231,
3026
3301
  column: 45
3027
3302
  }
3028
3303
  },
3029
- "95": {
3304
+ "101": {
3030
3305
  start: {
3031
- line: 220,
3306
+ line: 234,
3032
3307
  column: 12
3033
3308
  },
3034
3309
  end: {
3035
- line: 227,
3310
+ line: 241,
3036
3311
  column: 13
3037
3312
  }
3038
3313
  },
3039
- "96": {
3314
+ "102": {
3040
3315
  start: {
3041
- line: 222,
3316
+ line: 236,
3042
3317
  column: 16
3043
3318
  },
3044
3319
  end: {
3045
- line: 224,
3320
+ line: 238,
3046
3321
  column: 17
3047
3322
  }
3048
3323
  },
3049
- "97": {
3324
+ "103": {
3050
3325
  start: {
3051
- line: 223,
3326
+ line: 237,
3052
3327
  column: 20
3053
3328
  },
3054
3329
  end: {
3055
- line: 223,
3330
+ line: 237,
3056
3331
  column: 70
3057
3332
  }
3058
3333
  },
3059
- "98": {
3334
+ "104": {
3060
3335
  start: {
3061
- line: 226,
3336
+ line: 240,
3062
3337
  column: 16
3063
3338
  },
3064
3339
  end: {
3065
- line: 226,
3340
+ line: 240,
3066
3341
  column: 30
3067
3342
  }
3068
3343
  },
3069
- "99": {
3344
+ "105": {
3070
3345
  start: {
3071
- line: 232,
3346
+ line: 246,
3072
3347
  column: 0
3073
3348
  },
3074
3349
  end: {
3075
- line: 256,
3350
+ line: 270,
3076
3351
  column: 1
3077
3352
  }
3078
3353
  },
3079
- "100": {
3354
+ "106": {
3080
3355
  start: {
3081
- line: 235,
3356
+ line: 249,
3082
3357
  column: 31
3083
3358
  },
3084
3359
  end: {
3085
- line: 235,
3360
+ line: 249,
3086
3361
  column: 41
3087
3362
  }
3088
3363
  },
3089
- "101": {
3364
+ "107": {
3090
3365
  start: {
3091
- line: 237,
3366
+ line: 251,
3092
3367
  column: 4
3093
3368
  },
3094
3369
  end: {
3095
- line: 237,
3370
+ line: 251,
3096
3371
  column: 43
3097
3372
  }
3098
3373
  },
3099
- "102": {
3374
+ "108": {
3100
3375
  start: {
3101
- line: 238,
3376
+ line: 252,
3102
3377
  column: 4
3103
3378
  },
3104
3379
  end: {
3105
- line: 238,
3380
+ line: 252,
3106
3381
  column: 38
3107
3382
  }
3108
3383
  },
3109
- "103": {
3384
+ "109": {
3110
3385
  start: {
3111
- line: 240,
3386
+ line: 254,
3112
3387
  column: 4
3113
3388
  },
3114
3389
  end: {
3115
- line: 245,
3390
+ line: 259,
3116
3391
  column: 5
3117
3392
  }
3118
3393
  },
3119
- "104": {
3394
+ "110": {
3120
3395
  start: {
3121
- line: 242,
3396
+ line: 256,
3122
3397
  column: 6
3123
3398
  },
3124
3399
  end: {
3125
- line: 242,
3126
- column: 37
3400
+ line: 256,
3401
+ column: 38
3127
3402
  }
3128
3403
  },
3129
- "105": {
3404
+ "111": {
3130
3405
  start: {
3131
- line: 244,
3406
+ line: 258,
3132
3407
  column: 6
3133
3408
  },
3134
3409
  end: {
3135
- line: 244,
3136
- column: 38
3410
+ line: 258,
3411
+ column: 39
3137
3412
  }
3138
3413
  },
3139
- "106": {
3414
+ "112": {
3140
3415
  start: {
3141
- line: 247,
3416
+ line: 261,
3142
3417
  column: 4
3143
3418
  },
3144
3419
  end: {
3145
- line: 255,
3420
+ line: 269,
3146
3421
  column: 5
3147
3422
  }
3148
3423
  }
@@ -3262,7 +3537,7 @@
3262
3537
  column: 17
3263
3538
  },
3264
3539
  end: {
3265
- line: 80,
3540
+ line: 84,
3266
3541
  column: 5
3267
3542
  }
3268
3543
  },
@@ -3272,313 +3547,313 @@
3272
3547
  name: "(anonymous_5)",
3273
3548
  decl: {
3274
3549
  start: {
3275
- line: 83,
3550
+ line: 87,
3276
3551
  column: 4
3277
3552
  },
3278
3553
  end: {
3279
- line: 83,
3554
+ line: 87,
3280
3555
  column: 5
3281
3556
  }
3282
3557
  },
3283
3558
  loc: {
3284
3559
  start: {
3285
- line: 83,
3560
+ line: 87,
3286
3561
  column: 17
3287
3562
  },
3288
3563
  end: {
3289
- line: 102,
3564
+ line: 106,
3290
3565
  column: 5
3291
3566
  }
3292
3567
  },
3293
- line: 83
3568
+ line: 87
3294
3569
  },
3295
3570
  "6": {
3296
3571
  name: "(anonymous_6)",
3297
3572
  decl: {
3298
3573
  start: {
3299
- line: 85,
3574
+ line: 89,
3300
3575
  column: 43
3301
3576
  },
3302
3577
  end: {
3303
- line: 85,
3578
+ line: 89,
3304
3579
  column: 44
3305
3580
  }
3306
3581
  },
3307
3582
  loc: {
3308
3583
  start: {
3309
- line: 85,
3584
+ line: 89,
3310
3585
  column: 50
3311
3586
  },
3312
3587
  end: {
3313
- line: 92,
3588
+ line: 96,
3314
3589
  column: 9
3315
3590
  }
3316
3591
  },
3317
- line: 85
3592
+ line: 89
3318
3593
  },
3319
3594
  "7": {
3320
3595
  name: "(anonymous_7)",
3321
3596
  decl: {
3322
3597
  start: {
3323
- line: 94,
3598
+ line: 98,
3324
3599
  column: 40
3325
3600
  },
3326
3601
  end: {
3327
- line: 94,
3602
+ line: 98,
3328
3603
  column: 41
3329
3604
  }
3330
3605
  },
3331
3606
  loc: {
3332
3607
  start: {
3333
- line: 94,
3608
+ line: 98,
3334
3609
  column: 46
3335
3610
  },
3336
3611
  end: {
3337
- line: 101,
3612
+ line: 105,
3338
3613
  column: 9
3339
3614
  }
3340
3615
  },
3341
- line: 94
3616
+ line: 98
3342
3617
  },
3343
3618
  "8": {
3344
3619
  name: "(anonymous_8)",
3345
3620
  decl: {
3346
3621
  start: {
3347
- line: 105,
3622
+ line: 109,
3348
3623
  column: 4
3349
3624
  },
3350
3625
  end: {
3351
- line: 105,
3626
+ line: 109,
3352
3627
  column: 5
3353
3628
  }
3354
3629
  },
3355
3630
  loc: {
3356
3631
  start: {
3357
- line: 105,
3632
+ line: 109,
3358
3633
  column: 19
3359
3634
  },
3360
3635
  end: {
3361
- line: 108,
3636
+ line: 112,
3362
3637
  column: 5
3363
3638
  }
3364
3639
  },
3365
- line: 105
3640
+ line: 109
3366
3641
  },
3367
3642
  "9": {
3368
3643
  name: "(anonymous_9)",
3369
3644
  decl: {
3370
3645
  start: {
3371
- line: 111,
3646
+ line: 115,
3372
3647
  column: 4
3373
3648
  },
3374
3649
  end: {
3375
- line: 111,
3650
+ line: 115,
3376
3651
  column: 5
3377
3652
  }
3378
3653
  },
3379
3654
  loc: {
3380
3655
  start: {
3381
- line: 111,
3656
+ line: 115,
3382
3657
  column: 27
3383
3658
  },
3384
3659
  end: {
3385
- line: 126,
3660
+ line: 130,
3386
3661
  column: 5
3387
3662
  }
3388
3663
  },
3389
- line: 111
3664
+ line: 115
3390
3665
  },
3391
3666
  "10": {
3392
3667
  name: "(anonymous_10)",
3393
3668
  decl: {
3394
3669
  start: {
3395
- line: 129,
3670
+ line: 133,
3396
3671
  column: 4
3397
3672
  },
3398
3673
  end: {
3399
- line: 129,
3674
+ line: 133,
3400
3675
  column: 5
3401
3676
  }
3402
3677
  },
3403
3678
  loc: {
3404
3679
  start: {
3405
- line: 129,
3680
+ line: 133,
3406
3681
  column: 11
3407
3682
  },
3408
3683
  end: {
3409
- line: 165,
3684
+ line: 174,
3410
3685
  column: 5
3411
3686
  }
3412
3687
  },
3413
- line: 129
3688
+ line: 133
3414
3689
  },
3415
3690
  "11": {
3416
3691
  name: "(anonymous_11)",
3417
3692
  decl: {
3418
3693
  start: {
3419
- line: 149,
3694
+ line: 158,
3420
3695
  column: 54
3421
3696
  },
3422
3697
  end: {
3423
- line: 149,
3698
+ line: 158,
3424
3699
  column: 55
3425
3700
  }
3426
3701
  },
3427
3702
  loc: {
3428
3703
  start: {
3429
- line: 149,
3704
+ line: 158,
3430
3705
  column: 60
3431
3706
  },
3432
3707
  end: {
3433
- line: 162,
3708
+ line: 171,
3434
3709
  column: 9
3435
3710
  }
3436
3711
  },
3437
- line: 149
3712
+ line: 158
3438
3713
  },
3439
3714
  "12": {
3440
3715
  name: "(anonymous_12)",
3441
3716
  decl: {
3442
3717
  start: {
3443
- line: 168,
3718
+ line: 177,
3444
3719
  column: 4
3445
3720
  },
3446
3721
  end: {
3447
- line: 168,
3722
+ line: 177,
3448
3723
  column: 5
3449
3724
  }
3450
3725
  },
3451
3726
  loc: {
3452
3727
  start: {
3453
- line: 168,
3728
+ line: 177,
3454
3729
  column: 12
3455
3730
  },
3456
3731
  end: {
3457
- line: 206,
3732
+ line: 220,
3458
3733
  column: 5
3459
3734
  }
3460
3735
  },
3461
- line: 168
3736
+ line: 177
3462
3737
  },
3463
3738
  "13": {
3464
3739
  name: "(anonymous_13)",
3465
3740
  decl: {
3466
3741
  start: {
3467
- line: 183,
3742
+ line: 192,
3468
3743
  column: 19
3469
3744
  },
3470
3745
  end: {
3471
- line: 183,
3746
+ line: 192,
3472
3747
  column: 20
3473
3748
  }
3474
3749
  },
3475
3750
  loc: {
3476
3751
  start: {
3477
- line: 183,
3752
+ line: 192,
3478
3753
  column: 25
3479
3754
  },
3480
3755
  end: {
3481
- line: 185,
3756
+ line: 194,
3482
3757
  column: 9
3483
3758
  }
3484
3759
  },
3485
- line: 183
3760
+ line: 192
3486
3761
  },
3487
3762
  "14": {
3488
3763
  name: "(anonymous_14)",
3489
3764
  decl: {
3490
3765
  start: {
3491
- line: 191,
3766
+ line: 200,
3492
3767
  column: 54
3493
3768
  },
3494
3769
  end: {
3495
- line: 191,
3770
+ line: 200,
3496
3771
  column: 55
3497
3772
  }
3498
3773
  },
3499
3774
  loc: {
3500
3775
  start: {
3501
- line: 191,
3776
+ line: 200,
3502
3777
  column: 60
3503
3778
  },
3504
3779
  end: {
3505
- line: 203,
3780
+ line: 217,
3506
3781
  column: 9
3507
3782
  }
3508
3783
  },
3509
- line: 191
3784
+ line: 200
3510
3785
  },
3511
3786
  "15": {
3512
3787
  name: "(anonymous_15)",
3513
3788
  decl: {
3514
3789
  start: {
3515
- line: 208,
3790
+ line: 222,
3516
3791
  column: 4
3517
3792
  },
3518
3793
  end: {
3519
- line: 208,
3794
+ line: 222,
3520
3795
  column: 5
3521
3796
  }
3522
3797
  },
3523
3798
  loc: {
3524
3799
  start: {
3525
- line: 208,
3800
+ line: 222,
3526
3801
  column: 36
3527
3802
  },
3528
3803
  end: {
3529
- line: 229,
3804
+ line: 243,
3530
3805
  column: 5
3531
3806
  }
3532
3807
  },
3533
- line: 208
3808
+ line: 222
3534
3809
  },
3535
3810
  "16": {
3536
3811
  name: "(anonymous_16)",
3537
3812
  decl: {
3538
3813
  start: {
3539
- line: 210,
3814
+ line: 224,
3540
3815
  column: 25
3541
3816
  },
3542
3817
  end: {
3543
- line: 210,
3818
+ line: 224,
3544
3819
  column: 26
3545
3820
  }
3546
3821
  },
3547
3822
  loc: {
3548
3823
  start: {
3549
- line: 210,
3824
+ line: 224,
3550
3825
  column: 36
3551
3826
  },
3552
3827
  end: {
3553
- line: 228,
3828
+ line: 242,
3554
3829
  column: 9
3555
3830
  }
3556
3831
  },
3557
- line: 210
3832
+ line: 224
3558
3833
  },
3559
3834
  "17": {
3560
3835
  name: "(anonymous_17)",
3561
3836
  decl: {
3562
3837
  start: {
3563
- line: 240,
3838
+ line: 254,
3564
3839
  column: 28
3565
3840
  },
3566
3841
  end: {
3567
- line: 240,
3842
+ line: 254,
3568
3843
  column: 29
3569
3844
  }
3570
3845
  },
3571
3846
  loc: {
3572
3847
  start: {
3573
- line: 240,
3848
+ line: 254,
3574
3849
  column: 34
3575
3850
  },
3576
3851
  end: {
3577
- line: 245,
3852
+ line: 259,
3578
3853
  column: 5
3579
3854
  }
3580
3855
  },
3581
- line: 240
3856
+ line: 254
3582
3857
  }
3583
3858
  },
3584
3859
  branchMap: {
@@ -3704,576 +3979,675 @@
3704
3979
  }
3705
3980
  }, {
3706
3981
  start: {
3707
- line: 60,
3708
- column: 8
3982
+ line: 60,
3983
+ column: 8
3984
+ },
3985
+ end: {
3986
+ line: 72,
3987
+ column: 9
3988
+ }
3989
+ }],
3990
+ line: 60
3991
+ },
3992
+ "4": {
3993
+ loc: {
3994
+ start: {
3995
+ line: 74,
3996
+ column: 8
3997
+ },
3998
+ end: {
3999
+ line: 76,
4000
+ column: 9
4001
+ }
4002
+ },
4003
+ type: "if",
4004
+ locations: [{
4005
+ start: {
4006
+ line: 74,
4007
+ column: 8
4008
+ },
4009
+ end: {
4010
+ line: 76,
4011
+ column: 9
4012
+ }
4013
+ }, {
4014
+ start: {
4015
+ line: 74,
4016
+ column: 8
4017
+ },
4018
+ end: {
4019
+ line: 76,
4020
+ column: 9
4021
+ }
4022
+ }],
4023
+ line: 74
4024
+ },
4025
+ "5": {
4026
+ loc: {
4027
+ start: {
4028
+ line: 91,
4029
+ column: 12
4030
+ },
4031
+ end: {
4032
+ line: 95,
4033
+ column: 13
4034
+ }
4035
+ },
4036
+ type: "if",
4037
+ locations: [{
4038
+ start: {
4039
+ line: 91,
4040
+ column: 12
4041
+ },
4042
+ end: {
4043
+ line: 95,
4044
+ column: 13
4045
+ }
4046
+ }, {
4047
+ start: {
4048
+ line: 91,
4049
+ column: 12
3709
4050
  },
3710
4051
  end: {
3711
- line: 72,
3712
- column: 9
4052
+ line: 95,
4053
+ column: 13
3713
4054
  }
3714
4055
  }],
3715
- line: 60
4056
+ line: 91
3716
4057
  },
3717
- "4": {
4058
+ "6": {
3718
4059
  loc: {
3719
4060
  start: {
3720
- line: 87,
4061
+ line: 100,
3721
4062
  column: 12
3722
4063
  },
3723
4064
  end: {
3724
- line: 91,
4065
+ line: 104,
3725
4066
  column: 13
3726
4067
  }
3727
4068
  },
3728
4069
  type: "if",
3729
4070
  locations: [{
3730
4071
  start: {
3731
- line: 87,
4072
+ line: 100,
3732
4073
  column: 12
3733
4074
  },
3734
4075
  end: {
3735
- line: 91,
4076
+ line: 104,
3736
4077
  column: 13
3737
4078
  }
3738
4079
  }, {
3739
4080
  start: {
3740
- line: 87,
4081
+ line: 100,
3741
4082
  column: 12
3742
4083
  },
3743
4084
  end: {
3744
- line: 91,
4085
+ line: 104,
3745
4086
  column: 13
3746
4087
  }
3747
4088
  }],
3748
- line: 87
4089
+ line: 100
3749
4090
  },
3750
- "5": {
4091
+ "7": {
3751
4092
  loc: {
3752
4093
  start: {
3753
- line: 96,
4094
+ line: 126,
3754
4095
  column: 12
3755
4096
  },
3756
4097
  end: {
3757
- line: 100,
4098
+ line: 128,
3758
4099
  column: 13
3759
4100
  }
3760
4101
  },
3761
4102
  type: "if",
3762
4103
  locations: [{
3763
4104
  start: {
3764
- line: 96,
4105
+ line: 126,
3765
4106
  column: 12
3766
4107
  },
3767
4108
  end: {
3768
- line: 100,
4109
+ line: 128,
3769
4110
  column: 13
3770
4111
  }
3771
4112
  }, {
3772
4113
  start: {
3773
- line: 96,
4114
+ line: 126,
3774
4115
  column: 12
3775
4116
  },
3776
4117
  end: {
3777
- line: 100,
4118
+ line: 128,
3778
4119
  column: 13
3779
4120
  }
3780
4121
  }],
3781
- line: 96
4122
+ line: 126
3782
4123
  },
3783
- "6": {
4124
+ "8": {
3784
4125
  loc: {
3785
4126
  start: {
3786
- line: 122,
3787
- column: 12
4127
+ line: 136,
4128
+ column: 8
3788
4129
  },
3789
4130
  end: {
3790
- line: 124,
3791
- column: 13
4131
+ line: 138,
4132
+ column: 9
3792
4133
  }
3793
4134
  },
3794
4135
  type: "if",
3795
4136
  locations: [{
3796
4137
  start: {
3797
- line: 122,
3798
- column: 12
4138
+ line: 136,
4139
+ column: 8
3799
4140
  },
3800
4141
  end: {
3801
- line: 124,
3802
- column: 13
4142
+ line: 138,
4143
+ column: 9
3803
4144
  }
3804
4145
  }, {
3805
4146
  start: {
3806
- line: 122,
3807
- column: 12
4147
+ line: 136,
4148
+ column: 8
3808
4149
  },
3809
4150
  end: {
3810
- line: 124,
3811
- column: 13
4151
+ line: 138,
4152
+ column: 9
3812
4153
  }
3813
4154
  }],
3814
- line: 122
4155
+ line: 136
3815
4156
  },
3816
- "7": {
4157
+ "9": {
3817
4158
  loc: {
3818
4159
  start: {
3819
- line: 134,
4160
+ line: 143,
3820
4161
  column: 8
3821
4162
  },
3822
4163
  end: {
3823
- line: 136,
4164
+ line: 145,
3824
4165
  column: 9
3825
4166
  }
3826
4167
  },
3827
4168
  type: "if",
3828
4169
  locations: [{
3829
4170
  start: {
3830
- line: 134,
4171
+ line: 143,
3831
4172
  column: 8
3832
4173
  },
3833
4174
  end: {
3834
- line: 136,
4175
+ line: 145,
3835
4176
  column: 9
3836
4177
  }
3837
4178
  }, {
3838
4179
  start: {
3839
- line: 134,
4180
+ line: 143,
3840
4181
  column: 8
3841
4182
  },
3842
4183
  end: {
3843
- line: 136,
4184
+ line: 145,
3844
4185
  column: 9
3845
4186
  }
3846
4187
  }],
3847
- line: 134
4188
+ line: 143
3848
4189
  },
3849
- "8": {
4190
+ "10": {
3850
4191
  loc: {
3851
4192
  start: {
3852
- line: 138,
4193
+ line: 147,
3853
4194
  column: 8
3854
4195
  },
3855
4196
  end: {
3856
- line: 140,
4197
+ line: 149,
3857
4198
  column: 9
3858
4199
  }
3859
4200
  },
3860
4201
  type: "if",
3861
4202
  locations: [{
3862
4203
  start: {
3863
- line: 138,
4204
+ line: 147,
3864
4205
  column: 8
3865
4206
  },
3866
4207
  end: {
3867
- line: 140,
4208
+ line: 149,
3868
4209
  column: 9
3869
4210
  }
3870
4211
  }, {
3871
4212
  start: {
3872
- line: 138,
4213
+ line: 147,
3873
4214
  column: 8
3874
4215
  },
3875
4216
  end: {
3876
- line: 140,
4217
+ line: 149,
3877
4218
  column: 9
3878
4219
  }
3879
4220
  }],
3880
- line: 138
4221
+ line: 147
3881
4222
  },
3882
- "9": {
4223
+ "11": {
3883
4224
  loc: {
3884
4225
  start: {
3885
- line: 145,
4226
+ line: 154,
3886
4227
  column: 8
3887
4228
  },
3888
4229
  end: {
3889
- line: 147,
4230
+ line: 156,
3890
4231
  column: 9
3891
4232
  }
3892
4233
  },
3893
4234
  type: "if",
3894
4235
  locations: [{
3895
4236
  start: {
3896
- line: 145,
4237
+ line: 154,
3897
4238
  column: 8
3898
4239
  },
3899
4240
  end: {
3900
- line: 147,
4241
+ line: 156,
3901
4242
  column: 9
3902
4243
  }
3903
4244
  }, {
3904
4245
  start: {
3905
- line: 145,
4246
+ line: 154,
3906
4247
  column: 8
3907
4248
  },
3908
4249
  end: {
3909
- line: 147,
4250
+ line: 156,
3910
4251
  column: 9
3911
4252
  }
3912
4253
  }],
3913
- line: 145
4254
+ line: 154
3914
4255
  },
3915
- "10": {
4256
+ "12": {
3916
4257
  loc: {
3917
4258
  start: {
3918
- line: 153,
4259
+ line: 162,
3919
4260
  column: 12
3920
4261
  },
3921
4262
  end: {
3922
- line: 155,
4263
+ line: 164,
3923
4264
  column: 13
3924
4265
  }
3925
4266
  },
3926
4267
  type: "if",
3927
4268
  locations: [{
3928
4269
  start: {
3929
- line: 153,
4270
+ line: 162,
3930
4271
  column: 12
3931
4272
  },
3932
4273
  end: {
3933
- line: 155,
4274
+ line: 164,
3934
4275
  column: 13
3935
4276
  }
3936
4277
  }, {
3937
4278
  start: {
3938
- line: 153,
4279
+ line: 162,
3939
4280
  column: 12
3940
4281
  },
3941
4282
  end: {
3942
- line: 155,
4283
+ line: 164,
3943
4284
  column: 13
3944
4285
  }
3945
4286
  }],
3946
- line: 153
4287
+ line: 162
3947
4288
  },
3948
- "11": {
4289
+ "13": {
3949
4290
  loc: {
3950
4291
  start: {
3951
- line: 173,
4292
+ line: 182,
3952
4293
  column: 8
3953
4294
  },
3954
4295
  end: {
3955
- line: 175,
4296
+ line: 184,
3956
4297
  column: 9
3957
4298
  }
3958
4299
  },
3959
4300
  type: "if",
3960
4301
  locations: [{
3961
4302
  start: {
3962
- line: 173,
4303
+ line: 182,
3963
4304
  column: 8
3964
4305
  },
3965
4306
  end: {
3966
- line: 175,
4307
+ line: 184,
3967
4308
  column: 9
3968
4309
  }
3969
4310
  }, {
3970
4311
  start: {
3971
- line: 173,
4312
+ line: 182,
3972
4313
  column: 8
3973
4314
  },
3974
4315
  end: {
3975
- line: 175,
4316
+ line: 184,
3976
4317
  column: 9
3977
4318
  }
3978
4319
  }],
3979
- line: 173
4320
+ line: 182
3980
4321
  },
3981
- "12": {
4322
+ "14": {
3982
4323
  loc: {
3983
4324
  start: {
3984
- line: 177,
4325
+ line: 186,
3985
4326
  column: 8
3986
4327
  },
3987
4328
  end: {
3988
- line: 179,
4329
+ line: 188,
3989
4330
  column: 9
3990
4331
  }
3991
4332
  },
3992
4333
  type: "if",
3993
4334
  locations: [{
3994
4335
  start: {
3995
- line: 177,
4336
+ line: 186,
3996
4337
  column: 8
3997
4338
  },
3998
4339
  end: {
3999
- line: 179,
4340
+ line: 188,
4000
4341
  column: 9
4001
4342
  }
4002
4343
  }, {
4003
4344
  start: {
4004
- line: 177,
4345
+ line: 186,
4005
4346
  column: 8
4006
4347
  },
4007
4348
  end: {
4008
- line: 179,
4349
+ line: 188,
4009
4350
  column: 9
4010
4351
  }
4011
4352
  }],
4012
- line: 177
4353
+ line: 186
4013
4354
  },
4014
- "13": {
4355
+ "15": {
4015
4356
  loc: {
4016
4357
  start: {
4017
- line: 187,
4358
+ line: 196,
4018
4359
  column: 8
4019
4360
  },
4020
4361
  end: {
4021
- line: 189,
4362
+ line: 198,
4022
4363
  column: 9
4023
4364
  }
4024
4365
  },
4025
4366
  type: "if",
4026
4367
  locations: [{
4027
4368
  start: {
4028
- line: 187,
4369
+ line: 196,
4029
4370
  column: 8
4030
4371
  },
4031
4372
  end: {
4032
- line: 189,
4373
+ line: 198,
4033
4374
  column: 9
4034
4375
  }
4035
4376
  }, {
4036
4377
  start: {
4037
- line: 187,
4378
+ line: 196,
4038
4379
  column: 8
4039
4380
  },
4040
4381
  end: {
4041
- line: 189,
4382
+ line: 198,
4042
4383
  column: 9
4043
4384
  }
4044
4385
  }],
4045
- line: 187
4386
+ line: 196
4046
4387
  },
4047
- "14": {
4388
+ "16": {
4048
4389
  loc: {
4049
4390
  start: {
4050
- line: 187,
4391
+ line: 196,
4051
4392
  column: 12
4052
4393
  },
4053
4394
  end: {
4054
- line: 187,
4055
- column: 73
4395
+ line: 196,
4396
+ column: 70
4056
4397
  }
4057
4398
  },
4058
4399
  type: "binary-expr",
4059
4400
  locations: [{
4060
4401
  start: {
4061
- line: 187,
4402
+ line: 196,
4062
4403
  column: 12
4063
4404
  },
4064
4405
  end: {
4065
- line: 187,
4406
+ line: 196,
4066
4407
  column: 34
4067
4408
  }
4068
4409
  }, {
4069
4410
  start: {
4070
- line: 187,
4411
+ line: 196,
4071
4412
  column: 38
4072
4413
  },
4073
4414
  end: {
4074
- line: 187,
4075
- column: 73
4415
+ line: 196,
4416
+ column: 70
4076
4417
  }
4077
4418
  }],
4078
- line: 187
4419
+ line: 196
4079
4420
  },
4080
- "15": {
4421
+ "17": {
4081
4422
  loc: {
4082
4423
  start: {
4083
- line: 195,
4424
+ line: 204,
4084
4425
  column: 12
4085
4426
  },
4086
4427
  end: {
4087
- line: 197,
4428
+ line: 206,
4088
4429
  column: 13
4089
4430
  }
4090
4431
  },
4091
4432
  type: "if",
4092
4433
  locations: [{
4093
4434
  start: {
4094
- line: 195,
4435
+ line: 204,
4095
4436
  column: 12
4096
4437
  },
4097
4438
  end: {
4098
- line: 197,
4439
+ line: 206,
4099
4440
  column: 13
4100
4441
  }
4101
4442
  }, {
4102
4443
  start: {
4103
- line: 195,
4444
+ line: 204,
4104
4445
  column: 12
4105
4446
  },
4106
4447
  end: {
4107
- line: 197,
4448
+ line: 206,
4108
4449
  column: 13
4109
4450
  }
4110
4451
  }],
4111
- line: 195
4452
+ line: 204
4112
4453
  },
4113
- "16": {
4454
+ "18": {
4455
+ loc: {
4456
+ start: {
4457
+ line: 214,
4458
+ column: 12
4459
+ },
4460
+ end: {
4461
+ line: 216,
4462
+ column: 13
4463
+ }
4464
+ },
4465
+ type: "if",
4466
+ locations: [{
4467
+ start: {
4468
+ line: 214,
4469
+ column: 12
4470
+ },
4471
+ end: {
4472
+ line: 216,
4473
+ column: 13
4474
+ }
4475
+ }, {
4476
+ start: {
4477
+ line: 214,
4478
+ column: 12
4479
+ },
4480
+ end: {
4481
+ line: 216,
4482
+ column: 13
4483
+ }
4484
+ }],
4485
+ line: 214
4486
+ },
4487
+ "19": {
4114
4488
  loc: {
4115
4489
  start: {
4116
- line: 213,
4490
+ line: 227,
4117
4491
  column: 28
4118
4492
  },
4119
4493
  end: {
4120
- line: 213,
4494
+ line: 227,
4121
4495
  column: 64
4122
4496
  }
4123
4497
  },
4124
4498
  type: "binary-expr",
4125
4499
  locations: [{
4126
4500
  start: {
4127
- line: 213,
4501
+ line: 227,
4128
4502
  column: 28
4129
4503
  },
4130
4504
  end: {
4131
- line: 213,
4505
+ line: 227,
4132
4506
  column: 54
4133
4507
  }
4134
4508
  }, {
4135
4509
  start: {
4136
- line: 213,
4510
+ line: 227,
4137
4511
  column: 58
4138
4512
  },
4139
4513
  end: {
4140
- line: 213,
4514
+ line: 227,
4141
4515
  column: 64
4142
4516
  }
4143
4517
  }],
4144
- line: 213
4518
+ line: 227
4145
4519
  },
4146
- "17": {
4520
+ "20": {
4147
4521
  loc: {
4148
4522
  start: {
4149
- line: 215,
4523
+ line: 229,
4150
4524
  column: 12
4151
4525
  },
4152
4526
  end: {
4153
- line: 218,
4527
+ line: 232,
4154
4528
  column: 13
4155
4529
  }
4156
4530
  },
4157
4531
  type: "if",
4158
4532
  locations: [{
4159
4533
  start: {
4160
- line: 215,
4534
+ line: 229,
4161
4535
  column: 12
4162
4536
  },
4163
4537
  end: {
4164
- line: 218,
4538
+ line: 232,
4165
4539
  column: 13
4166
4540
  }
4167
4541
  }, {
4168
4542
  start: {
4169
- line: 215,
4543
+ line: 229,
4170
4544
  column: 12
4171
4545
  },
4172
4546
  end: {
4173
- line: 218,
4547
+ line: 232,
4174
4548
  column: 13
4175
4549
  }
4176
4550
  }],
4177
- line: 215
4551
+ line: 229
4178
4552
  },
4179
- "18": {
4553
+ "21": {
4180
4554
  loc: {
4181
4555
  start: {
4182
- line: 220,
4556
+ line: 234,
4183
4557
  column: 12
4184
4558
  },
4185
4559
  end: {
4186
- line: 227,
4560
+ line: 241,
4187
4561
  column: 13
4188
4562
  }
4189
4563
  },
4190
4564
  type: "if",
4191
4565
  locations: [{
4192
4566
  start: {
4193
- line: 220,
4567
+ line: 234,
4194
4568
  column: 12
4195
4569
  },
4196
4570
  end: {
4197
- line: 227,
4571
+ line: 241,
4198
4572
  column: 13
4199
4573
  }
4200
4574
  }, {
4201
4575
  start: {
4202
- line: 220,
4576
+ line: 234,
4203
4577
  column: 12
4204
4578
  },
4205
4579
  end: {
4206
- line: 227,
4580
+ line: 241,
4207
4581
  column: 13
4208
4582
  }
4209
4583
  }],
4210
- line: 220
4584
+ line: 234
4211
4585
  },
4212
- "19": {
4586
+ "22": {
4213
4587
  loc: {
4214
4588
  start: {
4215
- line: 222,
4589
+ line: 236,
4216
4590
  column: 16
4217
4591
  },
4218
4592
  end: {
4219
- line: 224,
4593
+ line: 238,
4220
4594
  column: 17
4221
4595
  }
4222
4596
  },
4223
4597
  type: "if",
4224
4598
  locations: [{
4225
4599
  start: {
4226
- line: 222,
4600
+ line: 236,
4227
4601
  column: 16
4228
4602
  },
4229
4603
  end: {
4230
- line: 224,
4604
+ line: 238,
4231
4605
  column: 17
4232
4606
  }
4233
4607
  }, {
4234
4608
  start: {
4235
- line: 222,
4609
+ line: 236,
4236
4610
  column: 16
4237
4611
  },
4238
4612
  end: {
4239
- line: 224,
4613
+ line: 238,
4240
4614
  column: 17
4241
4615
  }
4242
4616
  }],
4243
- line: 222
4617
+ line: 236
4244
4618
  },
4245
- "20": {
4619
+ "23": {
4246
4620
  loc: {
4247
4621
  start: {
4248
- line: 232,
4622
+ line: 246,
4249
4623
  column: 0
4250
4624
  },
4251
4625
  end: {
4252
- line: 256,
4626
+ line: 270,
4253
4627
  column: 1
4254
4628
  }
4255
4629
  },
4256
4630
  type: "if",
4257
4631
  locations: [{
4258
4632
  start: {
4259
- line: 232,
4633
+ line: 246,
4260
4634
  column: 0
4261
4635
  },
4262
4636
  end: {
4263
- line: 256,
4637
+ line: 270,
4264
4638
  column: 1
4265
4639
  }
4266
4640
  }, {
4267
4641
  start: {
4268
- line: 232,
4642
+ line: 246,
4269
4643
  column: 0
4270
4644
  },
4271
4645
  end: {
4272
- line: 256,
4646
+ line: 270,
4273
4647
  column: 1
4274
4648
  }
4275
4649
  }],
4276
- line: 232
4650
+ line: 246
4277
4651
  }
4278
4652
  },
4279
4653
  s: {
@@ -4383,7 +4757,13 @@
4383
4757
  "103": 0,
4384
4758
  "104": 0,
4385
4759
  "105": 0,
4386
- "106": 0
4760
+ "106": 0,
4761
+ "107": 0,
4762
+ "108": 0,
4763
+ "109": 0,
4764
+ "110": 0,
4765
+ "111": 0,
4766
+ "112": 0
4387
4767
  },
4388
4768
  f: {
4389
4769
  "0": 0,
@@ -4426,7 +4806,10 @@
4426
4806
  "17": [0, 0],
4427
4807
  "18": [0, 0],
4428
4808
  "19": [0, 0],
4429
- "20": [0, 0]
4809
+ "20": [0, 0],
4810
+ "21": [0, 0],
4811
+ "22": [0, 0],
4812
+ "23": [0, 0]
4430
4813
  },
4431
4814
  _coverageSchema: "43e27e138ebf9cfc5966b082cf9a028302ed4184"
4432
4815
  };
@@ -4543,16 +4926,26 @@
4543
4926
  }
4544
4927
 
4545
4928
  cov_2g5l3k4997.s[29]++;
4929
+
4930
+ if (this.expanded) {
4931
+ cov_2g5l3k4997.b[4][0]++;
4932
+ cov_2g5l3k4997.s[30]++;
4933
+ this.$target.css('height', 'auto');
4934
+ } else {
4935
+ cov_2g5l3k4997.b[4][1]++;
4936
+ }
4937
+
4938
+ cov_2g5l3k4997.s[31]++;
4546
4939
  this.log(this.$el);
4547
- cov_2g5l3k4997.s[30]++;
4940
+ cov_2g5l3k4997.s[32]++;
4548
4941
  this.log(this.$target);
4549
- cov_2g5l3k4997.s[31]++;
4942
+ cov_2g5l3k4997.s[33]++;
4550
4943
  this.log(this.$container);
4551
- cov_2g5l3k4997.s[32]++;
4944
+ cov_2g5l3k4997.s[34]++;
4552
4945
  this.log(this.$indicator);
4553
- cov_2g5l3k4997.s[33]++;
4946
+ cov_2g5l3k4997.s[35]++;
4554
4947
  this.log('Expanded: ' + this.expanded);
4555
- cov_2g5l3k4997.s[34]++;
4948
+ cov_2g5l3k4997.s[36]++;
4556
4949
  this.log('Target height: ' + this.targetHeight + 'px');
4557
4950
  } // Bind events that trigger methods
4558
4951
  ;
@@ -4561,37 +4954,37 @@
4561
4954
  var _this2 = this;
4562
4955
 
4563
4956
  cov_2g5l3k4997.f[5]++;
4564
- cov_2g5l3k4997.s[35]++;
4957
+ cov_2g5l3k4997.s[37]++;
4565
4958
  this.$el.on('click' + '.' + this.name, function (e) {
4566
4959
  cov_2g5l3k4997.f[6]++;
4567
- cov_2g5l3k4997.s[36]++;
4960
+ cov_2g5l3k4997.s[38]++;
4568
4961
 
4569
4962
  if (_this2.expanded) {
4570
- cov_2g5l3k4997.b[4][0]++;
4571
- cov_2g5l3k4997.s[37]++;
4963
+ cov_2g5l3k4997.b[5][0]++;
4964
+ cov_2g5l3k4997.s[39]++;
4572
4965
 
4573
4966
  _this2.close();
4574
4967
  } else {
4575
- cov_2g5l3k4997.b[4][1]++;
4576
- cov_2g5l3k4997.s[38]++;
4968
+ cov_2g5l3k4997.b[5][1]++;
4969
+ cov_2g5l3k4997.s[40]++;
4577
4970
 
4578
4971
  _this2.show();
4579
4972
  }
4580
4973
  });
4581
- cov_2g5l3k4997.s[39]++;
4974
+ cov_2g5l3k4997.s[41]++;
4582
4975
  $(window).on('resize', debounce(function () {
4583
4976
  cov_2g5l3k4997.f[7]++;
4584
- cov_2g5l3k4997.s[40]++;
4977
+ cov_2g5l3k4997.s[42]++;
4585
4978
 
4586
4979
  if (_this2.$target.length) {
4587
- cov_2g5l3k4997.b[5][0]++;
4588
- cov_2g5l3k4997.s[41]++;
4980
+ cov_2g5l3k4997.b[6][0]++;
4981
+ cov_2g5l3k4997.s[43]++;
4589
4982
  _this2.targetHeight = _this2.$target.height();
4590
- cov_2g5l3k4997.s[42]++;
4983
+ cov_2g5l3k4997.s[44]++;
4591
4984
 
4592
4985
  _this2.log('Target height: ' + _this2.targetHeight + 'px');
4593
4986
  } else {
4594
- cov_2g5l3k4997.b[5][1]++;
4987
+ cov_2g5l3k4997.b[6][1]++;
4595
4988
  }
4596
4989
  }, 250));
4597
4990
  } // Unbind events that trigger methods
@@ -4599,15 +4992,15 @@
4599
4992
 
4600
4993
  _proto.unbindEvents = function unbindEvents() {
4601
4994
  cov_2g5l3k4997.f[8]++;
4602
- cov_2g5l3k4997.s[43]++;
4995
+ cov_2g5l3k4997.s[45]++;
4603
4996
  this.$el.off('.' + this.name);
4604
4997
  } // Which transition
4605
4998
  ;
4606
4999
 
4607
5000
  _proto.whichTransitionEvent = function whichTransitionEvent() {
4608
5001
  cov_2g5l3k4997.f[9]++;
4609
- var el = (cov_2g5l3k4997.s[44]++, document.createElement('text-transition'));
4610
- var transEndEventNames = (cov_2g5l3k4997.s[45]++, {
5002
+ var el = (cov_2g5l3k4997.s[46]++, document.createElement('text-transition'));
5003
+ var transEndEventNames = (cov_2g5l3k4997.s[47]++, {
4611
5004
  'WebkitTransition': 'webkitTransitionEnd',
4612
5005
  // Saf 6, Android Browser
4613
5006
  'MozTransition': 'transitionend',
@@ -4615,17 +5008,17 @@
4615
5008
  'transition': 'transitionend' // IE10, Opera, Chrome, FF 15+, Saf 7+
4616
5009
 
4617
5010
  });
4618
- cov_2g5l3k4997.s[46]++;
5011
+ cov_2g5l3k4997.s[48]++;
4619
5012
 
4620
5013
  for (var t in transEndEventNames) {
4621
- cov_2g5l3k4997.s[47]++;
5014
+ cov_2g5l3k4997.s[49]++;
4622
5015
 
4623
5016
  if (el.style[t] !== undefined) {
4624
- cov_2g5l3k4997.b[6][0]++;
4625
- cov_2g5l3k4997.s[48]++;
5017
+ cov_2g5l3k4997.b[7][0]++;
5018
+ cov_2g5l3k4997.s[50]++;
4626
5019
  return transEndEventNames[t];
4627
5020
  } else {
4628
- cov_2g5l3k4997.b[6][1]++;
5021
+ cov_2g5l3k4997.b[7][1]++;
4629
5022
  }
4630
5023
  }
4631
5024
  } // Show
@@ -4635,82 +5028,93 @@
4635
5028
  var _this3 = this;
4636
5029
 
4637
5030
  cov_2g5l3k4997.f[10]++;
4638
- cov_2g5l3k4997.s[49]++;
4639
- this.$target.removeClass('collapse visible');
4640
- cov_2g5l3k4997.s[50]++;
4641
- this.$target.addClass('collapsing');
4642
5031
  cov_2g5l3k4997.s[51]++;
4643
5032
 
4644
- if (this.$el.is('button')) {
4645
- cov_2g5l3k4997.b[7][0]++;
5033
+ // Update target height if something is added to dom which causes height to change
5034
+ if (this.targetHeight !== this.$target.height()) {
5035
+ cov_2g5l3k4997.b[8][0]++;
4646
5036
  cov_2g5l3k4997.s[52]++;
4647
- this.$el.attr('disabled', true);
5037
+ this.targetHeight = this.$target.height();
4648
5038
  } else {
4649
- cov_2g5l3k4997.b[7][1]++;
5039
+ cov_2g5l3k4997.b[8][1]++;
4650
5040
  }
4651
5041
 
4652
5042
  cov_2g5l3k4997.s[53]++;
5043
+ this.$target.removeClass('collapse show');
5044
+ cov_2g5l3k4997.s[54]++;
5045
+ this.$target.addClass('collapsing');
5046
+ cov_2g5l3k4997.s[55]++;
5047
+
5048
+ if (this.$el.is('button')) {
5049
+ cov_2g5l3k4997.b[9][0]++;
5050
+ cov_2g5l3k4997.s[56]++;
5051
+ this.$el.attr('disabled', true);
5052
+ } else {
5053
+ cov_2g5l3k4997.b[9][1]++;
5054
+ }
5055
+
5056
+ cov_2g5l3k4997.s[57]++;
4653
5057
 
4654
5058
  if (this.$container.length) {
4655
- cov_2g5l3k4997.b[8][0]++;
4656
- cov_2g5l3k4997.s[54]++;
4657
- this.$container.addClass('visible');
5059
+ cov_2g5l3k4997.b[10][0]++;
5060
+ cov_2g5l3k4997.s[58]++;
5061
+ this.$container.addClass('show');
4658
5062
  } else {
4659
- cov_2g5l3k4997.b[8][1]++;
5063
+ cov_2g5l3k4997.b[10][1]++;
4660
5064
  }
4661
5065
 
4662
- cov_2g5l3k4997.s[55]++;
5066
+ cov_2g5l3k4997.s[59]++;
4663
5067
  this.$target.css('height');
4664
- cov_2g5l3k4997.s[56]++;
5068
+ cov_2g5l3k4997.s[60]++;
4665
5069
  this.$target.css('height', this.targetHeight);
4666
- cov_2g5l3k4997.s[57]++;
5070
+ cov_2g5l3k4997.s[61]++;
4667
5071
 
4668
5072
  if (this.$indicator.length) {
4669
- cov_2g5l3k4997.b[9][0]++;
4670
- cov_2g5l3k4997.s[58]++;
4671
- this.$indicator.addClass('visible');
5073
+ cov_2g5l3k4997.b[11][0]++;
5074
+ cov_2g5l3k4997.s[62]++;
5075
+ this.$indicator.addClass('show');
4672
5076
  } else {
4673
- cov_2g5l3k4997.b[9][1]++;
5077
+ cov_2g5l3k4997.b[11][1]++;
4674
5078
  }
4675
5079
 
4676
- cov_2g5l3k4997.s[59]++;
5080
+ cov_2g5l3k4997.s[63]++;
4677
5081
  this.$target.one(this.whichTransitionEvent(), function () {
4678
5082
  cov_2g5l3k4997.f[11]++;
4679
- cov_2g5l3k4997.s[60]++;
5083
+ cov_2g5l3k4997.s[64]++;
4680
5084
 
4681
5085
  _this3.$target.removeClass('collapsing');
4682
5086
 
4683
- cov_2g5l3k4997.s[61]++;
5087
+ cov_2g5l3k4997.s[65]++;
4684
5088
 
4685
5089
  if (_this3.$el.is('button')) {
4686
- cov_2g5l3k4997.b[10][0]++;
4687
- cov_2g5l3k4997.s[62]++;
5090
+ cov_2g5l3k4997.b[12][0]++;
5091
+ cov_2g5l3k4997.s[66]++;
4688
5092
 
4689
5093
  _this3.$el.attr('disabled', false);
4690
5094
  } else {
4691
- cov_2g5l3k4997.b[10][1]++;
5095
+ cov_2g5l3k4997.b[12][1]++;
4692
5096
  }
4693
5097
 
4694
- cov_2g5l3k4997.s[63]++;
5098
+ cov_2g5l3k4997.s[67]++;
4695
5099
 
4696
5100
  _this3.$target.removeAttr('style');
4697
5101
 
4698
- cov_2g5l3k4997.s[64]++;
5102
+ cov_2g5l3k4997.s[68]++;
4699
5103
 
4700
- _this3.$target.addClass('collapse visible');
5104
+ _this3.$target.addClass('collapse show');
4701
5105
 
4702
- cov_2g5l3k4997.s[65]++;
5106
+ cov_2g5l3k4997.s[69]++;
4703
5107
 
4704
5108
  _this3.$el.attr('aria-expanded', true);
4705
5109
 
4706
- cov_2g5l3k4997.s[66]++;
5110
+ cov_2g5l3k4997.s[70]++;
4707
5111
 
4708
5112
  _this3.$target.css('height', 'auto');
4709
5113
 
4710
- cov_2g5l3k4997.s[67]++;
5114
+ cov_2g5l3k4997.s[71]++;
4711
5115
  _this3.expanded = true;
4712
5116
  });
4713
- cov_2g5l3k4997.s[68]++;
5117
+ cov_2g5l3k4997.s[72]++;
4714
5118
  this.onShow();
4715
5119
  } // Close
4716
5120
  ;
@@ -4719,125 +5123,135 @@
4719
5123
  var _this4 = this;
4720
5124
 
4721
5125
  cov_2g5l3k4997.f[12]++;
4722
- cov_2g5l3k4997.s[69]++;
4723
- this.$target.removeClass('collapse visible');
4724
- cov_2g5l3k4997.s[70]++;
5126
+ cov_2g5l3k4997.s[73]++;
5127
+ this.$target.removeClass('collapse show');
5128
+ cov_2g5l3k4997.s[74]++;
4725
5129
  this.$target.addClass('collapsing');
4726
- cov_2g5l3k4997.s[71]++;
5130
+ cov_2g5l3k4997.s[75]++;
4727
5131
 
4728
5132
  if (this.$el.is('button')) {
4729
- cov_2g5l3k4997.b[11][0]++;
4730
- cov_2g5l3k4997.s[72]++;
5133
+ cov_2g5l3k4997.b[13][0]++;
5134
+ cov_2g5l3k4997.s[76]++;
4731
5135
  this.$el.attr('disabled', true);
4732
5136
  } else {
4733
- cov_2g5l3k4997.b[11][1]++;
5137
+ cov_2g5l3k4997.b[13][1]++;
4734
5138
  }
4735
5139
 
4736
- cov_2g5l3k4997.s[73]++;
5140
+ cov_2g5l3k4997.s[77]++;
4737
5141
 
4738
5142
  if (this.$container.length) {
4739
- cov_2g5l3k4997.b[12][0]++;
4740
- cov_2g5l3k4997.s[74]++;
4741
- this.$container.removeClass('visible');
5143
+ cov_2g5l3k4997.b[14][0]++;
5144
+ cov_2g5l3k4997.s[78]++;
5145
+ this.$container.removeClass('show');
4742
5146
  } else {
4743
- cov_2g5l3k4997.b[12][1]++;
5147
+ cov_2g5l3k4997.b[14][1]++;
4744
5148
  }
4745
5149
 
4746
- cov_2g5l3k4997.s[75]++;
5150
+ cov_2g5l3k4997.s[79]++;
4747
5151
  this.$target.css('height', this.$target.height());
4748
- cov_2g5l3k4997.s[76]++;
5152
+ cov_2g5l3k4997.s[80]++;
4749
5153
  setTimeout(function () {
4750
5154
  cov_2g5l3k4997.f[13]++;
4751
- cov_2g5l3k4997.s[77]++;
5155
+ cov_2g5l3k4997.s[81]++;
4752
5156
 
4753
5157
  _this4.$target.css('height', 0);
4754
5158
  }, 10);
4755
- cov_2g5l3k4997.s[78]++;
5159
+ cov_2g5l3k4997.s[82]++;
4756
5160
 
4757
- if ((cov_2g5l3k4997.b[14][0]++, this.$indicator.length) && (cov_2g5l3k4997.b[14][1]++, this.$indicator.hasClass('visible'))) {
4758
- cov_2g5l3k4997.b[13][0]++;
4759
- cov_2g5l3k4997.s[79]++;
4760
- this.$indicator.removeClass('visible');
5161
+ if ((cov_2g5l3k4997.b[16][0]++, this.$indicator.length) && (cov_2g5l3k4997.b[16][1]++, this.$indicator.hasClass('show'))) {
5162
+ cov_2g5l3k4997.b[15][0]++;
5163
+ cov_2g5l3k4997.s[83]++;
5164
+ this.$indicator.removeClass('show');
4761
5165
  } else {
4762
- cov_2g5l3k4997.b[13][1]++;
5166
+ cov_2g5l3k4997.b[15][1]++;
4763
5167
  }
4764
5168
 
4765
- cov_2g5l3k4997.s[80]++;
5169
+ cov_2g5l3k4997.s[84]++;
4766
5170
  this.$target.one(this.whichTransitionEvent(), function () {
4767
5171
  cov_2g5l3k4997.f[14]++;
4768
- cov_2g5l3k4997.s[81]++;
5172
+ cov_2g5l3k4997.s[85]++;
4769
5173
 
4770
5174
  _this4.$target.removeClass('collapsing');
4771
5175
 
4772
- cov_2g5l3k4997.s[82]++;
5176
+ cov_2g5l3k4997.s[86]++;
4773
5177
 
4774
5178
  if (_this4.$el.is('button')) {
4775
- cov_2g5l3k4997.b[15][0]++;
4776
- cov_2g5l3k4997.s[83]++;
5179
+ cov_2g5l3k4997.b[17][0]++;
5180
+ cov_2g5l3k4997.s[87]++;
4777
5181
 
4778
5182
  _this4.$el.attr('disabled', false);
4779
5183
  } else {
4780
- cov_2g5l3k4997.b[15][1]++;
5184
+ cov_2g5l3k4997.b[17][1]++;
4781
5185
  }
4782
5186
 
4783
- cov_2g5l3k4997.s[84]++;
5187
+ cov_2g5l3k4997.s[88]++;
4784
5188
 
4785
5189
  _this4.$target.removeAttr('style');
4786
5190
 
4787
- cov_2g5l3k4997.s[85]++;
5191
+ cov_2g5l3k4997.s[89]++;
4788
5192
 
4789
5193
  _this4.$target.addClass('collapse');
4790
5194
 
4791
- cov_2g5l3k4997.s[86]++;
5195
+ cov_2g5l3k4997.s[90]++;
4792
5196
 
4793
5197
  _this4.$el.attr('aria-expanded', false);
4794
5198
 
4795
- cov_2g5l3k4997.s[87]++;
4796
- _this4.expanded = false;
5199
+ cov_2g5l3k4997.s[91]++;
5200
+ _this4.expanded = false; // Update target height if something is added to dom which causes height to change
5201
+
5202
+ cov_2g5l3k4997.s[92]++;
5203
+
5204
+ if (_this4.targetHeight !== _this4.$target.height()) {
5205
+ cov_2g5l3k4997.b[18][0]++;
5206
+ cov_2g5l3k4997.s[93]++;
5207
+ _this4.targetHeight = _this4.$target.height();
5208
+ } else {
5209
+ cov_2g5l3k4997.b[18][1]++;
5210
+ }
4797
5211
  });
4798
- cov_2g5l3k4997.s[88]++;
5212
+ cov_2g5l3k4997.s[94]++;
4799
5213
  this.onClose();
4800
5214
  };
4801
5215
 
4802
5216
  Collapse._jQueryInterface = function _jQueryInterface(config) {
4803
5217
  cov_2g5l3k4997.f[15]++;
4804
- cov_2g5l3k4997.s[89]++;
5218
+ cov_2g5l3k4997.s[95]++;
4805
5219
  return this.each(function () {
4806
5220
  cov_2g5l3k4997.f[16]++;
4807
- var data = (cov_2g5l3k4997.s[90]++, $(this).data(DATA_KEY));
5221
+ var data = (cov_2g5l3k4997.s[96]++, $(this).data(DATA_KEY));
4808
5222
 
4809
- var _config = (cov_2g5l3k4997.s[91]++, (cov_2g5l3k4997.b[16][0]++, typeof config === 'object') && (cov_2g5l3k4997.b[16][1]++, config));
5223
+ var _config = (cov_2g5l3k4997.s[97]++, (cov_2g5l3k4997.b[19][0]++, typeof config === 'object') && (cov_2g5l3k4997.b[19][1]++, config));
4810
5224
 
4811
- cov_2g5l3k4997.s[92]++;
5225
+ cov_2g5l3k4997.s[98]++;
4812
5226
 
4813
5227
  if (!data) {
4814
- cov_2g5l3k4997.b[17][0]++;
4815
- cov_2g5l3k4997.s[93]++;
5228
+ cov_2g5l3k4997.b[20][0]++;
5229
+ cov_2g5l3k4997.s[99]++;
4816
5230
  data = new Collapse(this, _config);
4817
- cov_2g5l3k4997.s[94]++;
5231
+ cov_2g5l3k4997.s[100]++;
4818
5232
  $(this).data(DATA_KEY, data);
4819
5233
  } else {
4820
- cov_2g5l3k4997.b[17][1]++;
5234
+ cov_2g5l3k4997.b[20][1]++;
4821
5235
  }
4822
5236
 
4823
- cov_2g5l3k4997.s[95]++;
5237
+ cov_2g5l3k4997.s[101]++;
4824
5238
 
4825
5239
  if (typeof config === 'string') {
4826
- cov_2g5l3k4997.b[18][0]++;
4827
- cov_2g5l3k4997.s[96]++;
5240
+ cov_2g5l3k4997.b[21][0]++;
5241
+ cov_2g5l3k4997.s[102]++;
4828
5242
 
4829
5243
  if (typeof data[config] === 'undefined') {
4830
- cov_2g5l3k4997.b[19][0]++;
4831
- cov_2g5l3k4997.s[97]++;
5244
+ cov_2g5l3k4997.b[22][0]++;
5245
+ cov_2g5l3k4997.s[103]++;
4832
5246
  throw new TypeError("No method named \"" + config + "\"");
4833
5247
  } else {
4834
- cov_2g5l3k4997.b[19][1]++;
5248
+ cov_2g5l3k4997.b[22][1]++;
4835
5249
  }
4836
5250
 
4837
- cov_2g5l3k4997.s[98]++;
5251
+ cov_2g5l3k4997.s[104]++;
4838
5252
  data[config]();
4839
5253
  } else {
4840
- cov_2g5l3k4997.b[18][1]++;
5254
+ cov_2g5l3k4997.b[21][1]++;
4841
5255
  }
4842
5256
  });
4843
5257
  };
@@ -4845,27 +5259,27 @@
4845
5259
  return Collapse;
4846
5260
  }(AbstractUIComponent);
4847
5261
 
4848
- cov_2g5l3k4997.s[99]++;
5262
+ cov_2g5l3k4997.s[105]++;
4849
5263
 
4850
5264
  if (typeof $ !== 'undefined') {
4851
- cov_2g5l3k4997.b[20][0]++;
5265
+ cov_2g5l3k4997.b[23][0]++;
4852
5266
  // jQuery
4853
- var JQUERY_NO_CONFLICT = (cov_2g5l3k4997.s[100]++, $.fn[NAME]);
4854
- cov_2g5l3k4997.s[101]++;
5267
+ var JQUERY_NO_CONFLICT = (cov_2g5l3k4997.s[106]++, $.fn[NAME]);
5268
+ cov_2g5l3k4997.s[107]++;
4855
5269
  $.fn[NAME] = Collapse._jQueryInterface;
4856
- cov_2g5l3k4997.s[102]++;
5270
+ cov_2g5l3k4997.s[108]++;
4857
5271
  $.fn[NAME].Constructor = Collapse;
4858
- cov_2g5l3k4997.s[103]++;
5272
+ cov_2g5l3k4997.s[109]++;
4859
5273
 
4860
5274
  $.fn[NAME].noConflict = function () {
4861
5275
  cov_2g5l3k4997.f[17]++;
4862
- cov_2g5l3k4997.s[104]++;
5276
+ cov_2g5l3k4997.s[110]++;
4863
5277
  $.fn[NAME] = JQUERY_NO_CONFLICT;
4864
- cov_2g5l3k4997.s[105]++;
5278
+ cov_2g5l3k4997.s[111]++;
4865
5279
  return Collapse._jQueryInterface;
4866
5280
  };
4867
5281
 
4868
- cov_2g5l3k4997.s[106]++;
5282
+ cov_2g5l3k4997.s[112]++;
4869
5283
  $.fn[NAME].defaults = {
4870
5284
  target: null,
4871
5285
  onInit: null,
@@ -4876,7 +5290,7 @@
4876
5290
  debug: false
4877
5291
  };
4878
5292
  } else {
4879
- cov_2g5l3k4997.b[20][1]++;
5293
+ cov_2g5l3k4997.b[23][1]++;
4880
5294
  }
4881
5295
 
4882
5296
  return Collapse;