1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

More advanced operation stuff.

git-svn-id: svn://hamptoncatlin.com/haml/trunk@256 7063305b-7217-0410-af8c-cdc13e5119b9
This commit is contained in:
nex3 2006-12-23 22:34:12 +00:00
parent 8116d203e8
commit 4246a12203

View file

@ -22,7 +22,11 @@ module Sass::Constant
begin
literal1.send(@operator, literal2)
rescue NoMethodError
raise "Undefined operation:\n#{literal1} #{@operator} #{literal2}\n"
begin
literal2.send(@operator, literal1)
rescue NoMethodError
raise "Undefined operation:\n#{literal1} #{@operator} #{literal2}\n"
end
end
end
end