less 2.2.2 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (441) hide show
  1. checksums.yaml +7 -0
  2. data/Changelog.md +17 -0
  3. data/Gemfile +7 -3
  4. data/README.md +29 -13
  5. data/bin/lessc +3 -1
  6. data/less.gemspec +2 -6
  7. data/lib/less/defaults.rb +3 -3
  8. data/lib/less/java_script/rhino_context.rb +17 -27
  9. data/lib/less/java_script/v8_context.rb +11 -11
  10. data/lib/less/js/.gitattributes +10 -0
  11. data/lib/less/js/.gitignore +24 -0
  12. data/lib/less/js/.jshintrc +11 -0
  13. data/lib/less/js/.npmignore +1 -0
  14. data/lib/less/js/.travis.yml +8 -0
  15. data/lib/less/js/CHANGELOG.md +299 -0
  16. data/lib/less/js/CONTRIBUTING.md +50 -0
  17. data/lib/less/js/Gruntfile.js +298 -0
  18. data/lib/less/js/README.md +43 -12
  19. data/lib/less/js/benchmark/benchmark.less +194 -194
  20. data/lib/less/js/benchmark/less-benchmark.js +9 -10
  21. data/lib/less/js/bin/lessc +310 -37
  22. data/lib/less/js/bower.json +18 -0
  23. data/lib/less/js/build/README.md +51 -0
  24. data/lib/less/js/build/amd.js +1 -1
  25. data/lib/less/js/build/browser-header.js +4 -0
  26. data/lib/less/js/build/build.yml +162 -0
  27. data/lib/less/js/build/require-rhino.js +7 -2
  28. data/lib/less/js/build/rhino-header.js +4 -0
  29. data/lib/less/js/build/rhino-modules.js +131 -0
  30. data/lib/less/js/build/tasks/.gitkeep +1 -0
  31. data/lib/less/js/build.gradle +347 -0
  32. data/lib/less/js/dist/less-1.3.1.js +4011 -0
  33. data/lib/less/js/dist/less-1.3.1.min.js +9 -0
  34. data/lib/less/js/dist/less-1.3.2.js +4401 -0
  35. data/lib/less/js/dist/less-1.3.2.min.js +9 -0
  36. data/lib/less/js/dist/less-1.3.3.js +4413 -0
  37. data/lib/less/js/dist/less-1.3.3.min.js +9 -0
  38. data/lib/less/js/dist/less-1.4.0-beta.js +5830 -0
  39. data/lib/less/js/dist/less-1.4.0-beta.min.js +11 -0
  40. data/lib/less/js/dist/less-1.4.0.js +5830 -0
  41. data/lib/less/js/dist/less-1.4.0.min.js +11 -0
  42. data/lib/less/js/dist/less-1.4.1.js +5837 -0
  43. data/lib/less/js/dist/less-1.4.1.min.js +11 -0
  44. data/lib/less/js/dist/less-1.4.2.js +5837 -0
  45. data/lib/less/js/dist/less-1.4.2.min.js +11 -0
  46. data/lib/less/js/dist/less-1.5.0.js +6914 -0
  47. data/lib/less/js/dist/less-1.5.0.min.js +13 -0
  48. data/lib/less/js/dist/less-1.5.1.js +6941 -0
  49. data/lib/less/js/dist/less-1.5.1.min.js +13 -0
  50. data/lib/less/js/dist/less-1.6.0.js +7485 -0
  51. data/lib/less/js/dist/less-1.6.0.min.js +16 -0
  52. data/lib/less/js/dist/less-1.6.1.js +7513 -0
  53. data/lib/less/js/dist/less-1.6.1.min.js +16 -0
  54. data/lib/less/js/dist/less-1.6.2.js +7624 -0
  55. data/lib/less/js/dist/less-1.6.2.min.js +16 -0
  56. data/lib/less/js/dist/less-1.6.3.js +7627 -0
  57. data/lib/less/js/dist/less-1.6.3.min.js +16 -0
  58. data/lib/less/js/dist/less-1.7.0.js +7921 -0
  59. data/lib/less/js/dist/less-1.7.0.min.js +16 -0
  60. data/lib/less/js/dist/less-rhino-1.3.1.js +3725 -0
  61. data/lib/less/js/dist/less-rhino-1.3.2.js +3990 -0
  62. data/lib/less/js/dist/less-rhino-1.3.3.js +4002 -0
  63. data/lib/less/js/dist/less-rhino-1.4.0.js +4273 -0
  64. data/lib/less/js/dist/less-rhino-1.5.1.js +6831 -0
  65. data/lib/less/js/dist/less-rhino-1.6.2.js +9017 -0
  66. data/lib/less/js/dist/less-rhino-1.6.3.js +9020 -0
  67. data/lib/less/js/dist/less-rhino-1.7.0.js +9301 -0
  68. data/lib/less/js/dist/lessc-rhino-1.6.2.js +449 -0
  69. data/lib/less/js/dist/lessc-rhino-1.6.3.js +449 -0
  70. data/lib/less/js/dist/lessc-rhino-1.7.0.js +449 -0
  71. data/lib/less/js/gradle/wrapper/gradle-wrapper.jar +0 -0
  72. data/lib/less/js/gradle/wrapper/gradle-wrapper.properties +6 -0
  73. data/lib/less/js/gradlew +164 -0
  74. data/lib/less/js/gradlew.bat +90 -0
  75. data/lib/less/js/lib/less/browser.js +547 -250
  76. data/lib/less/js/lib/less/encoder.js +4 -0
  77. data/lib/less/js/lib/less/env.js +136 -0
  78. data/lib/less/js/lib/less/extend-visitor.js +416 -0
  79. data/lib/less/js/lib/less/functions.js +576 -36
  80. data/lib/less/js/lib/less/import-visitor.js +142 -0
  81. data/lib/less/js/lib/less/index.js +187 -83
  82. data/lib/less/js/lib/less/join-selector-visitor.js +44 -0
  83. data/lib/less/js/lib/less/lessc_helper.js +82 -0
  84. data/lib/less/js/lib/less/parser.js +1286 -523
  85. data/lib/less/js/lib/less/rhino.js +415 -29
  86. data/lib/less/js/lib/less/source-map-output.js +141 -0
  87. data/lib/less/js/lib/less/to-css-visitor.js +240 -0
  88. data/lib/less/js/lib/less/tree/alpha.js +17 -5
  89. data/lib/less/js/lib/less/tree/anonymous.js +25 -4
  90. data/lib/less/js/lib/less/tree/assignment.js +17 -5
  91. data/lib/less/js/lib/less/tree/call.js +36 -13
  92. data/lib/less/js/lib/less/tree/color.js +119 -31
  93. data/lib/less/js/lib/less/tree/comment.js +18 -4
  94. data/lib/less/js/lib/less/tree/condition.js +35 -28
  95. data/lib/less/js/lib/less/tree/detached-ruleset.js +20 -0
  96. data/lib/less/js/lib/less/tree/dimension.js +291 -16
  97. data/lib/less/js/lib/less/tree/directive.js +56 -22
  98. data/lib/less/js/lib/less/tree/element.js +78 -17
  99. data/lib/less/js/lib/less/tree/expression.js +39 -8
  100. data/lib/less/js/lib/less/tree/extend.js +53 -0
  101. data/lib/less/js/lib/less/tree/import.js +81 -36
  102. data/lib/less/js/lib/less/tree/javascript.js +17 -10
  103. data/lib/less/js/lib/less/tree/keyword.js +8 -3
  104. data/lib/less/js/lib/less/tree/media.js +70 -27
  105. data/lib/less/js/lib/less/tree/mixin.js +250 -70
  106. data/lib/less/js/lib/less/tree/negative.js +24 -0
  107. data/lib/less/js/lib/less/tree/operation.js +38 -13
  108. data/lib/less/js/lib/less/tree/paren.js +9 -2
  109. data/lib/less/js/lib/less/tree/quoted.js +29 -10
  110. data/lib/less/js/lib/less/tree/rule.js +77 -29
  111. data/lib/less/js/lib/less/tree/ruleset-call.js +16 -0
  112. data/lib/less/js/lib/less/tree/ruleset.js +445 -107
  113. data/lib/less/js/lib/less/tree/selector.js +117 -30
  114. data/lib/less/js/lib/less/tree/unicode-descriptor.js +15 -0
  115. data/lib/less/js/lib/less/tree/url.js +43 -15
  116. data/lib/less/js/lib/less/tree/value.js +16 -6
  117. data/lib/less/js/lib/less/tree/variable.js +26 -8
  118. data/lib/less/js/lib/less/tree.js +82 -2
  119. data/lib/less/js/lib/less/visitor.js +146 -0
  120. data/lib/less/js/lib/source-map/source-map-0.1.31.js +1933 -0
  121. data/lib/less/js/lib/source-map/source-map-footer.js +4 -0
  122. data/lib/less/js/lib/source-map/source-map-header.js +3 -0
  123. data/lib/less/js/package.json +86 -11
  124. data/lib/less/js/test/browser/common.js +201 -0
  125. data/lib/less/js/test/browser/css/global-vars/simple.css +3 -0
  126. data/lib/less/js/test/browser/css/modify-vars/simple.css +8 -0
  127. data/lib/less/js/test/browser/css/postProcessor/postProcessor.css +4 -0
  128. data/lib/less/js/test/browser/css/relative-urls/urls.css +35 -0
  129. data/lib/less/js/test/browser/css/rootpath/urls.css +35 -0
  130. data/lib/less/js/test/browser/css/rootpath-relative/urls.css +35 -0
  131. data/lib/less/js/test/browser/css/urls.css +53 -0
  132. data/lib/less/js/test/browser/es5.js +27 -0
  133. data/lib/less/js/test/browser/jasmine-html.js +681 -0
  134. data/lib/less/js/test/browser/jasmine.css +82 -0
  135. data/lib/less/js/test/browser/jasmine.js +2600 -0
  136. data/lib/less/js/test/browser/less/console-errors/test-error.less +3 -0
  137. data/lib/less/js/test/browser/less/console-errors/test-error.txt +2 -0
  138. data/lib/less/js/test/browser/less/global-vars/simple.less +3 -0
  139. data/lib/less/js/test/browser/less/imports/urls.less +4 -0
  140. data/lib/less/js/test/browser/less/imports/urls2.less +4 -0
  141. data/lib/less/js/test/browser/less/modify-vars/imports/simple2.less +4 -0
  142. data/lib/less/js/test/browser/less/modify-vars/simple.less +8 -0
  143. data/lib/less/js/test/browser/less/postProcessor/postProcessor.less +4 -0
  144. data/lib/less/js/test/browser/less/relative-urls/urls.less +33 -0
  145. data/lib/less/js/test/browser/less/rootpath/urls.less +33 -0
  146. data/lib/less/js/test/browser/less/rootpath-relative/urls.less +33 -0
  147. data/lib/less/js/test/browser/less/urls.less +57 -0
  148. data/lib/less/js/test/browser/phantom-runner.js +150 -0
  149. data/lib/less/js/test/browser/runner-browser-options.js +42 -0
  150. data/lib/less/js/test/browser/runner-browser-spec.js +12 -0
  151. data/lib/less/js/test/browser/runner-console-errors.js +5 -0
  152. data/lib/less/js/test/browser/runner-errors-options.js +5 -0
  153. data/lib/less/js/test/browser/runner-errors-spec.js +4 -0
  154. data/lib/less/js/test/browser/runner-global-vars-options.js +4 -0
  155. data/lib/less/js/test/browser/runner-global-vars-spec.js +3 -0
  156. data/lib/less/js/test/browser/runner-legacy-options.js +4 -0
  157. data/lib/less/js/test/browser/runner-legacy-spec.js +3 -0
  158. data/lib/less/js/test/browser/runner-main-options.js +15 -0
  159. data/lib/less/js/test/browser/runner-main-spec.js +3 -0
  160. data/lib/less/js/test/browser/runner-modify-vars-options.js +2 -0
  161. data/lib/less/js/test/browser/runner-modify-vars-spec.js +43 -0
  162. data/lib/less/js/test/browser/runner-no-js-errors-options.js +4 -0
  163. data/lib/less/js/test/browser/runner-no-js-errors-spec.js +4 -0
  164. data/lib/less/js/test/browser/runner-postProcessor-options.js +4 -0
  165. data/lib/less/js/test/browser/runner-postProcessor.js +3 -0
  166. data/lib/less/js/test/browser/runner-production-options.js +3 -0
  167. data/lib/less/js/test/browser/runner-production-spec.js +5 -0
  168. data/lib/less/js/test/browser/runner-relative-urls-options.js +3 -0
  169. data/lib/less/js/test/browser/runner-relative-urls-spec.js +3 -0
  170. data/lib/less/js/test/browser/runner-rootpath-options.js +3 -0
  171. data/lib/less/js/test/browser/runner-rootpath-relative-options.js +4 -0
  172. data/lib/less/js/test/browser/runner-rootpath-relative-spec.js +3 -0
  173. data/lib/less/js/test/browser/runner-rootpath-spec.js +3 -0
  174. data/lib/less/js/test/browser/test-runner-template.tmpl +47 -0
  175. data/lib/less/js/test/css/charsets.css +1 -0
  176. data/lib/less/js/test/css/colors.css +29 -0
  177. data/lib/less/js/test/css/comments.css +15 -2
  178. data/lib/less/js/test/css/compression/compression.css +3 -0
  179. data/lib/less/js/test/css/css-3.css +73 -2
  180. data/lib/less/js/test/css/css-escapes.css +4 -0
  181. data/lib/less/js/test/css/css-guards.css +37 -0
  182. data/lib/less/js/test/css/css.css +20 -14
  183. data/lib/less/js/test/css/debug/linenumbers-all.css +49 -0
  184. data/lib/less/js/test/css/debug/linenumbers-comments.css +40 -0
  185. data/lib/less/js/test/css/debug/linenumbers-mediaquery.css +40 -0
  186. data/lib/less/js/test/css/detached-rulesets.css +71 -0
  187. data/lib/less/js/test/css/empty.css +0 -0
  188. data/lib/less/js/test/css/extend-chaining.css +81 -0
  189. data/lib/less/js/test/css/extend-clearfix.css +19 -0
  190. data/lib/less/js/test/css/extend-exact.css +37 -0
  191. data/lib/less/js/test/css/extend-media.css +24 -0
  192. data/lib/less/js/test/css/extend-nest.css +57 -0
  193. data/lib/less/js/test/css/extend-selector.css +80 -0
  194. data/lib/less/js/test/css/extend.css +76 -0
  195. data/lib/less/js/test/css/extract-and-length.css +133 -0
  196. data/lib/less/js/test/css/functions.css +117 -2
  197. data/lib/less/js/test/css/globalVars/extended.css +12 -0
  198. data/lib/less/js/test/css/globalVars/simple.css +6 -0
  199. data/lib/less/js/test/css/ie-filters.css +7 -3
  200. data/lib/less/js/test/css/import-inline.css +5 -0
  201. data/lib/less/js/test/css/import-interpolation.css +6 -0
  202. data/lib/less/js/test/css/import-once.css +15 -0
  203. data/lib/less/js/test/css/import-reference.css +68 -0
  204. data/lib/less/js/test/css/import.css +23 -10
  205. data/lib/less/js/test/css/javascript.css +3 -2
  206. data/lib/less/js/test/css/legacy/legacy.css +7 -0
  207. data/lib/less/js/test/css/media.css +141 -1
  208. data/lib/less/js/test/css/merge.css +34 -0
  209. data/lib/less/js/test/css/mixins-args.css +41 -4
  210. data/lib/less/js/test/css/mixins-guards-default-func.css +129 -0
  211. data/lib/less/js/test/css/mixins-guards.css +24 -0
  212. data/lib/less/js/test/css/mixins-important.css +28 -0
  213. data/lib/less/js/test/css/mixins-interpolated.css +39 -0
  214. data/lib/less/js/test/css/mixins-named-args.css +27 -0
  215. data/lib/less/js/test/css/mixins-pattern.css +4 -0
  216. data/lib/less/js/test/css/mixins.css +70 -0
  217. data/lib/less/js/test/css/modifyVars/extended.css +9 -0
  218. data/lib/less/js/test/css/no-output.css +0 -0
  219. data/lib/less/js/test/css/parens.css +21 -5
  220. data/lib/less/js/test/css/property-name-interp.css +20 -0
  221. data/lib/less/js/test/css/scope.css +23 -0
  222. data/lib/less/js/test/css/selectors.css +84 -0
  223. data/lib/less/js/test/css/static-urls/urls.css +45 -0
  224. data/lib/less/js/test/css/strings.css +5 -2
  225. data/lib/less/js/test/css/url-args/urls.css +56 -0
  226. data/lib/less/js/test/css/urls.css +71 -0
  227. data/lib/less/js/test/css/variables-in-at-rules.css +18 -0
  228. data/lib/less/js/test/css/variables.css +22 -4
  229. data/lib/less/js/test/css/whitespace.css +4 -0
  230. data/lib/less/js/test/data/data-uri-fail.png +0 -0
  231. data/lib/less/js/test/data/image.jpg +1 -0
  232. data/lib/less/js/test/data/page.html +1 -0
  233. data/lib/less/js/test/index.js +45 -0
  234. data/lib/less/js/test/less/charsets.less +3 -0
  235. data/lib/less/js/test/less/colors.less +37 -4
  236. data/lib/less/js/test/less/comments.less +21 -3
  237. data/lib/less/js/test/less/compression/compression.less +36 -0
  238. data/lib/less/js/test/less/css-3.less +70 -6
  239. data/lib/less/js/test/less/css-escapes.less +6 -1
  240. data/lib/less/js/test/less/css-guards.less +102 -0
  241. data/lib/less/js/test/less/css.less +23 -15
  242. data/lib/less/js/test/less/debug/import/test.less +25 -0
  243. data/lib/less/js/test/less/debug/linenumbers.less +33 -0
  244. data/lib/less/js/test/less/detached-rulesets.less +103 -0
  245. data/lib/less/js/test/less/empty.less +0 -0
  246. data/lib/less/js/test/less/errors/add-mixed-units.less +3 -0
  247. data/lib/less/js/test/less/errors/add-mixed-units.txt +4 -0
  248. data/lib/less/js/test/less/errors/add-mixed-units2.less +3 -0
  249. data/lib/less/js/test/less/errors/add-mixed-units2.txt +4 -0
  250. data/lib/less/js/test/less/errors/at-rules-undefined-var.less +4 -0
  251. data/lib/less/js/test/less/errors/at-rules-undefined-var.txt +4 -0
  252. data/lib/less/js/test/less/errors/bad-variable-declaration1.less +1 -0
  253. data/lib/less/js/test/less/errors/bad-variable-declaration1.txt +2 -0
  254. data/lib/less/js/test/less/errors/color-func-invalid-color.less +3 -0
  255. data/lib/less/js/test/less/errors/color-func-invalid-color.txt +4 -0
  256. data/lib/less/js/test/less/errors/comment-in-selector.less +1 -0
  257. data/lib/less/js/test/less/errors/comment-in-selector.txt +2 -0
  258. data/lib/less/js/test/less/errors/css-guard-default-func.less +4 -0
  259. data/lib/less/js/test/less/errors/css-guard-default-func.txt +4 -0
  260. data/lib/less/js/test/less/errors/detached-ruleset-1.less +6 -0
  261. data/lib/less/js/test/less/errors/detached-ruleset-1.txt +4 -0
  262. data/lib/less/js/test/less/errors/detached-ruleset-2.less +6 -0
  263. data/lib/less/js/test/less/errors/detached-ruleset-2.txt +4 -0
  264. data/lib/less/js/test/less/errors/detached-ruleset-3.less +4 -0
  265. data/lib/less/js/test/less/errors/detached-ruleset-3.txt +4 -0
  266. data/lib/less/js/test/less/errors/detached-ruleset-4.less +5 -0
  267. data/lib/less/js/test/less/errors/detached-ruleset-4.txt +3 -0
  268. data/lib/less/js/test/less/errors/detached-ruleset-5.less +4 -0
  269. data/lib/less/js/test/less/errors/detached-ruleset-5.txt +3 -0
  270. data/lib/less/js/test/less/errors/detached-ruleset-6.less +5 -0
  271. data/lib/less/js/test/less/errors/detached-ruleset-6.txt +4 -0
  272. data/lib/less/js/test/less/errors/divide-mixed-units.less +3 -0
  273. data/lib/less/js/test/less/errors/divide-mixed-units.txt +4 -0
  274. data/lib/less/js/test/less/errors/extend-no-selector.less +3 -0
  275. data/lib/less/js/test/less/errors/extend-no-selector.txt +3 -0
  276. data/lib/less/js/test/less/errors/extend-not-at-end.less +3 -0
  277. data/lib/less/js/test/less/errors/extend-not-at-end.txt +3 -0
  278. data/lib/less/js/test/less/errors/import-missing.less +6 -0
  279. data/lib/less/js/test/less/errors/import-missing.txt +3 -0
  280. data/lib/less/js/test/less/errors/import-no-semi.less +1 -0
  281. data/lib/less/js/test/less/errors/import-no-semi.txt +2 -0
  282. data/lib/less/js/test/less/errors/import-subfolder1.less +1 -0
  283. data/lib/less/js/test/less/errors/import-subfolder1.txt +3 -0
  284. data/lib/less/js/test/less/errors/import-subfolder2.less +1 -0
  285. data/lib/less/js/test/less/errors/import-subfolder2.txt +4 -0
  286. data/lib/less/js/test/less/errors/imports/import-subfolder1.less +1 -0
  287. data/lib/less/js/test/less/errors/imports/import-subfolder2.less +1 -0
  288. data/lib/less/js/test/less/errors/imports/import-test.less +4 -0
  289. data/lib/less/js/test/less/errors/imports/subfolder/mixin-not-defined.less +1 -0
  290. data/lib/less/js/test/less/errors/imports/subfolder/parse-error-curly-bracket.less +1 -0
  291. data/lib/less/js/test/less/errors/javascript-error.less +3 -0
  292. data/lib/less/js/test/less/errors/javascript-error.txt +4 -0
  293. data/lib/less/js/test/less/errors/javascript-undefined-var.less +3 -0
  294. data/lib/less/js/test/less/errors/javascript-undefined-var.txt +4 -0
  295. data/lib/less/js/test/less/errors/mixed-mixin-definition-args-1.less +6 -0
  296. data/lib/less/js/test/less/errors/mixed-mixin-definition-args-1.txt +4 -0
  297. data/lib/less/js/test/less/errors/mixed-mixin-definition-args-2.less +6 -0
  298. data/lib/less/js/test/less/errors/mixed-mixin-definition-args-2.txt +4 -0
  299. data/lib/less/js/test/less/errors/mixin-not-defined.less +11 -0
  300. data/lib/less/js/test/less/errors/mixin-not-defined.txt +3 -0
  301. data/lib/less/js/test/less/errors/mixin-not-matched.less +6 -0
  302. data/lib/less/js/test/less/errors/mixin-not-matched.txt +3 -0
  303. data/lib/less/js/test/less/errors/mixin-not-matched2.less +6 -0
  304. data/lib/less/js/test/less/errors/mixin-not-matched2.txt +3 -0
  305. data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.less +9 -0
  306. data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.txt +4 -0
  307. data/lib/less/js/test/less/errors/mixins-guards-default-func-1.less +9 -0
  308. data/lib/less/js/test/less/errors/mixins-guards-default-func-1.txt +4 -0
  309. data/lib/less/js/test/less/errors/mixins-guards-default-func-2.less +9 -0
  310. data/lib/less/js/test/less/errors/mixins-guards-default-func-2.txt +4 -0
  311. data/lib/less/js/test/less/errors/mixins-guards-default-func-3.less +9 -0
  312. data/lib/less/js/test/less/errors/mixins-guards-default-func-3.txt +4 -0
  313. data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors.less +4 -0
  314. data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors.txt +4 -0
  315. data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors2.less +4 -0
  316. data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors2.txt +4 -0
  317. data/lib/less/js/test/less/errors/multiply-mixed-units.less +7 -0
  318. data/lib/less/js/test/less/errors/multiply-mixed-units.txt +4 -0
  319. data/lib/less/js/test/less/errors/parens-error-1.less +3 -0
  320. data/lib/less/js/test/less/errors/parens-error-1.txt +4 -0
  321. data/lib/less/js/test/less/errors/parens-error-2.less +3 -0
  322. data/lib/less/js/test/less/errors/parens-error-2.txt +4 -0
  323. data/lib/less/js/test/less/errors/parens-error-3.less +3 -0
  324. data/lib/less/js/test/less/errors/parens-error-3.txt +4 -0
  325. data/lib/less/js/test/less/errors/parse-error-curly-bracket.less +4 -0
  326. data/lib/less/js/test/less/errors/parse-error-curly-bracket.txt +4 -0
  327. data/lib/less/js/test/less/errors/parse-error-extra-parens.less +5 -0
  328. data/lib/less/js/test/less/errors/parse-error-extra-parens.txt +3 -0
  329. data/lib/less/js/test/less/errors/parse-error-missing-bracket.less +2 -0
  330. data/lib/less/js/test/less/errors/parse-error-missing-bracket.txt +3 -0
  331. data/lib/less/js/test/less/errors/parse-error-missing-parens.less +5 -0
  332. data/lib/less/js/test/less/errors/parse-error-missing-parens.txt +3 -0
  333. data/lib/less/js/test/less/errors/parse-error-with-import.less +13 -0
  334. data/lib/less/js/test/less/errors/parse-error-with-import.txt +4 -0
  335. data/lib/less/js/test/less/errors/percentage-missing-space.less +3 -0
  336. data/lib/less/js/test/less/errors/percentage-missing-space.txt +4 -0
  337. data/lib/less/js/test/less/errors/property-asterisk-only-name.less +3 -0
  338. data/lib/less/js/test/less/errors/property-asterisk-only-name.txt +4 -0
  339. data/lib/less/js/test/less/errors/property-ie5-hack.less +3 -0
  340. data/lib/less/js/test/less/errors/property-ie5-hack.txt +4 -0
  341. data/lib/less/js/test/less/errors/property-in-root.less +4 -0
  342. data/lib/less/js/test/less/errors/property-in-root.txt +4 -0
  343. data/lib/less/js/test/less/errors/property-in-root2.less +1 -0
  344. data/lib/less/js/test/less/errors/property-in-root2.txt +4 -0
  345. data/lib/less/js/test/less/errors/property-in-root3.less +4 -0
  346. data/lib/less/js/test/less/errors/property-in-root3.txt +3 -0
  347. data/lib/less/js/test/less/errors/property-interp-not-defined.less +1 -0
  348. data/lib/less/js/test/less/errors/property-interp-not-defined.txt +2 -0
  349. data/lib/less/js/test/less/errors/recursive-variable.less +1 -0
  350. data/lib/less/js/test/less/errors/recursive-variable.txt +2 -0
  351. data/lib/less/js/test/less/errors/svg-gradient1.less +3 -0
  352. data/lib/less/js/test/less/errors/svg-gradient1.txt +4 -0
  353. data/lib/less/js/test/less/errors/svg-gradient2.less +3 -0
  354. data/lib/less/js/test/less/errors/svg-gradient2.txt +4 -0
  355. data/lib/less/js/test/less/errors/svg-gradient3.less +3 -0
  356. data/lib/less/js/test/less/errors/svg-gradient3.txt +4 -0
  357. data/lib/less/js/test/less/errors/unit-function.less +3 -0
  358. data/lib/less/js/test/less/errors/unit-function.txt +4 -0
  359. data/lib/less/js/test/less/extend-chaining.less +91 -0
  360. data/lib/less/js/test/less/extend-clearfix.less +19 -0
  361. data/lib/less/js/test/less/extend-exact.less +46 -0
  362. data/lib/less/js/test/less/extend-media.less +24 -0
  363. data/lib/less/js/test/less/extend-nest.less +65 -0
  364. data/lib/less/js/test/less/extend-selector.less +99 -0
  365. data/lib/less/js/test/less/extend.less +81 -0
  366. data/lib/less/js/test/less/extract-and-length.less +133 -0
  367. data/lib/less/js/test/less/functions.less +130 -6
  368. data/lib/less/js/test/less/globalVars/extended.json +5 -0
  369. data/lib/less/js/test/less/globalVars/extended.less +10 -0
  370. data/lib/less/js/test/less/globalVars/simple.json +3 -0
  371. data/lib/less/js/test/less/globalVars/simple.less +3 -0
  372. data/lib/less/js/test/less/ie-filters.less +7 -0
  373. data/lib/less/js/test/less/import/deeper/import-once-test-a.less +1 -0
  374. data/lib/less/js/test/less/import/import-and-relative-paths-test.less +17 -0
  375. data/lib/less/js/test/less/import/import-charset-test.less +1 -0
  376. data/lib/less/js/test/less/import/import-interpolation.less +1 -0
  377. data/lib/less/js/test/less/import/import-interpolation2.less +5 -0
  378. data/lib/less/js/test/less/import/import-once-test-c.less +6 -0
  379. data/lib/less/js/test/less/import/import-reference.less +51 -0
  380. data/lib/less/js/test/less/import/import-test-a.less +1 -0
  381. data/lib/less/js/test/less/import/import-test-c.less +0 -1
  382. data/lib/less/js/test/less/import/import-test-f.less +5 -0
  383. data/lib/less/js/test/less/import/imports/font.less +8 -0
  384. data/lib/less/js/test/less/import/imports/logo.less +5 -0
  385. data/lib/less/js/test/less/import/invalid-css.less +1 -0
  386. data/lib/less/js/test/less/import/urls.less +1 -0
  387. data/lib/less/js/test/less/import-inline.less +2 -0
  388. data/lib/less/js/test/less/import-interpolation.less +8 -0
  389. data/lib/less/js/test/less/import-once.less +6 -0
  390. data/lib/less/js/test/less/import-reference.less +21 -0
  391. data/lib/less/js/test/less/import.less +13 -3
  392. data/lib/less/js/test/less/javascript.less +5 -3
  393. data/lib/less/js/test/less/legacy/legacy.less +7 -0
  394. data/lib/less/js/test/less/media.less +158 -3
  395. data/lib/less/js/test/less/merge.less +78 -0
  396. data/lib/less/js/test/less/mixins-args.less +93 -15
  397. data/lib/less/js/test/less/mixins-guards-default-func.less +195 -0
  398. data/lib/less/js/test/less/mixins-guards.less +65 -0
  399. data/lib/less/js/test/less/mixins-important.less +8 -1
  400. data/lib/less/js/test/less/mixins-interpolated.less +69 -0
  401. data/lib/less/js/test/less/mixins-named-args.less +36 -0
  402. data/lib/less/js/test/less/mixins-nested.less +2 -2
  403. data/lib/less/js/test/less/mixins-pattern.less +4 -1
  404. data/lib/less/js/test/less/mixins.less +74 -0
  405. data/lib/less/js/test/less/modifyVars/extended.json +5 -0
  406. data/lib/less/js/test/less/modifyVars/extended.less +11 -0
  407. data/lib/less/js/test/less/no-js-errors/no-js-errors.less +3 -0
  408. data/lib/less/js/test/less/no-js-errors/no-js-errors.txt +4 -0
  409. data/lib/less/js/test/less/no-output.less +2 -0
  410. data/lib/less/js/test/less/operations.less +27 -27
  411. data/lib/less/js/test/less/parens.less +24 -5
  412. data/lib/less/js/test/less/property-name-interp.less +53 -0
  413. data/lib/less/js/test/less/scope.less +73 -1
  414. data/lib/less/js/test/less/selectors.less +101 -0
  415. data/lib/less/js/test/less/sourcemaps/basic.json +3 -0
  416. data/lib/less/js/test/less/sourcemaps/basic.less +27 -0
  417. data/lib/less/js/test/less/sourcemaps/imported.css +7 -0
  418. data/lib/less/js/test/less/static-urls/urls.less +33 -0
  419. data/lib/less/js/test/less/strings.less +7 -1
  420. data/lib/less/js/test/less/url-args/urls.less +63 -0
  421. data/lib/less/js/test/less/urls.less +72 -0
  422. data/lib/less/js/test/less/variables-in-at-rules.less +20 -0
  423. data/lib/less/js/test/less/variables.less +42 -13
  424. data/lib/less/js/test/less/whitespace.less +7 -0
  425. data/lib/less/js/test/less-test.js +251 -65
  426. data/lib/less/js/test/rhino/test-header.js +15 -0
  427. data/lib/less/js/test/sourcemaps/basic.json +1 -0
  428. data/lib/less/js/test/sourcemaps/index.html +17 -0
  429. data/lib/less/loader.rb +191 -27
  430. data/lib/less/parser.rb +47 -8
  431. data/lib/less/version.rb +2 -2
  432. data/spec/less/loader_spec.rb +45 -0
  433. data/spec/less/parser_spec.rb +43 -17
  434. data/spec/less/some/some.css +0 -0
  435. data/spec/less/some/some.less +4 -0
  436. metadata +352 -57
  437. data/lib/less/js/CHANGELOG +0 -41
  438. data/lib/less/js/Makefile +0 -75
  439. data/lib/less/js/build/ecma-5.js +0 -120
  440. data/lib/less/js/build/header.js +0 -7
  441. data/lib/less/js/lib/less/cssmin.js +0 -355
