Order-of-operations bugfix.

git-svn-id: svn://hamptoncatlin.com/haml/trunk@263 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2006-12-24 23:47:15 +00:00
parent f2f6081875
commit 483c78a861
3 changed files with 4 additions and 3 deletions

View File

@ -121,7 +121,7 @@ module Sass
else else
raise "Syntax error:\n#{original}" unless length >= 5 && length % 2 == 1 raise "Syntax error:\n#{original}" unless length >= 5 && length % 2 == 1
if SECOND_ORDER.include?(value[1]) && FIRST_ORDER.include?(value[3]) if SECOND_ORDER.include?(value[1]) && FIRST_ORDER.include?(value[3])
operationalize([value[1], value[2], operationalize(value[3..5], original, constants), *value[6..-1]], original, constants) operationalize([value[0], value[1], operationalize(value[2..4], original, constants), *value[5..-1]], original, constants)
else else
operationalize([operationalize(value[0..2], original, constants), *value[3..-1]], original, constants) operationalize([operationalize(value[0..2], original, constants), *value[3..-1]], original, constants)
end end

View File

@ -1,5 +1,5 @@
#main { width: 30; background-color: #000; color: #ffffaf; } #main { width: 30; background-color: #000; color: #ffffaf; }
#main #sidebar { background-color: #00ff98; num-normal: 10; num-dec: 10.2; num-dec0: 99; num-neg: -10; esc: 10+12; many: 6; complex: #4c9db1hi4; } #main #sidebar { background-color: #00ff98; num-normal: 10; num-dec: 10.2; num-dec0: 99; num-neg: -10; esc: 10+12; many: 6; complex: #4c9db1hi16; }
#plus { num-num: 7; num-num-neg: -3; num-str: 100px; num-col: #bcbcbc; str-str: hi there; str-num: times: 13; col-num: #ff8aaa; col-col: #5f80ff; } #plus { num-num: 7; num-num-neg: -3; num-str: 100px; num-col: #bcbcbc; str-str: hi there; str-num: times: 13; col-num: #ff8aaa; col-col: #5f80ff; }

View File

@ -20,7 +20,8 @@
:neg= !neg :neg= !neg
:esc= !esc :esc= !esc
:many= 1 + 2 + 3 :many= 1 + 2 + 3
:complex= ((1 + 2) + 15)+#3a8b9f + (hi+(1 +1+ 2)) :order= 1 + 2 * 3
:complex= ((1 + 2) + 15)+#3a8b9f + (hi+(1 +1+ 2)* 4)
#plus #plus
:num :num