less 2.2.2 → 2.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Changelog.md +17 -0
- data/Gemfile +7 -3
- data/README.md +29 -13
- data/bin/lessc +3 -1
- data/less.gemspec +2 -6
- data/lib/less/defaults.rb +3 -3
- data/lib/less/java_script/rhino_context.rb +17 -27
- data/lib/less/java_script/v8_context.rb +11 -11
- data/lib/less/js/.gitattributes +10 -0
- data/lib/less/js/.gitignore +24 -0
- data/lib/less/js/.jshintrc +11 -0
- data/lib/less/js/.npmignore +1 -0
- data/lib/less/js/.travis.yml +8 -0
- data/lib/less/js/CHANGELOG.md +299 -0
- data/lib/less/js/CONTRIBUTING.md +50 -0
- data/lib/less/js/Gruntfile.js +298 -0
- data/lib/less/js/README.md +43 -12
- data/lib/less/js/benchmark/benchmark.less +194 -194
- data/lib/less/js/benchmark/less-benchmark.js +9 -10
- data/lib/less/js/bin/lessc +310 -37
- data/lib/less/js/bower.json +18 -0
- data/lib/less/js/build/README.md +51 -0
- data/lib/less/js/build/amd.js +1 -1
- data/lib/less/js/build/browser-header.js +4 -0
- data/lib/less/js/build/build.yml +162 -0
- data/lib/less/js/build/require-rhino.js +7 -2
- data/lib/less/js/build/rhino-header.js +4 -0
- data/lib/less/js/build/rhino-modules.js +131 -0
- data/lib/less/js/build/tasks/.gitkeep +1 -0
- data/lib/less/js/build.gradle +347 -0
- data/lib/less/js/dist/less-1.3.1.js +4011 -0
- data/lib/less/js/dist/less-1.3.1.min.js +9 -0
- data/lib/less/js/dist/less-1.3.2.js +4401 -0
- data/lib/less/js/dist/less-1.3.2.min.js +9 -0
- data/lib/less/js/dist/less-1.3.3.js +4413 -0
- data/lib/less/js/dist/less-1.3.3.min.js +9 -0
- data/lib/less/js/dist/less-1.4.0-beta.js +5830 -0
- data/lib/less/js/dist/less-1.4.0-beta.min.js +11 -0
- data/lib/less/js/dist/less-1.4.0.js +5830 -0
- data/lib/less/js/dist/less-1.4.0.min.js +11 -0
- data/lib/less/js/dist/less-1.4.1.js +5837 -0
- data/lib/less/js/dist/less-1.4.1.min.js +11 -0
- data/lib/less/js/dist/less-1.4.2.js +5837 -0
- data/lib/less/js/dist/less-1.4.2.min.js +11 -0
- data/lib/less/js/dist/less-1.5.0.js +6914 -0
- data/lib/less/js/dist/less-1.5.0.min.js +13 -0
- data/lib/less/js/dist/less-1.5.1.js +6941 -0
- data/lib/less/js/dist/less-1.5.1.min.js +13 -0
- data/lib/less/js/dist/less-1.6.0.js +7485 -0
- data/lib/less/js/dist/less-1.6.0.min.js +16 -0
- data/lib/less/js/dist/less-1.6.1.js +7513 -0
- data/lib/less/js/dist/less-1.6.1.min.js +16 -0
- data/lib/less/js/dist/less-1.6.2.js +7624 -0
- data/lib/less/js/dist/less-1.6.2.min.js +16 -0
- data/lib/less/js/dist/less-1.6.3.js +7627 -0
- data/lib/less/js/dist/less-1.6.3.min.js +16 -0
- data/lib/less/js/dist/less-1.7.0.js +7921 -0
- data/lib/less/js/dist/less-1.7.0.min.js +16 -0
- data/lib/less/js/dist/less-rhino-1.3.1.js +3725 -0
- data/lib/less/js/dist/less-rhino-1.3.2.js +3990 -0
- data/lib/less/js/dist/less-rhino-1.3.3.js +4002 -0
- data/lib/less/js/dist/less-rhino-1.4.0.js +4273 -0
- data/lib/less/js/dist/less-rhino-1.5.1.js +6831 -0
- data/lib/less/js/dist/less-rhino-1.6.2.js +9017 -0
- data/lib/less/js/dist/less-rhino-1.6.3.js +9020 -0
- data/lib/less/js/dist/less-rhino-1.7.0.js +9301 -0
- data/lib/less/js/dist/lessc-rhino-1.6.2.js +449 -0
- data/lib/less/js/dist/lessc-rhino-1.6.3.js +449 -0
- data/lib/less/js/dist/lessc-rhino-1.7.0.js +449 -0
- data/lib/less/js/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/lib/less/js/gradle/wrapper/gradle-wrapper.properties +6 -0
- data/lib/less/js/gradlew +164 -0
- data/lib/less/js/gradlew.bat +90 -0
- data/lib/less/js/lib/less/browser.js +547 -250
- data/lib/less/js/lib/less/encoder.js +4 -0
- data/lib/less/js/lib/less/env.js +136 -0
- data/lib/less/js/lib/less/extend-visitor.js +416 -0
- data/lib/less/js/lib/less/functions.js +576 -36
- data/lib/less/js/lib/less/import-visitor.js +142 -0
- data/lib/less/js/lib/less/index.js +187 -83
- data/lib/less/js/lib/less/join-selector-visitor.js +44 -0
- data/lib/less/js/lib/less/lessc_helper.js +82 -0
- data/lib/less/js/lib/less/parser.js +1286 -523
- data/lib/less/js/lib/less/rhino.js +415 -29
- data/lib/less/js/lib/less/source-map-output.js +141 -0
- data/lib/less/js/lib/less/to-css-visitor.js +240 -0
- data/lib/less/js/lib/less/tree/alpha.js +17 -5
- data/lib/less/js/lib/less/tree/anonymous.js +25 -4
- data/lib/less/js/lib/less/tree/assignment.js +17 -5
- data/lib/less/js/lib/less/tree/call.js +36 -13
- data/lib/less/js/lib/less/tree/color.js +119 -31
- data/lib/less/js/lib/less/tree/comment.js +18 -4
- data/lib/less/js/lib/less/tree/condition.js +35 -28
- data/lib/less/js/lib/less/tree/detached-ruleset.js +20 -0
- data/lib/less/js/lib/less/tree/dimension.js +291 -16
- data/lib/less/js/lib/less/tree/directive.js +56 -22
- data/lib/less/js/lib/less/tree/element.js +78 -17
- data/lib/less/js/lib/less/tree/expression.js +39 -8
- data/lib/less/js/lib/less/tree/extend.js +53 -0
- data/lib/less/js/lib/less/tree/import.js +81 -36
- data/lib/less/js/lib/less/tree/javascript.js +17 -10
- data/lib/less/js/lib/less/tree/keyword.js +8 -3
- data/lib/less/js/lib/less/tree/media.js +70 -27
- data/lib/less/js/lib/less/tree/mixin.js +250 -70
- data/lib/less/js/lib/less/tree/negative.js +24 -0
- data/lib/less/js/lib/less/tree/operation.js +38 -13
- data/lib/less/js/lib/less/tree/paren.js +9 -2
- data/lib/less/js/lib/less/tree/quoted.js +29 -10
- data/lib/less/js/lib/less/tree/rule.js +77 -29
- data/lib/less/js/lib/less/tree/ruleset-call.js +16 -0
- data/lib/less/js/lib/less/tree/ruleset.js +445 -107
- data/lib/less/js/lib/less/tree/selector.js +117 -30
- data/lib/less/js/lib/less/tree/unicode-descriptor.js +15 -0
- data/lib/less/js/lib/less/tree/url.js +43 -15
- data/lib/less/js/lib/less/tree/value.js +16 -6
- data/lib/less/js/lib/less/tree/variable.js +26 -8
- data/lib/less/js/lib/less/tree.js +82 -2
- data/lib/less/js/lib/less/visitor.js +146 -0
- data/lib/less/js/lib/source-map/source-map-0.1.31.js +1933 -0
- data/lib/less/js/lib/source-map/source-map-footer.js +4 -0
- data/lib/less/js/lib/source-map/source-map-header.js +3 -0
- data/lib/less/js/package.json +86 -11
- data/lib/less/js/test/browser/common.js +201 -0
- data/lib/less/js/test/browser/css/global-vars/simple.css +3 -0
- data/lib/less/js/test/browser/css/modify-vars/simple.css +8 -0
- data/lib/less/js/test/browser/css/postProcessor/postProcessor.css +4 -0
- data/lib/less/js/test/browser/css/relative-urls/urls.css +35 -0
- data/lib/less/js/test/browser/css/rootpath/urls.css +35 -0
- data/lib/less/js/test/browser/css/rootpath-relative/urls.css +35 -0
- data/lib/less/js/test/browser/css/urls.css +53 -0
- data/lib/less/js/test/browser/es5.js +27 -0
- data/lib/less/js/test/browser/jasmine-html.js +681 -0
- data/lib/less/js/test/browser/jasmine.css +82 -0
- data/lib/less/js/test/browser/jasmine.js +2600 -0
- data/lib/less/js/test/browser/less/console-errors/test-error.less +3 -0
- data/lib/less/js/test/browser/less/console-errors/test-error.txt +2 -0
- data/lib/less/js/test/browser/less/global-vars/simple.less +3 -0
- data/lib/less/js/test/browser/less/imports/urls.less +4 -0
- data/lib/less/js/test/browser/less/imports/urls2.less +4 -0
- data/lib/less/js/test/browser/less/modify-vars/imports/simple2.less +4 -0
- data/lib/less/js/test/browser/less/modify-vars/simple.less +8 -0
- data/lib/less/js/test/browser/less/postProcessor/postProcessor.less +4 -0
- data/lib/less/js/test/browser/less/relative-urls/urls.less +33 -0
- data/lib/less/js/test/browser/less/rootpath/urls.less +33 -0
- data/lib/less/js/test/browser/less/rootpath-relative/urls.less +33 -0
- data/lib/less/js/test/browser/less/urls.less +57 -0
- data/lib/less/js/test/browser/phantom-runner.js +150 -0
- data/lib/less/js/test/browser/runner-browser-options.js +42 -0
- data/lib/less/js/test/browser/runner-browser-spec.js +12 -0
- data/lib/less/js/test/browser/runner-console-errors.js +5 -0
- data/lib/less/js/test/browser/runner-errors-options.js +5 -0
- data/lib/less/js/test/browser/runner-errors-spec.js +4 -0
- data/lib/less/js/test/browser/runner-global-vars-options.js +4 -0
- data/lib/less/js/test/browser/runner-global-vars-spec.js +3 -0
- data/lib/less/js/test/browser/runner-legacy-options.js +4 -0
- data/lib/less/js/test/browser/runner-legacy-spec.js +3 -0
- data/lib/less/js/test/browser/runner-main-options.js +15 -0
- data/lib/less/js/test/browser/runner-main-spec.js +3 -0
- data/lib/less/js/test/browser/runner-modify-vars-options.js +2 -0
- data/lib/less/js/test/browser/runner-modify-vars-spec.js +43 -0
- data/lib/less/js/test/browser/runner-no-js-errors-options.js +4 -0
- data/lib/less/js/test/browser/runner-no-js-errors-spec.js +4 -0
- data/lib/less/js/test/browser/runner-postProcessor-options.js +4 -0
- data/lib/less/js/test/browser/runner-postProcessor.js +3 -0
- data/lib/less/js/test/browser/runner-production-options.js +3 -0
- data/lib/less/js/test/browser/runner-production-spec.js +5 -0
- data/lib/less/js/test/browser/runner-relative-urls-options.js +3 -0
- data/lib/less/js/test/browser/runner-relative-urls-spec.js +3 -0
- data/lib/less/js/test/browser/runner-rootpath-options.js +3 -0
- data/lib/less/js/test/browser/runner-rootpath-relative-options.js +4 -0
- data/lib/less/js/test/browser/runner-rootpath-relative-spec.js +3 -0
- data/lib/less/js/test/browser/runner-rootpath-spec.js +3 -0
- data/lib/less/js/test/browser/test-runner-template.tmpl +47 -0
- data/lib/less/js/test/css/charsets.css +1 -0
- data/lib/less/js/test/css/colors.css +29 -0
- data/lib/less/js/test/css/comments.css +15 -2
- data/lib/less/js/test/css/compression/compression.css +3 -0
- data/lib/less/js/test/css/css-3.css +73 -2
- data/lib/less/js/test/css/css-escapes.css +4 -0
- data/lib/less/js/test/css/css-guards.css +37 -0
- data/lib/less/js/test/css/css.css +20 -14
- data/lib/less/js/test/css/debug/linenumbers-all.css +49 -0
- data/lib/less/js/test/css/debug/linenumbers-comments.css +40 -0
- data/lib/less/js/test/css/debug/linenumbers-mediaquery.css +40 -0
- data/lib/less/js/test/css/detached-rulesets.css +71 -0
- data/lib/less/js/test/css/empty.css +0 -0
- data/lib/less/js/test/css/extend-chaining.css +81 -0
- data/lib/less/js/test/css/extend-clearfix.css +19 -0
- data/lib/less/js/test/css/extend-exact.css +37 -0
- data/lib/less/js/test/css/extend-media.css +24 -0
- data/lib/less/js/test/css/extend-nest.css +57 -0
- data/lib/less/js/test/css/extend-selector.css +80 -0
- data/lib/less/js/test/css/extend.css +76 -0
- data/lib/less/js/test/css/extract-and-length.css +133 -0
- data/lib/less/js/test/css/functions.css +117 -2
- data/lib/less/js/test/css/globalVars/extended.css +12 -0
- data/lib/less/js/test/css/globalVars/simple.css +6 -0
- data/lib/less/js/test/css/ie-filters.css +7 -3
- data/lib/less/js/test/css/import-inline.css +5 -0
- data/lib/less/js/test/css/import-interpolation.css +6 -0
- data/lib/less/js/test/css/import-once.css +15 -0
- data/lib/less/js/test/css/import-reference.css +68 -0
- data/lib/less/js/test/css/import.css +23 -10
- data/lib/less/js/test/css/javascript.css +3 -2
- data/lib/less/js/test/css/legacy/legacy.css +7 -0
- data/lib/less/js/test/css/media.css +141 -1
- data/lib/less/js/test/css/merge.css +34 -0
- data/lib/less/js/test/css/mixins-args.css +41 -4
- data/lib/less/js/test/css/mixins-guards-default-func.css +129 -0
- data/lib/less/js/test/css/mixins-guards.css +24 -0
- data/lib/less/js/test/css/mixins-important.css +28 -0
- data/lib/less/js/test/css/mixins-interpolated.css +39 -0
- data/lib/less/js/test/css/mixins-named-args.css +27 -0
- data/lib/less/js/test/css/mixins-pattern.css +4 -0
- data/lib/less/js/test/css/mixins.css +70 -0
- data/lib/less/js/test/css/modifyVars/extended.css +9 -0
- data/lib/less/js/test/css/no-output.css +0 -0
- data/lib/less/js/test/css/parens.css +21 -5
- data/lib/less/js/test/css/property-name-interp.css +20 -0
- data/lib/less/js/test/css/scope.css +23 -0
- data/lib/less/js/test/css/selectors.css +84 -0
- data/lib/less/js/test/css/static-urls/urls.css +45 -0
- data/lib/less/js/test/css/strings.css +5 -2
- data/lib/less/js/test/css/url-args/urls.css +56 -0
- data/lib/less/js/test/css/urls.css +71 -0
- data/lib/less/js/test/css/variables-in-at-rules.css +18 -0
- data/lib/less/js/test/css/variables.css +22 -4
- data/lib/less/js/test/css/whitespace.css +4 -0
- data/lib/less/js/test/data/data-uri-fail.png +0 -0
- data/lib/less/js/test/data/image.jpg +1 -0
- data/lib/less/js/test/data/page.html +1 -0
- data/lib/less/js/test/index.js +45 -0
- data/lib/less/js/test/less/charsets.less +3 -0
- data/lib/less/js/test/less/colors.less +37 -4
- data/lib/less/js/test/less/comments.less +21 -3
- data/lib/less/js/test/less/compression/compression.less +36 -0
- data/lib/less/js/test/less/css-3.less +70 -6
- data/lib/less/js/test/less/css-escapes.less +6 -1
- data/lib/less/js/test/less/css-guards.less +102 -0
- data/lib/less/js/test/less/css.less +23 -15
- data/lib/less/js/test/less/debug/import/test.less +25 -0
- data/lib/less/js/test/less/debug/linenumbers.less +33 -0
- data/lib/less/js/test/less/detached-rulesets.less +103 -0
- data/lib/less/js/test/less/empty.less +0 -0
- data/lib/less/js/test/less/errors/add-mixed-units.less +3 -0
- data/lib/less/js/test/less/errors/add-mixed-units.txt +4 -0
- data/lib/less/js/test/less/errors/add-mixed-units2.less +3 -0
- data/lib/less/js/test/less/errors/add-mixed-units2.txt +4 -0
- data/lib/less/js/test/less/errors/at-rules-undefined-var.less +4 -0
- data/lib/less/js/test/less/errors/at-rules-undefined-var.txt +4 -0
- data/lib/less/js/test/less/errors/bad-variable-declaration1.less +1 -0
- data/lib/less/js/test/less/errors/bad-variable-declaration1.txt +2 -0
- data/lib/less/js/test/less/errors/color-func-invalid-color.less +3 -0
- data/lib/less/js/test/less/errors/color-func-invalid-color.txt +4 -0
- data/lib/less/js/test/less/errors/comment-in-selector.less +1 -0
- data/lib/less/js/test/less/errors/comment-in-selector.txt +2 -0
- data/lib/less/js/test/less/errors/css-guard-default-func.less +4 -0
- data/lib/less/js/test/less/errors/css-guard-default-func.txt +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-1.less +6 -0
- data/lib/less/js/test/less/errors/detached-ruleset-1.txt +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-2.less +6 -0
- data/lib/less/js/test/less/errors/detached-ruleset-2.txt +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-3.less +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-3.txt +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-4.less +5 -0
- data/lib/less/js/test/less/errors/detached-ruleset-4.txt +3 -0
- data/lib/less/js/test/less/errors/detached-ruleset-5.less +4 -0
- data/lib/less/js/test/less/errors/detached-ruleset-5.txt +3 -0
- data/lib/less/js/test/less/errors/detached-ruleset-6.less +5 -0
- data/lib/less/js/test/less/errors/detached-ruleset-6.txt +4 -0
- data/lib/less/js/test/less/errors/divide-mixed-units.less +3 -0
- data/lib/less/js/test/less/errors/divide-mixed-units.txt +4 -0
- data/lib/less/js/test/less/errors/extend-no-selector.less +3 -0
- data/lib/less/js/test/less/errors/extend-no-selector.txt +3 -0
- data/lib/less/js/test/less/errors/extend-not-at-end.less +3 -0
- data/lib/less/js/test/less/errors/extend-not-at-end.txt +3 -0
- data/lib/less/js/test/less/errors/import-missing.less +6 -0
- data/lib/less/js/test/less/errors/import-missing.txt +3 -0
- data/lib/less/js/test/less/errors/import-no-semi.less +1 -0
- data/lib/less/js/test/less/errors/import-no-semi.txt +2 -0
- data/lib/less/js/test/less/errors/import-subfolder1.less +1 -0
- data/lib/less/js/test/less/errors/import-subfolder1.txt +3 -0
- data/lib/less/js/test/less/errors/import-subfolder2.less +1 -0
- data/lib/less/js/test/less/errors/import-subfolder2.txt +4 -0
- data/lib/less/js/test/less/errors/imports/import-subfolder1.less +1 -0
- data/lib/less/js/test/less/errors/imports/import-subfolder2.less +1 -0
- data/lib/less/js/test/less/errors/imports/import-test.less +4 -0
- data/lib/less/js/test/less/errors/imports/subfolder/mixin-not-defined.less +1 -0
- data/lib/less/js/test/less/errors/imports/subfolder/parse-error-curly-bracket.less +1 -0
- data/lib/less/js/test/less/errors/javascript-error.less +3 -0
- data/lib/less/js/test/less/errors/javascript-error.txt +4 -0
- data/lib/less/js/test/less/errors/javascript-undefined-var.less +3 -0
- data/lib/less/js/test/less/errors/javascript-undefined-var.txt +4 -0
- data/lib/less/js/test/less/errors/mixed-mixin-definition-args-1.less +6 -0
- data/lib/less/js/test/less/errors/mixed-mixin-definition-args-1.txt +4 -0
- data/lib/less/js/test/less/errors/mixed-mixin-definition-args-2.less +6 -0
- data/lib/less/js/test/less/errors/mixed-mixin-definition-args-2.txt +4 -0
- data/lib/less/js/test/less/errors/mixin-not-defined.less +11 -0
- data/lib/less/js/test/less/errors/mixin-not-defined.txt +3 -0
- data/lib/less/js/test/less/errors/mixin-not-matched.less +6 -0
- data/lib/less/js/test/less/errors/mixin-not-matched.txt +3 -0
- data/lib/less/js/test/less/errors/mixin-not-matched2.less +6 -0
- data/lib/less/js/test/less/errors/mixin-not-matched2.txt +3 -0
- data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.less +9 -0
- data/lib/less/js/test/less/errors/mixin-not-visible-in-scope-1.txt +4 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-1.less +9 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-1.txt +4 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-2.less +9 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-2.txt +4 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-3.less +9 -0
- data/lib/less/js/test/less/errors/mixins-guards-default-func-3.txt +4 -0
- data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors.less +4 -0
- data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors.txt +4 -0
- data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors2.less +4 -0
- data/lib/less/js/test/less/errors/multiple-guards-on-css-selectors2.txt +4 -0
- data/lib/less/js/test/less/errors/multiply-mixed-units.less +7 -0
- data/lib/less/js/test/less/errors/multiply-mixed-units.txt +4 -0
- data/lib/less/js/test/less/errors/parens-error-1.less +3 -0
- data/lib/less/js/test/less/errors/parens-error-1.txt +4 -0
- data/lib/less/js/test/less/errors/parens-error-2.less +3 -0
- data/lib/less/js/test/less/errors/parens-error-2.txt +4 -0
- data/lib/less/js/test/less/errors/parens-error-3.less +3 -0
- data/lib/less/js/test/less/errors/parens-error-3.txt +4 -0
- data/lib/less/js/test/less/errors/parse-error-curly-bracket.less +4 -0
- data/lib/less/js/test/less/errors/parse-error-curly-bracket.txt +4 -0
- data/lib/less/js/test/less/errors/parse-error-extra-parens.less +5 -0
- data/lib/less/js/test/less/errors/parse-error-extra-parens.txt +3 -0
- data/lib/less/js/test/less/errors/parse-error-missing-bracket.less +2 -0
- data/lib/less/js/test/less/errors/parse-error-missing-bracket.txt +3 -0
- data/lib/less/js/test/less/errors/parse-error-missing-parens.less +5 -0
- data/lib/less/js/test/less/errors/parse-error-missing-parens.txt +3 -0
- data/lib/less/js/test/less/errors/parse-error-with-import.less +13 -0
- data/lib/less/js/test/less/errors/parse-error-with-import.txt +4 -0
- data/lib/less/js/test/less/errors/percentage-missing-space.less +3 -0
- data/lib/less/js/test/less/errors/percentage-missing-space.txt +4 -0
- data/lib/less/js/test/less/errors/property-asterisk-only-name.less +3 -0
- data/lib/less/js/test/less/errors/property-asterisk-only-name.txt +4 -0
- data/lib/less/js/test/less/errors/property-ie5-hack.less +3 -0
- data/lib/less/js/test/less/errors/property-ie5-hack.txt +4 -0
- data/lib/less/js/test/less/errors/property-in-root.less +4 -0
- data/lib/less/js/test/less/errors/property-in-root.txt +4 -0
- data/lib/less/js/test/less/errors/property-in-root2.less +1 -0
- data/lib/less/js/test/less/errors/property-in-root2.txt +4 -0
- data/lib/less/js/test/less/errors/property-in-root3.less +4 -0
- data/lib/less/js/test/less/errors/property-in-root3.txt +3 -0
- data/lib/less/js/test/less/errors/property-interp-not-defined.less +1 -0
- data/lib/less/js/test/less/errors/property-interp-not-defined.txt +2 -0
- data/lib/less/js/test/less/errors/recursive-variable.less +1 -0
- data/lib/less/js/test/less/errors/recursive-variable.txt +2 -0
- data/lib/less/js/test/less/errors/svg-gradient1.less +3 -0
- data/lib/less/js/test/less/errors/svg-gradient1.txt +4 -0
- data/lib/less/js/test/less/errors/svg-gradient2.less +3 -0
- data/lib/less/js/test/less/errors/svg-gradient2.txt +4 -0
- data/lib/less/js/test/less/errors/svg-gradient3.less +3 -0
- data/lib/less/js/test/less/errors/svg-gradient3.txt +4 -0
- data/lib/less/js/test/less/errors/unit-function.less +3 -0
- data/lib/less/js/test/less/errors/unit-function.txt +4 -0
- data/lib/less/js/test/less/extend-chaining.less +91 -0
- data/lib/less/js/test/less/extend-clearfix.less +19 -0
- data/lib/less/js/test/less/extend-exact.less +46 -0
- data/lib/less/js/test/less/extend-media.less +24 -0
- data/lib/less/js/test/less/extend-nest.less +65 -0
- data/lib/less/js/test/less/extend-selector.less +99 -0
- data/lib/less/js/test/less/extend.less +81 -0
- data/lib/less/js/test/less/extract-and-length.less +133 -0
- data/lib/less/js/test/less/functions.less +130 -6
- data/lib/less/js/test/less/globalVars/extended.json +5 -0
- data/lib/less/js/test/less/globalVars/extended.less +10 -0
- data/lib/less/js/test/less/globalVars/simple.json +3 -0
- data/lib/less/js/test/less/globalVars/simple.less +3 -0
- data/lib/less/js/test/less/ie-filters.less +7 -0
- data/lib/less/js/test/less/import/deeper/import-once-test-a.less +1 -0
- data/lib/less/js/test/less/import/import-and-relative-paths-test.less +17 -0
- data/lib/less/js/test/less/import/import-charset-test.less +1 -0
- data/lib/less/js/test/less/import/import-interpolation.less +1 -0
- data/lib/less/js/test/less/import/import-interpolation2.less +5 -0
- data/lib/less/js/test/less/import/import-once-test-c.less +6 -0
- data/lib/less/js/test/less/import/import-reference.less +51 -0
- data/lib/less/js/test/less/import/import-test-a.less +1 -0
- data/lib/less/js/test/less/import/import-test-c.less +0 -1
- data/lib/less/js/test/less/import/import-test-f.less +5 -0
- data/lib/less/js/test/less/import/imports/font.less +8 -0
- data/lib/less/js/test/less/import/imports/logo.less +5 -0
- data/lib/less/js/test/less/import/invalid-css.less +1 -0
- data/lib/less/js/test/less/import/urls.less +1 -0
- data/lib/less/js/test/less/import-inline.less +2 -0
- data/lib/less/js/test/less/import-interpolation.less +8 -0
- data/lib/less/js/test/less/import-once.less +6 -0
- data/lib/less/js/test/less/import-reference.less +21 -0
- data/lib/less/js/test/less/import.less +13 -3
- data/lib/less/js/test/less/javascript.less +5 -3
- data/lib/less/js/test/less/legacy/legacy.less +7 -0
- data/lib/less/js/test/less/media.less +158 -3
- data/lib/less/js/test/less/merge.less +78 -0
- data/lib/less/js/test/less/mixins-args.less +93 -15
- data/lib/less/js/test/less/mixins-guards-default-func.less +195 -0
- data/lib/less/js/test/less/mixins-guards.less +65 -0
- data/lib/less/js/test/less/mixins-important.less +8 -1
- data/lib/less/js/test/less/mixins-interpolated.less +69 -0
- data/lib/less/js/test/less/mixins-named-args.less +36 -0
- data/lib/less/js/test/less/mixins-nested.less +2 -2
- data/lib/less/js/test/less/mixins-pattern.less +4 -1
- data/lib/less/js/test/less/mixins.less +74 -0
- data/lib/less/js/test/less/modifyVars/extended.json +5 -0
- data/lib/less/js/test/less/modifyVars/extended.less +11 -0
- data/lib/less/js/test/less/no-js-errors/no-js-errors.less +3 -0
- data/lib/less/js/test/less/no-js-errors/no-js-errors.txt +4 -0
- data/lib/less/js/test/less/no-output.less +2 -0
- data/lib/less/js/test/less/operations.less +27 -27
- data/lib/less/js/test/less/parens.less +24 -5
- data/lib/less/js/test/less/property-name-interp.less +53 -0
- data/lib/less/js/test/less/scope.less +73 -1
- data/lib/less/js/test/less/selectors.less +101 -0
- data/lib/less/js/test/less/sourcemaps/basic.json +3 -0
- data/lib/less/js/test/less/sourcemaps/basic.less +27 -0
- data/lib/less/js/test/less/sourcemaps/imported.css +7 -0
- data/lib/less/js/test/less/static-urls/urls.less +33 -0
- data/lib/less/js/test/less/strings.less +7 -1
- data/lib/less/js/test/less/url-args/urls.less +63 -0
- data/lib/less/js/test/less/urls.less +72 -0
- data/lib/less/js/test/less/variables-in-at-rules.less +20 -0
- data/lib/less/js/test/less/variables.less +42 -13
- data/lib/less/js/test/less/whitespace.less +7 -0
- data/lib/less/js/test/less-test.js +251 -65
- data/lib/less/js/test/rhino/test-header.js +15 -0
- data/lib/less/js/test/sourcemaps/basic.json +1 -0
- data/lib/less/js/test/sourcemaps/index.html +17 -0
- data/lib/less/loader.rb +191 -27
- data/lib/less/parser.rb +47 -8
- data/lib/less/version.rb +2 -2
- data/spec/less/loader_spec.rb +45 -0
- data/spec/less/parser_spec.rb +43 -17
- data/spec/less/some/some.css +0 -0
- data/spec/less/some/some.less +4 -0
- metadata +352 -57
- data/lib/less/js/CHANGELOG +0 -41
- data/lib/less/js/Makefile +0 -75
- data/lib/less/js/build/ecma-5.js +0 -120
- data/lib/less/js/build/header.js +0 -7
- data/lib/less/js/lib/less/cssmin.js +0 -355
@@ -1,42 +1,129 @@
|
|
1
1
|
(function (tree) {
|
2
2
|
|
3
|
-
tree.Selector = function (elements) {
|
3
|
+
tree.Selector = function (elements, extendList, condition, index, currentFileInfo, isReferenced) {
|
4
4
|
this.elements = elements;
|
5
|
-
|
6
|
-
|
5
|
+
this.extendList = extendList;
|
6
|
+
this.condition = condition;
|
7
|
+
this.currentFileInfo = currentFileInfo || {};
|
8
|
+
this.isReferenced = isReferenced;
|
9
|
+
if (!condition) {
|
10
|
+
this.evaldCondition = true;
|
7
11
|
}
|
8
12
|
};
|
9
|
-
tree.Selector.prototype
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
if (len < olen) {
|
15
|
-
return false;
|
16
|
-
} else {
|
17
|
-
for (var i = 0; i < max; i++) {
|
18
|
-
if (this.elements[i].value !== other.elements[i].value) {
|
19
|
-
return false;
|
20
|
-
}
|
13
|
+
tree.Selector.prototype = {
|
14
|
+
type: "Selector",
|
15
|
+
accept: function (visitor) {
|
16
|
+
if (this.elements) {
|
17
|
+
this.elements = visitor.visitArray(this.elements);
|
21
18
|
}
|
22
|
-
|
23
|
-
|
24
|
-
}
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
}
|
29
|
-
|
30
|
-
|
31
|
-
|
19
|
+
if (this.extendList) {
|
20
|
+
this.extendList = visitor.visitArray(this.extendList);
|
21
|
+
}
|
22
|
+
if (this.condition) {
|
23
|
+
this.condition = visitor.visit(this.condition);
|
24
|
+
}
|
25
|
+
},
|
26
|
+
createDerived: function(elements, extendList, evaldCondition) {
|
27
|
+
evaldCondition = (evaldCondition != null) ? evaldCondition : this.evaldCondition;
|
28
|
+
var newSelector = new(tree.Selector)(elements, extendList || this.extendList, null, this.index, this.currentFileInfo, this.isReferenced);
|
29
|
+
newSelector.evaldCondition = evaldCondition;
|
30
|
+
newSelector.mediaEmpty = this.mediaEmpty;
|
31
|
+
return newSelector;
|
32
|
+
},
|
33
|
+
match: function (other) {
|
34
|
+
var elements = this.elements,
|
35
|
+
len = elements.length,
|
36
|
+
olen, i;
|
37
|
+
|
38
|
+
other.CacheElements();
|
32
39
|
|
33
|
-
|
34
|
-
if (
|
35
|
-
return
|
40
|
+
olen = other._elements.length;
|
41
|
+
if (olen === 0 || len < olen) {
|
42
|
+
return 0;
|
36
43
|
} else {
|
37
|
-
|
44
|
+
for (i = 0; i < olen; i++) {
|
45
|
+
if (elements[i].value !== other._elements[i]) {
|
46
|
+
return 0;
|
47
|
+
}
|
48
|
+
}
|
38
49
|
}
|
39
|
-
|
50
|
+
|
51
|
+
return olen; // return number of matched elements
|
52
|
+
},
|
53
|
+
CacheElements: function(){
|
54
|
+
var css = '', len, v, i;
|
55
|
+
|
56
|
+
if( !this._elements ){
|
57
|
+
|
58
|
+
len = this.elements.length;
|
59
|
+
for(i = 0; i < len; i++){
|
60
|
+
|
61
|
+
v = this.elements[i];
|
62
|
+
css += v.combinator.value;
|
63
|
+
|
64
|
+
if( !v.value.value ){
|
65
|
+
css += v.value;
|
66
|
+
continue;
|
67
|
+
}
|
68
|
+
|
69
|
+
if( typeof v.value.value !== "string" ){
|
70
|
+
css = '';
|
71
|
+
break;
|
72
|
+
}
|
73
|
+
css += v.value.value;
|
74
|
+
}
|
75
|
+
|
76
|
+
this._elements = css.match(/[,&#\.\w-]([\w-]|(\\.))*/g);
|
77
|
+
|
78
|
+
if (this._elements) {
|
79
|
+
if (this._elements[0] === "&") {
|
80
|
+
this._elements.shift();
|
81
|
+
}
|
82
|
+
|
83
|
+
} else {
|
84
|
+
this._elements = [];
|
85
|
+
}
|
86
|
+
|
87
|
+
}
|
88
|
+
},
|
89
|
+
isJustParentSelector: function() {
|
90
|
+
return !this.mediaEmpty &&
|
91
|
+
this.elements.length === 1 &&
|
92
|
+
this.elements[0].value === '&' &&
|
93
|
+
(this.elements[0].combinator.value === ' ' || this.elements[0].combinator.value === '');
|
94
|
+
},
|
95
|
+
eval: function (env) {
|
96
|
+
var evaldCondition = this.condition && this.condition.eval(env),
|
97
|
+
elements = this.elements, extendList = this.extendList;
|
98
|
+
|
99
|
+
elements = elements && elements.map(function (e) { return e.eval(env); });
|
100
|
+
extendList = extendList && extendList.map(function(extend) { return extend.eval(env); });
|
101
|
+
|
102
|
+
return this.createDerived(elements, extendList, evaldCondition);
|
103
|
+
},
|
104
|
+
genCSS: function (env, output) {
|
105
|
+
var i, element;
|
106
|
+
if ((!env || !env.firstSelector) && this.elements[0].combinator.value === "") {
|
107
|
+
output.add(' ', this.currentFileInfo, this.index);
|
108
|
+
}
|
109
|
+
if (!this._css) {
|
110
|
+
//TODO caching? speed comparison?
|
111
|
+
for(i = 0; i < this.elements.length; i++) {
|
112
|
+
element = this.elements[i];
|
113
|
+
element.genCSS(env, output);
|
114
|
+
}
|
115
|
+
}
|
116
|
+
},
|
117
|
+
toCSS: tree.toCSS,
|
118
|
+
markReferenced: function () {
|
119
|
+
this.isReferenced = true;
|
120
|
+
},
|
121
|
+
getIsReferenced: function() {
|
122
|
+
return !this.currentFileInfo.reference || this.isReferenced;
|
123
|
+
},
|
124
|
+
getIsOutput: function() {
|
125
|
+
return this.evaldCondition;
|
126
|
+
}
|
40
127
|
};
|
41
128
|
|
42
129
|
})(require('../tree'));
|
@@ -0,0 +1,15 @@
|
|
1
|
+
(function (tree) {
|
2
|
+
|
3
|
+
tree.UnicodeDescriptor = function (value) {
|
4
|
+
this.value = value;
|
5
|
+
};
|
6
|
+
tree.UnicodeDescriptor.prototype = {
|
7
|
+
type: "UnicodeDescriptor",
|
8
|
+
genCSS: function (env, output) {
|
9
|
+
output.add(this.value);
|
10
|
+
},
|
11
|
+
toCSS: tree.toCSS,
|
12
|
+
eval: function () { return this; }
|
13
|
+
};
|
14
|
+
|
15
|
+
})(require('../tree'));
|
@@ -1,24 +1,52 @@
|
|
1
1
|
(function (tree) {
|
2
2
|
|
3
|
-
tree.URL = function (val,
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
// Add the base path if the URL is relative and we are in the browser
|
8
|
-
if (typeof(window) !== 'undefined' && !/^(?:https?:\/\/|file:\/\/|data:|\/)/.test(val.value) && paths.length > 0) {
|
9
|
-
val.value = paths[0] + (val.value.charAt(0) === '/' ? val.value.slice(1) : val.value);
|
10
|
-
}
|
11
|
-
this.value = val;
|
12
|
-
this.paths = paths;
|
13
|
-
}
|
3
|
+
tree.URL = function (val, currentFileInfo, isEvald) {
|
4
|
+
this.value = val;
|
5
|
+
this.currentFileInfo = currentFileInfo;
|
6
|
+
this.isEvald = isEvald;
|
14
7
|
};
|
15
8
|
tree.URL.prototype = {
|
16
|
-
|
17
|
-
|
18
|
-
|
9
|
+
type: "Url",
|
10
|
+
accept: function (visitor) {
|
11
|
+
this.value = visitor.visit(this.value);
|
19
12
|
},
|
13
|
+
genCSS: function (env, output) {
|
14
|
+
output.add("url(");
|
15
|
+
this.value.genCSS(env, output);
|
16
|
+
output.add(")");
|
17
|
+
},
|
18
|
+
toCSS: tree.toCSS,
|
20
19
|
eval: function (ctx) {
|
21
|
-
|
20
|
+
var val = this.value.eval(ctx),
|
21
|
+
rootpath;
|
22
|
+
|
23
|
+
if (!this.isEvald) {
|
24
|
+
// Add the base path if the URL is relative
|
25
|
+
rootpath = this.currentFileInfo && this.currentFileInfo.rootpath;
|
26
|
+
if (rootpath && typeof val.value === "string" && ctx.isPathRelative(val.value)) {
|
27
|
+
if (!val.quote) {
|
28
|
+
rootpath = rootpath.replace(/[\(\)'"\s]/g, function(match) { return "\\"+match; });
|
29
|
+
}
|
30
|
+
val.value = rootpath + val.value;
|
31
|
+
}
|
32
|
+
|
33
|
+
val.value = ctx.normalizePath(val.value);
|
34
|
+
|
35
|
+
// Add url args if enabled
|
36
|
+
if (ctx.urlArgs) {
|
37
|
+
if (!val.value.match(/^\s*data:/)) {
|
38
|
+
var delimiter = val.value.indexOf('?') === -1 ? '?' : '&';
|
39
|
+
var urlArgs = delimiter + ctx.urlArgs;
|
40
|
+
if (val.value.indexOf('#') !== -1) {
|
41
|
+
val.value = val.value.replace('#', urlArgs + '#');
|
42
|
+
} else {
|
43
|
+
val.value += urlArgs;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
return new(tree.URL)(val, this.currentFileInfo, true);
|
22
50
|
}
|
23
51
|
};
|
24
52
|
|
@@ -2,9 +2,14 @@
|
|
2
2
|
|
3
3
|
tree.Value = function (value) {
|
4
4
|
this.value = value;
|
5
|
-
this.is = 'value';
|
6
5
|
};
|
7
6
|
tree.Value.prototype = {
|
7
|
+
type: "Value",
|
8
|
+
accept: function (visitor) {
|
9
|
+
if (this.value) {
|
10
|
+
this.value = visitor.visitArray(this.value);
|
11
|
+
}
|
12
|
+
},
|
8
13
|
eval: function (env) {
|
9
14
|
if (this.value.length === 1) {
|
10
15
|
return this.value[0].eval(env);
|
@@ -14,11 +19,16 @@ tree.Value.prototype = {
|
|
14
19
|
}));
|
15
20
|
}
|
16
21
|
},
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
+
genCSS: function (env, output) {
|
23
|
+
var i;
|
24
|
+
for(i = 0; i < this.value.length; i++) {
|
25
|
+
this.value[i].genCSS(env, output);
|
26
|
+
if (i+1 < this.value.length) {
|
27
|
+
output.add((env && env.compress) ? ',' : ', ');
|
28
|
+
}
|
29
|
+
}
|
30
|
+
},
|
31
|
+
toCSS: tree.toCSS
|
22
32
|
};
|
23
33
|
|
24
34
|
})(require('../tree'));
|
@@ -1,23 +1,41 @@
|
|
1
1
|
(function (tree) {
|
2
2
|
|
3
|
-
tree.Variable = function (name, index,
|
3
|
+
tree.Variable = function (name, index, currentFileInfo) {
|
4
|
+
this.name = name;
|
5
|
+
this.index = index;
|
6
|
+
this.currentFileInfo = currentFileInfo || {};
|
7
|
+
};
|
4
8
|
tree.Variable.prototype = {
|
9
|
+
type: "Variable",
|
5
10
|
eval: function (env) {
|
6
|
-
var variable,
|
11
|
+
var variable, name = this.name;
|
7
12
|
|
8
|
-
if (name.indexOf('@@')
|
13
|
+
if (name.indexOf('@@') === 0) {
|
9
14
|
name = '@' + new(tree.Variable)(name.slice(1)).eval(env).value;
|
10
15
|
}
|
16
|
+
|
17
|
+
if (this.evaluating) {
|
18
|
+
throw { type: 'Name',
|
19
|
+
message: "Recursive variable definition for " + name,
|
20
|
+
filename: this.currentFileInfo.file,
|
21
|
+
index: this.index };
|
22
|
+
}
|
23
|
+
|
24
|
+
this.evaluating = true;
|
11
25
|
|
12
|
-
|
13
|
-
|
26
|
+
variable = tree.find(env.frames, function (frame) {
|
27
|
+
var v = frame.variable(name);
|
28
|
+
if (v) {
|
14
29
|
return v.value.eval(env);
|
15
30
|
}
|
16
|
-
})
|
17
|
-
|
31
|
+
});
|
32
|
+
if (variable) {
|
33
|
+
this.evaluating = false;
|
34
|
+
return variable;
|
35
|
+
} else {
|
18
36
|
throw { type: 'Name',
|
19
37
|
message: "variable " + name + " is undefined",
|
20
|
-
filename: this.
|
38
|
+
filename: this.currentFileInfo.filename,
|
21
39
|
index: this.index };
|
22
40
|
}
|
23
41
|
}
|
@@ -1,17 +1,97 @@
|
|
1
1
|
(function (tree) {
|
2
2
|
|
3
|
+
tree.debugInfo = function(env, ctx, lineSeperator) {
|
4
|
+
var result="";
|
5
|
+
if (env.dumpLineNumbers && !env.compress) {
|
6
|
+
switch(env.dumpLineNumbers) {
|
7
|
+
case 'comments':
|
8
|
+
result = tree.debugInfo.asComment(ctx);
|
9
|
+
break;
|
10
|
+
case 'mediaquery':
|
11
|
+
result = tree.debugInfo.asMediaQuery(ctx);
|
12
|
+
break;
|
13
|
+
case 'all':
|
14
|
+
result = tree.debugInfo.asComment(ctx) + (lineSeperator || "") + tree.debugInfo.asMediaQuery(ctx);
|
15
|
+
break;
|
16
|
+
}
|
17
|
+
}
|
18
|
+
return result;
|
19
|
+
};
|
20
|
+
|
21
|
+
tree.debugInfo.asComment = function(ctx) {
|
22
|
+
return '/* line ' + ctx.debugInfo.lineNumber + ', ' + ctx.debugInfo.fileName + ' */\n';
|
23
|
+
};
|
24
|
+
|
25
|
+
tree.debugInfo.asMediaQuery = function(ctx) {
|
26
|
+
return '@media -sass-debug-info{filename{font-family:' +
|
27
|
+
('file://' + ctx.debugInfo.fileName).replace(/([.:\/\\])/g, function (a) {
|
28
|
+
if (a == '\\') {
|
29
|
+
a = '\/';
|
30
|
+
}
|
31
|
+
return '\\' + a;
|
32
|
+
}) +
|
33
|
+
'}line{font-family:\\00003' + ctx.debugInfo.lineNumber + '}}\n';
|
34
|
+
};
|
35
|
+
|
3
36
|
tree.find = function (obj, fun) {
|
4
37
|
for (var i = 0, r; i < obj.length; i++) {
|
5
|
-
|
38
|
+
r = fun.call(obj, obj[i]);
|
39
|
+
if (r) { return r; }
|
6
40
|
}
|
7
41
|
return null;
|
8
42
|
};
|
43
|
+
|
9
44
|
tree.jsify = function (obj) {
|
10
45
|
if (Array.isArray(obj.value) && (obj.value.length > 1)) {
|
11
|
-
return '[' + obj.value.map(function (v) { return v.toCSS(false) }).join(', ') + ']';
|
46
|
+
return '[' + obj.value.map(function (v) { return v.toCSS(false); }).join(', ') + ']';
|
12
47
|
} else {
|
13
48
|
return obj.toCSS(false);
|
14
49
|
}
|
15
50
|
};
|
16
51
|
|
52
|
+
tree.toCSS = function (env) {
|
53
|
+
var strs = [];
|
54
|
+
this.genCSS(env, {
|
55
|
+
add: function(chunk, fileInfo, index) {
|
56
|
+
strs.push(chunk);
|
57
|
+
},
|
58
|
+
isEmpty: function () {
|
59
|
+
return strs.length === 0;
|
60
|
+
}
|
61
|
+
});
|
62
|
+
return strs.join('');
|
63
|
+
};
|
64
|
+
|
65
|
+
tree.outputRuleset = function (env, output, rules) {
|
66
|
+
var ruleCnt = rules.length, i;
|
67
|
+
env.tabLevel = (env.tabLevel | 0) + 1;
|
68
|
+
|
69
|
+
// Compressed
|
70
|
+
if (env.compress) {
|
71
|
+
output.add('{');
|
72
|
+
for (i = 0; i < ruleCnt; i++) {
|
73
|
+
rules[i].genCSS(env, output);
|
74
|
+
}
|
75
|
+
output.add('}');
|
76
|
+
env.tabLevel--;
|
77
|
+
return;
|
78
|
+
}
|
79
|
+
|
80
|
+
// Non-compressed
|
81
|
+
var tabSetStr = '\n' + Array(env.tabLevel).join(" "), tabRuleStr = tabSetStr + " ";
|
82
|
+
if (!ruleCnt) {
|
83
|
+
output.add(" {" + tabSetStr + '}');
|
84
|
+
} else {
|
85
|
+
output.add(" {" + tabRuleStr);
|
86
|
+
rules[0].genCSS(env, output);
|
87
|
+
for (i = 1; i < ruleCnt; i++) {
|
88
|
+
output.add(tabRuleStr);
|
89
|
+
rules[i].genCSS(env, output);
|
90
|
+
}
|
91
|
+
output.add(tabSetStr + '}');
|
92
|
+
}
|
93
|
+
|
94
|
+
env.tabLevel--;
|
95
|
+
};
|
96
|
+
|
17
97
|
})(require('./tree'));
|
@@ -0,0 +1,146 @@
|
|
1
|
+
(function (tree) {
|
2
|
+
|
3
|
+
var _visitArgs = { visitDeeper: true },
|
4
|
+
_hasIndexed = false;
|
5
|
+
|
6
|
+
function _noop(node) {
|
7
|
+
return node;
|
8
|
+
}
|
9
|
+
|
10
|
+
function indexNodeTypes(parent, ticker) {
|
11
|
+
// add .typeIndex to tree node types for lookup table
|
12
|
+
var key, child;
|
13
|
+
for (key in parent) {
|
14
|
+
if (parent.hasOwnProperty(key)) {
|
15
|
+
child = parent[key];
|
16
|
+
switch (typeof child) {
|
17
|
+
case "function":
|
18
|
+
// ignore bound functions directly on tree which do not have a prototype
|
19
|
+
// or aren't nodes
|
20
|
+
if (child.prototype && child.prototype.type) {
|
21
|
+
child.prototype.typeIndex = ticker++;
|
22
|
+
}
|
23
|
+
break;
|
24
|
+
case "object":
|
25
|
+
ticker = indexNodeTypes(child, ticker);
|
26
|
+
break;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
}
|
30
|
+
return ticker;
|
31
|
+
}
|
32
|
+
|
33
|
+
tree.visitor = function(implementation) {
|
34
|
+
this._implementation = implementation;
|
35
|
+
this._visitFnCache = [];
|
36
|
+
|
37
|
+
if (!_hasIndexed) {
|
38
|
+
indexNodeTypes(tree, 1);
|
39
|
+
_hasIndexed = true;
|
40
|
+
}
|
41
|
+
};
|
42
|
+
|
43
|
+
tree.visitor.prototype = {
|
44
|
+
visit: function(node) {
|
45
|
+
if (!node) {
|
46
|
+
return node;
|
47
|
+
}
|
48
|
+
|
49
|
+
var nodeTypeIndex = node.typeIndex;
|
50
|
+
if (!nodeTypeIndex) {
|
51
|
+
return node;
|
52
|
+
}
|
53
|
+
|
54
|
+
var visitFnCache = this._visitFnCache,
|
55
|
+
impl = this._implementation,
|
56
|
+
aryIndx = nodeTypeIndex << 1,
|
57
|
+
outAryIndex = aryIndx | 1,
|
58
|
+
func = visitFnCache[aryIndx],
|
59
|
+
funcOut = visitFnCache[outAryIndex],
|
60
|
+
visitArgs = _visitArgs,
|
61
|
+
fnName;
|
62
|
+
|
63
|
+
visitArgs.visitDeeper = true;
|
64
|
+
|
65
|
+
if (!func) {
|
66
|
+
fnName = "visit" + node.type;
|
67
|
+
func = impl[fnName] || _noop;
|
68
|
+
funcOut = impl[fnName + "Out"] || _noop;
|
69
|
+
visitFnCache[aryIndx] = func;
|
70
|
+
visitFnCache[outAryIndex] = funcOut;
|
71
|
+
}
|
72
|
+
|
73
|
+
if (func !== _noop) {
|
74
|
+
var newNode = func.call(impl, node, visitArgs);
|
75
|
+
if (impl.isReplacing) {
|
76
|
+
node = newNode;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
if (visitArgs.visitDeeper && node && node.accept) {
|
81
|
+
node.accept(this);
|
82
|
+
}
|
83
|
+
|
84
|
+
if (funcOut != _noop) {
|
85
|
+
funcOut.call(impl, node);
|
86
|
+
}
|
87
|
+
|
88
|
+
return node;
|
89
|
+
},
|
90
|
+
visitArray: function(nodes, nonReplacing) {
|
91
|
+
if (!nodes) {
|
92
|
+
return nodes;
|
93
|
+
}
|
94
|
+
|
95
|
+
var cnt = nodes.length, i;
|
96
|
+
|
97
|
+
// Non-replacing
|
98
|
+
if (nonReplacing || !this._implementation.isReplacing) {
|
99
|
+
for (i = 0; i < cnt; i++) {
|
100
|
+
this.visit(nodes[i]);
|
101
|
+
}
|
102
|
+
return nodes;
|
103
|
+
}
|
104
|
+
|
105
|
+
// Replacing
|
106
|
+
var out = [];
|
107
|
+
for (i = 0; i < cnt; i++) {
|
108
|
+
var evald = this.visit(nodes[i]);
|
109
|
+
if (!evald.splice) {
|
110
|
+
out.push(evald);
|
111
|
+
} else if (evald.length) {
|
112
|
+
this.flatten(evald, out);
|
113
|
+
}
|
114
|
+
}
|
115
|
+
return out;
|
116
|
+
},
|
117
|
+
flatten: function(arr, out) {
|
118
|
+
if (!out) {
|
119
|
+
out = [];
|
120
|
+
}
|
121
|
+
|
122
|
+
var cnt, i, item,
|
123
|
+
nestedCnt, j, nestedItem;
|
124
|
+
|
125
|
+
for (i = 0, cnt = arr.length; i < cnt; i++) {
|
126
|
+
item = arr[i];
|
127
|
+
if (!item.splice) {
|
128
|
+
out.push(item);
|
129
|
+
continue;
|
130
|
+
}
|
131
|
+
|
132
|
+
for (j = 0, nestedCnt = item.length; j < nestedCnt; j++) {
|
133
|
+
nestedItem = item[j];
|
134
|
+
if (!nestedItem.splice) {
|
135
|
+
out.push(nestedItem);
|
136
|
+
} else if (nestedItem.length) {
|
137
|
+
this.flatten(nestedItem, out);
|
138
|
+
}
|
139
|
+
}
|
140
|
+
}
|
141
|
+
|
142
|
+
return out;
|
143
|
+
}
|
144
|
+
};
|
145
|
+
|
146
|
+
})(require('./tree'));
|