@@ -0,0 +1,16 @@
1
+ (function (tree) {
2
+
3
+ tree.RulesetCall = function (variable) {
4
+ this.variable = variable;
5
+ };
6
+ tree.RulesetCall.prototype = {
7
+ type: "RulesetCall",
8
+ accept: function (visitor) {
9
+ },
10
+ eval: function (env) {
11
+ var detachedRuleset = new(tree.Variable)(this.variable).eval(env);
12
+ return detachedRuleset.callEval(env);
13
+ }
14
+ };
15
+
16
+ })(require('../tree'));
@@ -7,95 +7,252 @@ tree.Ruleset = function (selectors, rules, strictImports) {
7
7
  this.strictImports = strictImports;
8
8
  };
9
9
  tree.Ruleset.prototype = {
10
+ type: "Ruleset",
11
+ accept: function (visitor) {
12
+ if (this.paths) {
13
+ visitor.visitArray(this.paths, true);
14
+ } else if (this.selectors) {
15
+ this.selectors = visitor.visitArray(this.selectors);
16
+ }
17
+ if (this.rules && this.rules.length) {
18
+ this.rules = visitor.visitArray(this.rules);
19
+ }
20
+ },
10
21
  eval: function (env) {
11
- var selectors = this.selectors && this.selectors.map(function (s) { return s.eval(env) });
12
- var ruleset = new(tree.Ruleset)(selectors, this.rules.slice(0), this.strictImports);
22
+ var thisSelectors = this.selectors, selectors,
23
+ selCnt, selector, i, defaultFunc = tree.defaultFunc, hasOnePassingSelector = false;
24
+
25
+ if (thisSelectors && (selCnt = thisSelectors.length)) {
26
+ selectors = [];
27
+ defaultFunc.error({
28
+ type: "Syntax",
29
+ message: "it is currently only allowed in parametric mixin guards,"
30
+ });
31
+ for (i = 0; i < selCnt; i++) {
32
+ selector = thisSelectors[i].eval(env);
33
+ selectors.push(selector);
34
+ if (selector.evaldCondition) {
35
+ hasOnePassingSelector = true;
36
+ }
37
+ }
38
+ defaultFunc.reset();
39
+ } else {
40
+ hasOnePassingSelector = true;
41
+ }
42
+
43
+ var rules = this.rules ? this.rules.slice(0) : null,
44
+ ruleset = new(tree.Ruleset)(selectors, rules, this.strictImports),
45
+ rule, subRule;
13
46
 
47
+ ruleset.originalRuleset = this;
14
48
  ruleset.root = this.root;
49
+ ruleset.firstRoot = this.firstRoot;
15
50
  ruleset.allowImports = this.allowImports;
16
51
 
52
+ if(this.debugInfo) {
53
+ ruleset.debugInfo = this.debugInfo;
54
+ }
55
+
56
+ if (!hasOnePassingSelector) {
57
+ rules.length = 0;
58
+ }
59
+
17
60
  // push the current ruleset to the frames stack
18
- env.frames.unshift(ruleset);
61
+ var envFrames = env.frames;
62
+ envFrames.unshift(ruleset);
63
+
64
+ // currrent selectors
65
+ var envSelectors = env.selectors;
66
+ if (!envSelectors) {
67
+ env.selectors = envSelectors = [];
68
+ }
69
+ envSelectors.unshift(this.selectors);
19
70
 
20
71
  // Evaluate imports
21
72
  if (ruleset.root || ruleset.allowImports || !ruleset.strictImports) {
22
- for (var i = 0; i < ruleset.rules.length; i++) {
23
- if (ruleset.rules[i] instanceof tree.Import) {
24
- Array.prototype.splice
25
- .apply(ruleset.rules, [i, 1].concat(ruleset.rules[i].eval(env)));
26
- }
27
- }
73
+ ruleset.evalImports(env);
28
74
  }
29
75
 
30
76
  // Store the frames around mixin definitions,
31
77
  // so they can be evaluated like closures when the time comes.
32
- for (var i = 0; i < ruleset.rules.length; i++) {
33
- if (ruleset.rules[i] instanceof tree.mixin.Definition) {
34
- ruleset.rules[i].frames = env.frames.slice(0);
78
+ var rsRules = ruleset.rules, rsRuleCnt = rsRules ? rsRules.length : 0;
79
+ for (i = 0; i < rsRuleCnt; i++) {
80
+ if (rsRules[i] instanceof tree.mixin.Definition || rsRules[i] instanceof tree.DetachedRuleset) {
81
+ rsRules[i] = rsRules[i].eval(env);
35
82
  }
36
83
  }
37
84
 
85
+ var mediaBlockCount = (env.mediaBlocks && env.mediaBlocks.length) || 0;
86
+
38
87
  // Evaluate mixin calls.
39
- for (var i = 0; i < ruleset.rules.length; i++) {
40
- if (ruleset.rules[i] instanceof tree.mixin.Call) {
41
- Array.prototype.splice
42
- .apply(ruleset.rules, [i, 1].concat(ruleset.rules[i].eval(env)));
88
+ for (i = 0; i < rsRuleCnt; i++) {
89
+ if (rsRules[i] instanceof tree.mixin.Call) {
90
+ /*jshint loopfunc:true */
91
+ rules = rsRules[i].eval(env).filter(function(r) {
92
+ if ((r instanceof tree.Rule) && r.variable) {
93
+ // do not pollute the scope if the variable is
94
+ // already there. consider returning false here
95
+ // but we need a way to "return" variable from mixins
96
+ return !(ruleset.variable(r.name));
97
+ }
98
+ return true;
99
+ });
100
+ rsRules.splice.apply(rsRules, [i, 1].concat(rules));
101
+ rsRuleCnt += rules.length - 1;
102
+ i += rules.length-1;
103
+ ruleset.resetCache();
104
+ } else if (rsRules[i] instanceof tree.RulesetCall) {
105
+ /*jshint loopfunc:true */
106
+ rules = rsRules[i].eval(env).rules.filter(function(r) {
107
+ if ((r instanceof tree.Rule) && r.variable) {
108
+ // do not pollute the scope at all
109
+ return false;
110
+ }
111
+ return true;
112
+ });
113
+ rsRules.splice.apply(rsRules, [i, 1].concat(rules));
114
+ rsRuleCnt += rules.length - 1;
115
+ i += rules.length-1;
116
+ ruleset.resetCache();
43
117
  }
44
118
  }
45
119
 
46
120
  // Evaluate everything else
47
- for (var i = 0, rule; i < ruleset.rules.length; i++) {
48
- rule = ruleset.rules[i];
121
+ for (i = 0; i < rsRules.length; i++) {
122
+ rule = rsRules[i];
123
+ if (! (rule instanceof tree.mixin.Definition || rule instanceof tree.DetachedRuleset)) {
124
+ rsRules[i] = rule = rule.eval ? rule.eval(env) : rule;
125
+ }
126
+ }
127
+
128
+ // Evaluate everything else
129
+ for (i = 0; i < rsRules.length; i++) {
130
+ rule = rsRules[i];
131
+ // for rulesets, check if it is a css guard and can be removed
132
+ if (rule instanceof tree.Ruleset && rule.selectors && rule.selectors.length === 1) {
133
+ // check if it can be folded in (e.g. & where)
134
+ if (rule.selectors[0].isJustParentSelector()) {
135
+ rsRules.splice(i--, 1);
49
136
 
50
- if (! (rule instanceof tree.mixin.Definition)) {
51
- ruleset.rules[i] = rule.eval ? rule.eval(env) : rule;
137
+ for(var j = 0; j < rule.rules.length; j++) {
138
+ subRule = rule.rules[j];
139
+ if (!(subRule instanceof tree.Rule) || !subRule.variable) {
140
+ rsRules.splice(++i, 0, subRule);
141
+ }
142
+ }
143
+ }
52
144
  }
53
145
  }
54
146
 
55
147
  // Pop the stack
56
- env.frames.shift();
148
+ envFrames.shift();
149
+ envSelectors.shift();
150
+
151
+ if (env.mediaBlocks) {
152
+ for (i = mediaBlockCount; i < env.mediaBlocks.length; i++) {
153
+ env.mediaBlocks[i].bubbleSelectors(selectors);
154
+ }
155
+ }
57
156
 
58
157
  return ruleset;
59
158
  },
60
- match: function (args) {
159
+ evalImports: function(env) {
160
+ var rules = this.rules, i, importRules;
161
+ if (!rules) { return; }
162
+
163
+ for (i = 0; i < rules.length; i++) {
164
+ if (rules[i] instanceof tree.Import) {
165
+ importRules = rules[i].eval(env);
166
+ if (importRules && importRules.length) {
167
+ rules.splice.apply(rules, [i, 1].concat(importRules));
168
+ i+= importRules.length-1;
169
+ } else {
170
+ rules.splice(i, 1, importRules);
171
+ }
172
+ this.resetCache();
173
+ }
174
+ }
175
+ },
176
+ makeImportant: function() {
177
+ return new tree.Ruleset(this.selectors, this.rules.map(function (r) {
178
+ if (r.makeImportant) {
179
+ return r.makeImportant();
180
+ } else {
181
+ return r;
182
+ }
183
+ }), this.strictImports);
184
+ },
185
+ matchArgs: function (args) {
61
186
  return !args || args.length === 0;
62
187
  },
188
+ // lets you call a css selector with a guard
189
+ matchCondition: function (args, env) {
190
+ var lastSelector = this.selectors[this.selectors.length-1];
191
+ if (!lastSelector.evaldCondition) {
192
+ return false;
193
+ }
194
+ if (lastSelector.condition &&
195
+ !lastSelector.condition.eval(
196
+ new(tree.evalEnv)(env,
197
+ env.frames))) {
198
+ return false;
199
+ }
200
+ return true;
201
+ },
202
+ resetCache: function () {
203
+ this._rulesets = null;
204
+ this._variables = null;
205
+ this._lookups = {};
206
+ },
63
207
  variables: function () {
64
- if (this._variables) { return this._variables }
65
- else {
66
- return this._variables = this.rules.reduce(function (hash, r) {
208
+ if (!this._variables) {
209
+ this._variables = !this.rules ? {} : this.rules.reduce(function (hash, r) {
67
210
  if (r instanceof tree.Rule && r.variable === true) {
68
211
  hash[r.name] = r;
69
212
  }
70
213
  return hash;
71
214
  }, {});
72
215
  }
216
+ return this._variables;
73
217
  },
74
218
  variable: function (name) {
75
219
  return this.variables()[name];
76
220
  },
77
221
  rulesets: function () {
78
- if (this._rulesets) { return this._rulesets }
79
- else {
80
- return this._rulesets = this.rules.filter(function (r) {
81
- return (r instanceof tree.Ruleset) || (r instanceof tree.mixin.Definition);
82
- });
222
+ if (!this.rules) { return null; }
223
+
224
+ var _Ruleset = tree.Ruleset, _MixinDefinition = tree.mixin.Definition,
225
+ filtRules = [], rules = this.rules, cnt = rules.length,
226
+ i, rule;
227
+
228
+ for (i = 0; i < cnt; i++) {
229
+ rule = rules[i];
230
+ if ((rule instanceof _Ruleset) || (rule instanceof _MixinDefinition)) {
231
+ filtRules.push(rule);
232
+ }
83
233
  }
234
+
235
+ return filtRules;
236
+ },
237
+ prependRule: function (rule) {
238
+ var rules = this.rules;
239
+ if (rules) { rules.unshift(rule); } else { this.rules = [ rule ]; }
84
240
  },
85
241
  find: function (selector, self) {
86
242
  self = self || this;
87
- var rules = [], rule, match,
243
+ var rules = [], match,
88
244
  key = selector.toCSS();
89
245
 
90
- if (key in this._lookups) { return this._lookups[key] }
246
+ if (key in this._lookups) { return this._lookups[key]; }
91
247
 
92
248
  this.rulesets().forEach(function (rule) {
93
249
  if (rule !== self) {
94
250
  for (var j = 0; j < rule.selectors.length; j++) {
95
- if (match = selector.match(rule.selectors[j])) {
96
- if (selector.elements.length > rule.selectors[j].elements.length) {
251
+ match = selector.match(rule.selectors[j]);
252
+ if (match) {
253
+ if (selector.elements.length > match) {
97
254
  Array.prototype.push.apply(rules, rule.find(
98
- new(tree.Selector)(selector.elements.slice(1)), self));
255
+ new(tree.Selector)(selector.elements.slice(match)), self));
99
256
  } else {
100
257
  rules.push(rule);
101
258
  }
@@ -104,76 +261,122 @@ tree.Ruleset.prototype = {
104
261
  }
105
262
  }
106
263
  });
107
- return this._lookups[key] = rules;
108
- },
109
- //
110
- // Entry point for code generation
111
- //
112
- // `context` holds an array of arrays.
113
- //
114
- toCSS: function (context, env) {
115
- var css = [], // The CSS output
116
- rules = [], // node.Rule instances
117
- rulesets = [], // node.Ruleset instances
118
- paths = [], // Current selectors
119
- selector, // The fully rendered selector
120
- rule;
121
-
122
- if (! this.root) {
123
- if (context.length === 0) {
124
- paths = this.selectors.map(function (s) { return [s] });
264
+ this._lookups[key] = rules;
265
+ return rules;
266
+ },
267
+ genCSS: function (env, output) {
268
+ var i, j,
269
+ ruleNodes = [],
270
+ rulesetNodes = [],
271
+ rulesetNodeCnt,
272
+ debugInfo, // Line number debugging
273
+ rule,
274
+ path;
275
+
276
+ env.tabLevel = (env.tabLevel || 0);
277
+
278
+ if (!this.root) {
279
+ env.tabLevel++;
280
+ }
281
+
282
+ var tabRuleStr = env.compress ? '' : Array(env.tabLevel + 1).join(" "),
283
+ tabSetStr = env.compress ? '' : Array(env.tabLevel).join(" "),
284
+ sep;
285
+
286
+ for (i = 0; i < this.rules.length; i++) {
287
+ rule = this.rules[i];
288
+ if (rule.rules || (rule instanceof tree.Media) || rule instanceof tree.Directive || (this.root && rule instanceof tree.Comment)) {
289
+ rulesetNodes.push(rule);
125
290
  } else {
126
- this.joinSelectors(paths, context, this.selectors);
291
+ ruleNodes.push(rule);
127
292
  }
128
293
  }
129
294
 
130
- // Compile rules and rulesets
131
- for (var i = 0; i < this.rules.length; i++) {
132
- rule = this.rules[i];
295
+ // If this is the root node, we don't render
296
+ // a selector, or {}.
297
+ if (!this.root) {
298
+ debugInfo = tree.debugInfo(env, this, tabSetStr);
133
299
 
134
- if (rule.rules || (rule instanceof tree.Directive) || (rule instanceof tree.Media)) {
135
- rulesets.push(rule.toCSS(paths, env));
136
- } else if (rule instanceof tree.Comment) {
137
- if (!rule.silent) {
138
- if (this.root) {
139
- rulesets.push(rule.toCSS(env));
140
- } else {
141
- rules.push(rule.toCSS(env));
142
- }
143
- }
144
- } else {
145
- if (rule.toCSS && !rule.variable) {
146
- rules.push(rule.toCSS(env));
147
- } else if (rule.value && !rule.variable) {
148
- rules.push(rule.value.toString());
300
+ if (debugInfo) {
301
+ output.add(debugInfo);
302
+ output.add(tabSetStr);
303
+ }
304
+
305
+ var paths = this.paths, pathCnt = paths.length,
306
+ pathSubCnt;
307
+
308
+ sep = env.compress ? ',' : (',\n' + tabSetStr);
309
+
310
+ for (i = 0; i < pathCnt; i++) {
311
+ path = paths[i];
312
+ if (!(pathSubCnt = path.length)) { continue; }
313
+ if (i > 0) { output.add(sep); }
314
+
315
+ env.firstSelector = true;
316
+ path[0].genCSS(env, output);
317
+
318
+ env.firstSelector = false;
319
+ for (j = 1; j < pathSubCnt; j++) {
320
+ path[j].genCSS(env, output);
149
321
  }
150
322
  }
151
- }
152
323
 
153
- rulesets = rulesets.join('');
324
+ output.add((env.compress ? '{' : ' {\n') + tabRuleStr);
325
+ }
154
326
 
155
- // If this is the root node, we don't render
156
- // a selector, or {}.
157
- // Otherwise, only output if this ruleset has rules.
158
- if (this.root) {
159
- css.push(rules.join(env.compress ? '' : '\n'));
160
- } else {
161
- if (rules.length > 0) {
162
- selector = paths.map(function (p) {
163
- return p.map(function (s) {
164
- return s.toCSS(env);
165
- }).join('').trim();
166
- }).join( env.compress ? ',' : ',\n');
327
+ // Compile rules and rulesets
328
+ for (i = 0; i < ruleNodes.length; i++) {
329
+ rule = ruleNodes[i];
330
+
331
+ // @page{ directive ends up with root elements inside it, a mix of rules and rulesets
332
+ // In this instance we do not know whether it is the last property
333
+ if (i + 1 === ruleNodes.length && (!this.root || rulesetNodes.length === 0 || this.firstRoot)) {
334
+ env.lastRule = true;
335
+ }
336
+
337
+ if (rule.genCSS) {
338
+ rule.genCSS(env, output);
339
+ } else if (rule.value) {
340
+ output.add(rule.value.toString());
341
+ }
167
342
 
168
- css.push(selector,
169
- (env.compress ? '{' : ' {\n ') +
170
- rules.join(env.compress ? '' : '\n ') +
171
- (env.compress ? '}' : '\n}\n'));
343
+ if (!env.lastRule) {
344
+ output.add(env.compress ? '' : ('\n' + tabRuleStr));
345
+ } else {
346
+ env.lastRule = false;
347
+ }
348
+ }
349
+
350
+ if (!this.root) {
351
+ output.add((env.compress ? '}' : '\n' + tabSetStr + '}'));
352
+ env.tabLevel--;
353
+ }
354
+
355
+ sep = (env.compress ? "" : "\n") + (this.root ? tabRuleStr : tabSetStr);
356
+ rulesetNodeCnt = rulesetNodes.length;
357
+ if (rulesetNodeCnt) {
358
+ if (ruleNodes.length && sep) { output.add(sep); }
359
+ rulesetNodes[0].genCSS(env, output);
360
+ for (i = 1; i < rulesetNodeCnt; i++) {
361
+ if (sep) { output.add(sep); }
362
+ rulesetNodes[i].genCSS(env, output);
172
363
  }
173
364
  }
174
- css.push(rulesets);
175
365
 
176
- return css.join('') + (env.compress ? '\n' : '');
366
+ if (!output.isEmpty() && !env.compress && this.firstRoot) {
367
+ output.add('\n');
368
+ }
369
+ },
370
+
371
+ toCSS: tree.toCSS,
372
+
373
+ markReferenced: function () {
374
+ if (!this.selectors) {
375
+ return;
376
+ }
377
+ for (var s = 0; s < this.selectors.length; s++) {
378
+ this.selectors[s].markReferenced();
379
+ }
177
380
  },
178
381
 
179
382
  joinSelectors: function (paths, context, selectors) {
@@ -183,33 +386,168 @@ tree.Ruleset.prototype = {
183
386
  },
184
387
 
185
388
  joinSelector: function (paths, context, selector) {
186
- var before = [], after = [], beforeElements = [],
187
- afterElements = [], hasParentSelector = false, el;
188
389
 
189
- for (var i = 0; i < selector.elements.length; i++) {
390
+ var i, j, k,
391
+ hasParentSelector, newSelectors, el, sel, parentSel,
392
+ newSelectorPath, afterParentJoin, newJoinedSelector,
393
+ newJoinedSelectorEmpty, lastSelector, currentElements,
394
+ selectorsMultiplied;
395
+
396
+ for (i = 0; i < selector.elements.length; i++) {
190
397
  el = selector.elements[i];
191
- if (el.combinator.value.charAt(0) === '&') {
398
+ if (el.value === '&') {
192
399
  hasParentSelector = true;
193
400
  }
194
- if (hasParentSelector) afterElements.push(el);
195
- else beforeElements.push(el);
401
+ }
402
+
403
+ if (!hasParentSelector) {
404
+ if (context.length > 0) {
405
+ for (i = 0; i < context.length; i++) {
406
+ paths.push(context[i].concat(selector));
407
+ }
408
+ }
409
+ else {
410
+ paths.push([selector]);
411
+ }
412
+ return;
413
+ }
414
+
415
+ // The paths are [[Selector]]
416
+ // The first list is a list of comma seperated selectors
417
+ // The inner list is a list of inheritance seperated selectors
418
+ // e.g.
419
+ // .a, .b {
420
+ // .c {
421
+ // }
422
+ // }
423
+ // == [[.a] [.c]] [[.b] [.c]]
424
+ //
425
+
426
+ // the elements from the current selector so far
427
+ currentElements = [];
428
+ // the current list of new selectors to add to the path.
429
+ // We will build it up. We initiate it with one empty selector as we "multiply" the new selectors
430
+ // by the parents
431
+ newSelectors = [[]];
432
+
433
+ for (i = 0; i < selector.elements.length; i++) {
434
+ el = selector.elements[i];
435
+ // non parent reference elements just get added
436
+ if (el.value !== "&") {
437
+ currentElements.push(el);
438
+ } else {
439
+ // the new list of selectors to add
440
+ selectorsMultiplied = [];
441
+
442
+ // merge the current list of non parent selector elements
443
+ // on to the current list of selectors to add
444
+ if (currentElements.length > 0) {
445
+ this.mergeElementsOnToSelectors(currentElements, newSelectors);
446
+ }
447
+
448
+ // loop through our current selectors
449
+ for (j = 0; j < newSelectors.length; j++) {
450
+ sel = newSelectors[j];
451
+ // if we don't have any parent paths, the & might be in a mixin so that it can be used
452
+ // whether there are parents or not
453
+ if (context.length === 0) {
454
+ // the combinator used on el should now be applied to the next element instead so that
455
+ // it is not lost
456
+ if (sel.length > 0) {
457
+ sel[0].elements = sel[0].elements.slice(0);
458
+ sel[0].elements.push(new(tree.Element)(el.combinator, '', el.index, el.currentFileInfo));
459
+ }
460
+ selectorsMultiplied.push(sel);
461
+ }
462
+ else {
463
+ // and the parent selectors
464
+ for (k = 0; k < context.length; k++) {
465
+ parentSel = context[k];
466
+ // We need to put the current selectors
467
+ // then join the last selector's elements on to the parents selectors
468
+
469
+ // our new selector path
470
+ newSelectorPath = [];
471
+ // selectors from the parent after the join
472
+ afterParentJoin = [];
473
+ newJoinedSelectorEmpty = true;
474
+
475
+ //construct the joined selector - if & is the first thing this will be empty,
476
+ // if not newJoinedSelector will be the last set of elements in the selector
477
+ if (sel.length > 0) {
478
+ newSelectorPath = sel.slice(0);
479
+ lastSelector = newSelectorPath.pop();
480
+ newJoinedSelector = selector.createDerived(lastSelector.elements.slice(0));
481
+ newJoinedSelectorEmpty = false;
482
+ }
483
+ else {
484
+ newJoinedSelector = selector.createDerived([]);
485
+ }
486
+
487
+ //put together the parent selectors after the join
488
+ if (parentSel.length > 1) {
489
+ afterParentJoin = afterParentJoin.concat(parentSel.slice(1));
490
+ }
491
+
492
+ if (parentSel.length > 0) {
493
+ newJoinedSelectorEmpty = false;
494
+
495
+ // join the elements so far with the first part of the parent
496
+ newJoinedSelector.elements.push(new(tree.Element)(el.combinator, parentSel[0].elements[0].value, el.index, el.currentFileInfo));
497
+ newJoinedSelector.elements = newJoinedSelector.elements.concat(parentSel[0].elements.slice(1));
498
+ }
499
+
500
+ if (!newJoinedSelectorEmpty) {
501
+ // now add the joined selector
502
+ newSelectorPath.push(newJoinedSelector);
503
+ }
504
+
505
+ // and the rest of the parent
506
+ newSelectorPath = newSelectorPath.concat(afterParentJoin);
507
+
508
+ // add that to our new set of selectors
509
+ selectorsMultiplied.push(newSelectorPath);
510
+ }
511
+ }
512
+ }
513
+
514
+ // our new selectors has been multiplied, so reset the state
515
+ newSelectors = selectorsMultiplied;
516
+ currentElements = [];
517
+ }
196
518
  }
197
519
 
198
- if (! hasParentSelector) {
199
- afterElements = beforeElements;
200
- beforeElements = [];
520
+ // if we have any elements left over (e.g. .a& .b == .b)
521
+ // add them on to all the current selectors
522
+ if (currentElements.length > 0) {
523
+ this.mergeElementsOnToSelectors(currentElements, newSelectors);
201
524
  }
202
525
 
203
- if (beforeElements.length > 0) {
204
- before.push(new(tree.Selector)(beforeElements));
526
+ for (i = 0; i < newSelectors.length; i++) {
527
+ if (newSelectors[i].length > 0) {
528
+ paths.push(newSelectors[i]);
529
+ }
205
530
  }
531
+ },
532
+
533
+ mergeElementsOnToSelectors: function(elements, selectors) {
534
+ var i, sel;
206
535
 
207
- if (afterElements.length > 0) {
208
- after.push(new(tree.Selector)(afterElements));
536
+ if (selectors.length === 0) {
537
+ selectors.push([ new(tree.Selector)(elements) ]);
538
+ return;
209
539
  }
210
540
 
211
- for (var c = 0; c < context.length; c++) {
212
- paths.push(before.concat(context[c]).concat(after));
541
+ for (i = 0; i < selectors.length; i++) {
542
+ sel = selectors[i];
543
+
544
+ // if the previous thing in sel is a parent this needs to join on to it
545
+ if (sel.length > 0) {
546
+ sel[sel.length - 1] = sel[sel.length - 1].createDerived(sel[sel.length - 1].elements.concat(elements));
547
+ }
548
+ else {
549
+ sel.push(new(tree.Selector)(elements));
550
+ }
213
551
  }
214
552
  }
215
553
  };