]> source.dussan.org Git - vaadin-framework.git/commit
support arithmetics in the SCSS compiler (#9354)
authorHaijian Wang <haijian@vaadin.com>
Wed, 27 Feb 2013 13:38:55 +0000 (15:38 +0200)
committerVaadin Code Review <review@vaadin.com>
Wed, 27 Feb 2013 13:53:22 +0000 (13:53 +0000)
commit934b8ceb3f8ddcc6acc3ffb4a35b67e3e989ec38
tree1a5f25c3afb03e2fee285f8d7a3b75c33427ea16
parentc5af559686ab3984d43c59a8d6289b99229961e1
support arithmetics in the SCSS compiler (#9354)

Change-Id: Ieb7834fb12cdba5c0794a26de20b3c8c2d509642
17 files changed:
theme-compiler/src/com/vaadin/sass/internal/expression/ArithmeticExpressionEvaluator.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/internal/expression/BinaryExpression.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/internal/expression/BinaryOperator.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/internal/expression/Parentheses.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/internal/expression/exception/ArithmeticException.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/internal/expression/exception/IncompatibleUnitsException.java [new file with mode: 0644]
theme-compiler/src/com/vaadin/sass/internal/parser/LexicalUnitImpl.java
theme-compiler/src/com/vaadin/sass/internal/parser/Parser.java
theme-compiler/src/com/vaadin/sass/internal/parser/Parser.jj
theme-compiler/src/com/vaadin/sass/internal/parser/ParserConstants.java
theme-compiler/src/com/vaadin/sass/internal/parser/ParserTokenManager.java
theme-compiler/src/com/vaadin/sass/internal/parser/SCSSLexicalUnit.java
theme-compiler/src/com/vaadin/sass/internal/tree/RuleNode.java
theme-compiler/src/com/vaadin/sass/internal/tree/VariableNode.java
theme-compiler/tests/resources/automatic/css/basic_arithmetics.css [new file with mode: 0644]
theme-compiler/tests/resources/automatic/scss/basic_arithmetics.scss [new file with mode: 0644]
theme-compiler/tests/src/com/vaadin/sass/internal/expression/ArithmeticExpressionEvaluatorTest.java [new file with mode: 0644]