sass 3.2.0.alpha.275 → 3.2.0.alpha.277
Sign up to get free protection for your applications and to get access to all the features.
- data/REVISION +1 -1
- data/Rakefile +0 -1
- data/VERSION +1 -1
- data/lib/sass/environment.rb +5 -14
- data/lib/sass/exec.rb +4 -20
- data/lib/sass/tree/visitors/check_nesting.rb +19 -19
- data/lib/sass/tree/visitors/convert.rb +17 -1
- data/lib/sass/tree/visitors/extend.rb +1 -0
- data/lib/sass/tree/visitors/perform.rb +7 -6
- data/test/Gemfile +0 -1
- data/test/Gemfile.lock +0 -9
- data/test/sass/conversion_test.rb +12 -3
- data/test/sass/engine_test.rb +3 -22
- data/test/sass/extend_test.rb +3 -0
- data/test/sass/plugin_test.rb +8 -1
- data/test/sass/results/filename_fn.css +3 -0
- data/test/sass/script_test.rb +2 -2
- data/test/sass/scss/scss_test.rb +69 -3
- data/test/sass/templates/_filename_fn_import.scss +11 -0
- data/test/sass/templates/filename_fn.scss +18 -0
- metadata +17 -19
- data/lib/sass/less.rb +0 -382
- data/test/sass/less_conversion_test.rb +0 -736
- data/test/sass/templates/bork5.sass +0 -3
- data/test/sass/templates/nested_bork5.sass +0 -2
data/test/sass/scss/scss_test.rb
CHANGED
@@ -1073,17 +1073,83 @@ $domain: "sass-lang.com";
|
|
1073
1073
|
SCSS
|
1074
1074
|
end
|
1075
1075
|
|
1076
|
+
def test_nested_mixin_def
|
1077
|
+
assert_equal <<CSS, render(<<SCSS)
|
1078
|
+
foo {
|
1079
|
+
a: b; }
|
1080
|
+
CSS
|
1081
|
+
foo {
|
1082
|
+
@mixin bar {a: b}
|
1083
|
+
@include bar; }
|
1084
|
+
SCSS
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
def test_nested_mixin_shadow
|
1088
|
+
assert_equal <<CSS, render(<<SCSS)
|
1089
|
+
foo {
|
1090
|
+
c: d; }
|
1091
|
+
|
1092
|
+
baz {
|
1093
|
+
a: b; }
|
1094
|
+
CSS
|
1095
|
+
@mixin bar {a: b}
|
1096
|
+
|
1097
|
+
foo {
|
1098
|
+
@mixin bar {c: d}
|
1099
|
+
@include bar;
|
1100
|
+
}
|
1101
|
+
|
1102
|
+
baz {@include bar}
|
1103
|
+
SCSS
|
1104
|
+
end
|
1105
|
+
|
1106
|
+
def test_nested_function_def
|
1107
|
+
assert_equal <<CSS, render(<<SCSS)
|
1108
|
+
foo {
|
1109
|
+
a: 1; }
|
1110
|
+
|
1111
|
+
bar {
|
1112
|
+
b: foo(); }
|
1113
|
+
CSS
|
1114
|
+
foo {
|
1115
|
+
@function foo() {@return 1}
|
1116
|
+
a: foo(); }
|
1117
|
+
|
1118
|
+
bar {b: foo()}
|
1119
|
+
SCSS
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
def test_nested_function_shadow
|
1123
|
+
assert_equal <<CSS, render(<<SCSS)
|
1124
|
+
foo {
|
1125
|
+
a: 2; }
|
1126
|
+
|
1127
|
+
baz {
|
1128
|
+
b: 1; }
|
1129
|
+
CSS
|
1130
|
+
@function foo() {@return 1}
|
1131
|
+
|
1132
|
+
foo {
|
1133
|
+
@function foo() {@return 2}
|
1134
|
+
a: foo();
|
1135
|
+
}
|
1136
|
+
|
1137
|
+
baz {b: foo()}
|
1138
|
+
SCSS
|
1139
|
+
end
|
1140
|
+
|
1076
1141
|
## Errors
|
1077
1142
|
|
1078
|
-
def
|
1143
|
+
def test_nested_mixin_def_is_scoped
|
1079
1144
|
render <<SCSS
|
1080
1145
|
foo {
|
1081
1146
|
@mixin bar {a: b}}
|
1147
|
+
bar {@include bar}
|
1082
1148
|
SCSS
|
1083
1149
|
assert(false, "Expected syntax error")
|
1084
1150
|
rescue Sass::SyntaxError => e
|
1085
|
-
assert_equal "
|
1086
|
-
assert_equal
|
1151
|
+
assert_equal "Undefined mixin 'bar'.", e.message
|
1152
|
+
assert_equal 3, e.sass_line
|
1087
1153
|
end
|
1088
1154
|
|
1089
1155
|
def test_rules_beneath_properties
|
@@ -0,0 +1,18 @@
|
|
1
|
+
@import "filename_fn_import";
|
2
|
+
|
3
|
+
@mixin local-mixin {
|
4
|
+
local-mixin: filename();
|
5
|
+
}
|
6
|
+
|
7
|
+
@function local-function() {
|
8
|
+
@return filename();
|
9
|
+
}
|
10
|
+
|
11
|
+
filename {
|
12
|
+
local: filename();
|
13
|
+
@include local-mixin;
|
14
|
+
local-function: local-function();
|
15
|
+
|
16
|
+
@include imported-mixin;
|
17
|
+
imported-function: imported-function();
|
18
|
+
}
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sass
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 592302391
|
5
5
|
prerelease: 6
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 2
|
9
9
|
- 0
|
10
10
|
- alpha
|
11
|
-
-
|
12
|
-
version: 3.2.0.alpha.
|
11
|
+
- 277
|
12
|
+
version: 3.2.0.alpha.277
|
13
13
|
platform: ruby
|
14
14
|
authors:
|
15
15
|
- Nathan Weizenbaum
|
@@ -19,7 +19,7 @@ autorequire:
|
|
19
19
|
bindir: bin
|
20
20
|
cert_chain: []
|
21
21
|
|
22
|
-
date: 2012-07-
|
22
|
+
date: 2012-07-27 00:00:00 -04:00
|
23
23
|
default_executable:
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
@@ -82,8 +82,8 @@ files:
|
|
82
82
|
- lib/sass/importers.rb
|
83
83
|
- lib/sass/importers/base.rb
|
84
84
|
- lib/sass/importers/filesystem.rb
|
85
|
-
- lib/sass/less.rb
|
86
85
|
- lib/sass/logger.rb
|
86
|
+
- lib/sass/media.rb
|
87
87
|
- lib/sass/logger/base.rb
|
88
88
|
- lib/sass/logger/log_level.rb
|
89
89
|
- lib/sass/scss.rb
|
@@ -110,10 +110,10 @@ files:
|
|
110
110
|
- lib/sass/script/list.rb
|
111
111
|
- lib/sass/script/literal.rb
|
112
112
|
- lib/sass/script/node.rb
|
113
|
-
- lib/sass/script/null.rb
|
114
113
|
- lib/sass/script/number.rb
|
115
114
|
- lib/sass/script/operation.rb
|
116
115
|
- lib/sass/script/parser.rb
|
116
|
+
- lib/sass/script/null.rb
|
117
117
|
- lib/sass/script/string.rb
|
118
118
|
- lib/sass/script/string_interpolation.rb
|
119
119
|
- lib/sass/script/unary_operation.rb
|
@@ -132,7 +132,7 @@ files:
|
|
132
132
|
- lib/sass/selector/simple.rb
|
133
133
|
- lib/sass/selector/simple_sequence.rb
|
134
134
|
- lib/sass/shared.rb
|
135
|
-
- lib/sass/
|
135
|
+
- lib/sass/supports.rb
|
136
136
|
- lib/sass/tree/charset_node.rb
|
137
137
|
- lib/sass/tree/comment_node.rb
|
138
138
|
- lib/sass/tree/directive_node.rb
|
@@ -154,6 +154,7 @@ files:
|
|
154
154
|
- lib/sass/tree/content_node.rb
|
155
155
|
- lib/sass/tree/css_import_node.rb
|
156
156
|
- lib/sass/tree/variable_node.rb
|
157
|
+
- lib/sass/tree/warn_node.rb
|
157
158
|
- lib/sass/tree/visitors/base.rb
|
158
159
|
- lib/sass/tree/visitors/check_nesting.rb
|
159
160
|
- lib/sass/tree/visitors/convert.rb
|
@@ -163,14 +164,12 @@ files:
|
|
163
164
|
- lib/sass/tree/visitors/perform.rb
|
164
165
|
- lib/sass/tree/visitors/set_options.rb
|
165
166
|
- lib/sass/tree/visitors/to_css.rb
|
166
|
-
- lib/sass/tree/warn_node.rb
|
167
167
|
- lib/sass/tree/while_node.rb
|
168
168
|
- lib/sass/tree/supports_node.rb
|
169
169
|
- lib/sass/tree/trace_node.rb
|
170
170
|
- lib/sass/util/multibyte_string_scanner.rb
|
171
171
|
- lib/sass/util/subset_map.rb
|
172
172
|
- lib/sass/version.rb
|
173
|
-
- lib/sass/supports.rb
|
174
173
|
- vendor/listen/CHANGELOG.md
|
175
174
|
- vendor/listen/Gemfile
|
176
175
|
- vendor/listen/Guardfile
|
@@ -222,16 +221,16 @@ files:
|
|
222
221
|
- test/sass/fixtures/test_staleness_check_across_importers.scss
|
223
222
|
- test/sass/functions_test.rb
|
224
223
|
- test/sass/importer_test.rb
|
225
|
-
- test/sass/less_conversion_test.rb
|
226
224
|
- test/sass/logger_test.rb
|
227
225
|
- test/sass/mock_importer.rb
|
226
|
+
- test/sass/plugin_test.rb
|
228
227
|
- test/sass/more_results/more1.css
|
229
228
|
- test/sass/more_results/more1_with_line_comments.css
|
230
229
|
- test/sass/more_results/more_import.css
|
231
230
|
- test/sass/more_templates/_more_partial.sass
|
232
231
|
- test/sass/more_templates/more1.sass
|
233
232
|
- test/sass/more_templates/more_import.sass
|
234
|
-
- test/sass/
|
233
|
+
- test/sass/script_test.rb
|
235
234
|
- test/sass/results/alt.css
|
236
235
|
- test/sass/results/basic.css
|
237
236
|
- test/sass/results/compact.css
|
@@ -258,8 +257,9 @@ files:
|
|
258
257
|
- test/sass/results/units.css
|
259
258
|
- test/sass/results/warn.css
|
260
259
|
- test/sass/results/warn_imported.css
|
260
|
+
- test/sass/results/filename_fn.css
|
261
261
|
- test/sass/script_conversion_test.rb
|
262
|
-
- test/sass/
|
262
|
+
- test/sass/test_helper.rb
|
263
263
|
- test/sass/scss/css_test.rb
|
264
264
|
- test/sass/scss/rx_test.rb
|
265
265
|
- test/sass/scss/scss_test.rb
|
@@ -275,7 +275,6 @@ files:
|
|
275
275
|
- test/sass/templates/bork2.sass
|
276
276
|
- test/sass/templates/bork3.sass
|
277
277
|
- test/sass/templates/bork4.sass
|
278
|
-
- test/sass/templates/bork5.sass
|
279
278
|
- test/sass/templates/compact.sass
|
280
279
|
- test/sass/templates/complex.sass
|
281
280
|
- test/sass/templates/compressed.sass
|
@@ -298,7 +297,6 @@ files:
|
|
298
297
|
- test/sass/templates/nested_bork2.sass
|
299
298
|
- test/sass/templates/nested_bork3.sass
|
300
299
|
- test/sass/templates/nested_bork4.sass
|
301
|
-
- test/sass/templates/nested_bork5.sass
|
302
300
|
- test/sass/templates/nested_import.sass
|
303
301
|
- test/sass/templates/nested_mixin_bork.sass
|
304
302
|
- test/sass/templates/options.sass
|
@@ -313,10 +311,11 @@ files:
|
|
313
311
|
- test/sass/templates/units.sass
|
314
312
|
- test/sass/templates/warn.sass
|
315
313
|
- test/sass/templates/warn_imported.sass
|
316
|
-
- test/sass/
|
314
|
+
- test/sass/templates/_filename_fn_import.scss
|
315
|
+
- test/sass/templates/filename_fn.scss
|
316
|
+
- test/sass/util_test.rb
|
317
317
|
- test/sass/util/multibyte_string_scanner_test.rb
|
318
318
|
- test/sass/util/subset_map_test.rb
|
319
|
-
- test/sass/util_test.rb
|
320
319
|
- test/test_helper.rb
|
321
320
|
- extra/update_watch.rb
|
322
321
|
- Rakefile
|
@@ -375,14 +374,13 @@ test_files:
|
|
375
374
|
- test/sass/extend_test.rb
|
376
375
|
- test/sass/functions_test.rb
|
377
376
|
- test/sass/importer_test.rb
|
378
|
-
- test/sass/less_conversion_test.rb
|
379
377
|
- test/sass/logger_test.rb
|
380
378
|
- test/sass/plugin_test.rb
|
381
|
-
- test/sass/script_conversion_test.rb
|
382
379
|
- test/sass/script_test.rb
|
380
|
+
- test/sass/script_conversion_test.rb
|
383
381
|
- test/sass/scss/css_test.rb
|
384
382
|
- test/sass/scss/rx_test.rb
|
385
383
|
- test/sass/scss/scss_test.rb
|
384
|
+
- test/sass/util_test.rb
|
386
385
|
- test/sass/util/multibyte_string_scanner_test.rb
|
387
386
|
- test/sass/util/subset_map_test.rb
|
388
|
-
- test/sass/util_test.rb
|
data/lib/sass/less.rb
DELETED
@@ -1,382 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require 'less'
|
4
|
-
|
5
|
-
module Less
|
6
|
-
# This is the class that Treetop defines for parsing Less files.
|
7
|
-
# Since not everything gets parsed into the AST but is instead resolved at parse-time,
|
8
|
-
# we need to override some of it so that it can be converted into Sass.
|
9
|
-
module StyleSheet
|
10
|
-
# Selector mixins that don't have arguments.
|
11
|
-
# This depends only on the syntax at the call site;
|
12
|
-
# if it doesn't use parens, it hits this production,
|
13
|
-
# regardless of whether the mixin being called has arguments or not.
|
14
|
-
module Mixin4
|
15
|
-
def build_with_sass(env)
|
16
|
-
selectors.build(env, :mixin).each do |path|
|
17
|
-
el = path.inject(env.root) do |current, node|
|
18
|
-
current.descend(node.selector, node) or raise MixinNameError, "#{selectors.text_value} in #{env}"
|
19
|
-
end
|
20
|
-
if el.is_a?(Node::Mixin::Def)
|
21
|
-
# Calling a mixin with arguments, which gets compiled to a Sass mixin
|
22
|
-
env << Node::Mixin::Call.new(el, [], env)
|
23
|
-
else
|
24
|
-
# Calling a mixin without arguments, which gets compiled to @extend
|
25
|
-
sel = selector_str(path)
|
26
|
-
base = selector_str(selector_base(path))
|
27
|
-
if base == sel
|
28
|
-
env << Node::SassNode.new(Sass::Tree::ExtendNode.new([sel], false))
|
29
|
-
else
|
30
|
-
Sass::Util.sass_warn <<WARNING
|
31
|
-
WARNING: Sass doesn't support mixing in selector sequences.
|
32
|
-
Replacing "#{sel}" with "@extend #{base}"
|
33
|
-
WARNING
|
34
|
-
env << Node::SassNode.new(Sass::Tree::CommentNode.new(["// #{sel};"], :silent))
|
35
|
-
env << Node::SassNode.new(Sass::Tree::ExtendNode.new([base], false))
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
39
|
-
end
|
40
|
-
alias_method :build_without_sass, :build
|
41
|
-
alias_method :build, :build_with_sass
|
42
|
-
|
43
|
-
def selector_base(path)
|
44
|
-
el, i = Sass::Util.enum_with_index(path).to_a.reverse.find {|e, i| e.selector !~ /^:{1,2}$/} ||
|
45
|
-
[path.first, 0]
|
46
|
-
sel = (el.selector =~ /^:{0,2}$/ ? el.selector : "")
|
47
|
-
[Node::Element.new(el.name, sel)] + path[i+1..-1]
|
48
|
-
end
|
49
|
-
|
50
|
-
def selector_str(path)
|
51
|
-
path.map {|e| e.sass_selector_str}.join(' ').gsub(' :', ':')
|
52
|
-
end
|
53
|
-
end
|
54
|
-
|
55
|
-
# Property and variable declarations.
|
56
|
-
# We want to keep track of the line number
|
57
|
-
# so we don't space out the variables too much in the generated Sass.
|
58
|
-
module Declaration3
|
59
|
-
def build_with_sass(env)
|
60
|
-
build_without_sass(env)
|
61
|
-
env.rules.last.src_line = input.line_of(interval.first)
|
62
|
-
end
|
63
|
-
alias_method :build_without_sass, :build
|
64
|
-
alias_method :build, :build_with_sass
|
65
|
-
end
|
66
|
-
|
67
|
-
# Comma-separated selectors.
|
68
|
-
# Less breaks these into completely separate nodes.
|
69
|
-
# Since we don't want this duplication in the Sass,
|
70
|
-
# we modify the production to keep track of the original group
|
71
|
-
# so we can reconstruct it later on.
|
72
|
-
module Selectors2
|
73
|
-
def build_with_sass(env, method)
|
74
|
-
arr = build_without_sass(env, method)
|
75
|
-
return arr if method == :mixin
|
76
|
-
rarr = arr.map {|e| e.top(env)}
|
77
|
-
rarr.each {|e| e.group = rarr}
|
78
|
-
arr
|
79
|
-
end
|
80
|
-
alias_method :build_without_sass, :build
|
81
|
-
alias_method :build, :build_with_sass
|
82
|
-
end
|
83
|
-
|
84
|
-
# Attribute accessors.
|
85
|
-
# Sass just flat-out doesn't support these,
|
86
|
-
# so we print a warning to that effect and compile them to comments.
|
87
|
-
module Accessor1
|
88
|
-
def build(env)
|
89
|
-
Sass::Util.sass_warn <<WARNING
|
90
|
-
WARNING: Sass doesn't support attribute accessors.
|
91
|
-
Ignoring #{text_value}
|
92
|
-
WARNING
|
93
|
-
Node::Anonymous.new("/* #{text_value} */")
|
94
|
-
end
|
95
|
-
end
|
96
|
-
|
97
|
-
# @import statements.
|
98
|
-
# Less handles these during parse-time,
|
99
|
-
# so we want to wrap them up as a node in the tree.
|
100
|
-
# We also include the nodes, though,
|
101
|
-
# since we want to have access to the mixins
|
102
|
-
# so we can tell if they take arguments or not.
|
103
|
-
# The included nodes are hidden so they don't appear in the output.
|
104
|
-
module Import1
|
105
|
-
def build_with_sass(env)
|
106
|
-
line = input.line_of(interval.first)
|
107
|
-
import = Sass::Tree::ImportNode.new(url.value.gsub(/\.less$/, ''))
|
108
|
-
import.line = input.line_of(interval.first)
|
109
|
-
env << Node::SassNode.new(import)
|
110
|
-
old_rules = env.rules.dup
|
111
|
-
build_without_sass env
|
112
|
-
(env.rules - old_rules).each {|r| r.hide_in_sass = true}
|
113
|
-
rescue ImportError => e
|
114
|
-
raise Sass::SyntaxError.new("File to import #{url.text_value} not found or unreadable", :line => line)
|
115
|
-
end
|
116
|
-
alias_method :build_without_sass, :build
|
117
|
-
alias_method :build, :build_with_sass
|
118
|
-
end
|
119
|
-
|
120
|
-
# The IE-specific `alpha(opacity=@var)`.
|
121
|
-
# Less manually resolves the variable here at parse-time.
|
122
|
-
# We want to keep the variable around,
|
123
|
-
# so we compile this to a function.
|
124
|
-
# Less doesn't actually have an `=` operator,
|
125
|
-
# but that's okay since it's just getting compiled to Sass anyway.
|
126
|
-
module Entity::Alpha1
|
127
|
-
def build(env)
|
128
|
-
Node::Function.new("alpha",
|
129
|
-
[Node::Expression.new([
|
130
|
-
Node::Keyword.new("opacity"),
|
131
|
-
Node::Operator.new("="),
|
132
|
-
variable.build])])
|
133
|
-
end
|
134
|
-
end
|
135
|
-
end
|
136
|
-
|
137
|
-
# The Less AST classes for the document,
|
138
|
-
# including both stylesheet-level nodes and expression-level nodes.
|
139
|
-
# The main purpose of overriding these is to add `#to_sass_tree` functions
|
140
|
-
# for converting to Sass.
|
141
|
-
module Node
|
142
|
-
module Entity
|
143
|
-
attr_accessor :hide_in_sass
|
144
|
-
attr_accessor :src_line
|
145
|
-
end
|
146
|
-
|
147
|
-
class Element
|
148
|
-
attr_accessor :group
|
149
|
-
|
150
|
-
def top(env)
|
151
|
-
return self if parent.equal?(env)
|
152
|
-
return parent.top(env)
|
153
|
-
end
|
154
|
-
|
155
|
-
def to_sass_tree
|
156
|
-
if root?
|
157
|
-
root = Sass::Tree::RootNode.new("")
|
158
|
-
rules.each {|r| root << r.to_sass_tree}
|
159
|
-
return root
|
160
|
-
end
|
161
|
-
return if hide_in_sass
|
162
|
-
return if !self.equal?(group.first)
|
163
|
-
|
164
|
-
last_el = nil
|
165
|
-
sel = group.map do |el|
|
166
|
-
comma_sel = []
|
167
|
-
loop do
|
168
|
-
comma_sel << el.sass_selector_str
|
169
|
-
break unless el.rules.size == 1 && el.rules.first.is_a?(Element)
|
170
|
-
el = el.rules.first
|
171
|
-
end
|
172
|
-
last_el = el
|
173
|
-
comma_sel = comma_sel.join(' ').gsub(' :', ':')
|
174
|
-
comma_sel.gsub!(/^:/, '&:') unless parent.root?
|
175
|
-
comma_sel
|
176
|
-
end.join(', ')
|
177
|
-
|
178
|
-
rule = Sass::Tree::RuleNode.new([sel])
|
179
|
-
last_el.rules.each {|r| rule << r.to_sass_tree}
|
180
|
-
return rule
|
181
|
-
end
|
182
|
-
|
183
|
-
def sass_selector_str
|
184
|
-
case @selector
|
185
|
-
when /[+>~]/; "#{@selector} #{@name}"
|
186
|
-
else @selector + @name
|
187
|
-
end
|
188
|
-
end
|
189
|
-
end
|
190
|
-
|
191
|
-
module Mixin
|
192
|
-
class Call
|
193
|
-
def to_sass_tree
|
194
|
-
return if hide_in_sass
|
195
|
-
Sass::Tree::MixinNode.new(@mixin.name.gsub(/^\./, ''), @params.map {|v| v.to_sass_tree}, {})
|
196
|
-
end
|
197
|
-
end
|
198
|
-
|
199
|
-
class Def
|
200
|
-
def to_sass_tree
|
201
|
-
return if hide_in_sass
|
202
|
-
mixin = Sass::Tree::MixinDefNode.new(name, @params.map do |v|
|
203
|
-
v.value.flatten!
|
204
|
-
[Sass::Script::Variable.new(v), v.value.to_sass_tree]
|
205
|
-
end)
|
206
|
-
rules.each {|r| mixin << r.to_sass_tree}
|
207
|
-
mixin
|
208
|
-
end
|
209
|
-
end
|
210
|
-
end
|
211
|
-
|
212
|
-
class SassNode
|
213
|
-
include Entity
|
214
|
-
|
215
|
-
def initialize(node)
|
216
|
-
@node = node
|
217
|
-
end
|
218
|
-
|
219
|
-
def to_sass_tree
|
220
|
-
return if hide_in_sass
|
221
|
-
@node
|
222
|
-
end
|
223
|
-
end
|
224
|
-
|
225
|
-
class Property
|
226
|
-
def to_sass_tree
|
227
|
-
return if hide_in_sass
|
228
|
-
Sass::Tree::PropNode.new([self], @value.to_sass_tree, :new)
|
229
|
-
end
|
230
|
-
end
|
231
|
-
|
232
|
-
class Expression
|
233
|
-
def to_sass_tree
|
234
|
-
if first.is_a?(Array)
|
235
|
-
val = map {|e| _to_sass_tree(e)}.inject(nil) do |e, i|
|
236
|
-
next i unless e
|
237
|
-
Sass::Script::Operation.new(e, i, :comma)
|
238
|
-
end
|
239
|
-
else
|
240
|
-
val = _to_sass_tree(self)
|
241
|
-
end
|
242
|
-
val.options = {}
|
243
|
-
val
|
244
|
-
end
|
245
|
-
|
246
|
-
private
|
247
|
-
|
248
|
-
LESS_TO_SASS_OPERATORS = {"-" => :minus, "+" => :plus, "*" => :times, "/" => :div, "=" => :single_eq}
|
249
|
-
|
250
|
-
def _to_sass_tree(arr)
|
251
|
-
e, rest = _to_sass_tree_plus_minus_eq(arr)
|
252
|
-
until rest.empty?
|
253
|
-
e2, rest = _to_sass_tree_plus_minus_eq(rest)
|
254
|
-
e = Sass::Script::Operation.new(e, e2, :space)
|
255
|
-
end
|
256
|
-
return e
|
257
|
-
end
|
258
|
-
|
259
|
-
def _to_sass_tree_plus_minus_eq(arr)
|
260
|
-
e, rest = _to_sass_tree_times_div(arr)
|
261
|
-
while rest[0] && rest[0].is_a?(Operator) && %w[+ - =].include?(rest[0])
|
262
|
-
op = LESS_TO_SASS_OPERATORS[rest[0]]
|
263
|
-
e2, rest = _to_sass_tree_times_div(rest[1..-1])
|
264
|
-
e = Sass::Script::Operation.new(e, e2, op)
|
265
|
-
end
|
266
|
-
return e, rest
|
267
|
-
end
|
268
|
-
|
269
|
-
def _to_sass_tree_times_div(arr)
|
270
|
-
e, rest = _to_sass_tree_unary(arr)
|
271
|
-
while rest[0] && rest[0].is_a?(Operator) && %w[* /].include?(rest[0])
|
272
|
-
op = LESS_TO_SASS_OPERATORS[rest[0]]
|
273
|
-
e2, rest = _to_sass_tree_unary(rest[1..-1])
|
274
|
-
e = Sass::Script::Operation.new(e, e2, op)
|
275
|
-
end
|
276
|
-
return e, rest
|
277
|
-
end
|
278
|
-
|
279
|
-
def _to_sass_tree_unary(arr)
|
280
|
-
if arr[0] == "-"
|
281
|
-
first, rest = _sass_split(arr[1..-1])
|
282
|
-
return Sass::Script::UnaryOperation.new(first, :minus), rest
|
283
|
-
else
|
284
|
-
return _sass_split(arr[0..-1])
|
285
|
-
end
|
286
|
-
end
|
287
|
-
|
288
|
-
def _sass_split(arr)
|
289
|
-
return arr[0].to_sass_tree, arr[1..-1] unless arr[0] == "("
|
290
|
-
parens = 1
|
291
|
-
i = arr[1..-1].each_with_index do |e, i|
|
292
|
-
parens += 1 if e == "("
|
293
|
-
parens -= 1 if e == ")"
|
294
|
-
break i if parens == 0
|
295
|
-
end
|
296
|
-
|
297
|
-
return _to_sass_tree(arr[1...i+1]), arr[i+2..-1]
|
298
|
-
end
|
299
|
-
end
|
300
|
-
|
301
|
-
class Color
|
302
|
-
def to_sass_tree
|
303
|
-
Sass::Script::Color.new(:red => r, :green => g, :blue => b, :alpha => a)
|
304
|
-
end
|
305
|
-
end
|
306
|
-
|
307
|
-
class Number
|
308
|
-
def to_sass_tree
|
309
|
-
Sass::Script::Number.new(self, [self.unit])
|
310
|
-
end
|
311
|
-
end
|
312
|
-
|
313
|
-
class Variable
|
314
|
-
def to_sass_tree
|
315
|
-
if @declaration
|
316
|
-
return if hide_in_sass
|
317
|
-
node = Sass::Tree::VariableNode.new(self, @value.to_sass_tree, false)
|
318
|
-
node.line = self.src_line
|
319
|
-
node
|
320
|
-
else
|
321
|
-
Sass::Script::Variable.new(self)
|
322
|
-
end
|
323
|
-
end
|
324
|
-
end
|
325
|
-
|
326
|
-
class Function
|
327
|
-
def to_sass_tree
|
328
|
-
Sass::Script::Funcall.new(self, @args.map {|a| a.to_sass_tree}, {})
|
329
|
-
end
|
330
|
-
end
|
331
|
-
|
332
|
-
class Keyword
|
333
|
-
def to_sass_tree
|
334
|
-
Sass::Script::String.new(self)
|
335
|
-
end
|
336
|
-
end
|
337
|
-
|
338
|
-
class Anonymous
|
339
|
-
def to_sass_tree
|
340
|
-
Sass::Script::String.new(self)
|
341
|
-
end
|
342
|
-
end
|
343
|
-
|
344
|
-
class Quoted
|
345
|
-
def to_sass_tree
|
346
|
-
Sass::Script::String.new(self, true)
|
347
|
-
end
|
348
|
-
end
|
349
|
-
|
350
|
-
class FontFamily
|
351
|
-
def to_sass_tree
|
352
|
-
@family.map {|f| f.to_sass_tree}.inject(nil) do |e, f|
|
353
|
-
next f unless e
|
354
|
-
Sass::Script::Operation.new(e, f, :comma)
|
355
|
-
end
|
356
|
-
end
|
357
|
-
end
|
358
|
-
end
|
359
|
-
|
360
|
-
# The entry point to Less.
|
361
|
-
# By default Less doesn't preserve the filename of the file being parsed,
|
362
|
-
# which is unpleasant for error reporting.
|
363
|
-
# Our monkeypatch keeps it around.
|
364
|
-
class Engine
|
365
|
-
def initialize_with_sass(obj, opts = {})
|
366
|
-
initialize_without_sass(obj, opts)
|
367
|
-
@filename = obj.path if obj.is_a?(File)
|
368
|
-
end
|
369
|
-
alias_method :initialize_without_sass, :initialize
|
370
|
-
alias_method :initialize, :initialize_with_sass
|
371
|
-
|
372
|
-
def parse_with_sass
|
373
|
-
parse_without_sass
|
374
|
-
rescue Sass::SyntaxError => e
|
375
|
-
e.modify_backtrace(:filename => @filename)
|
376
|
-
raise e
|
377
|
-
end
|
378
|
-
alias_method :parse_without_sass, :parse
|
379
|
-
alias_method :parse, :parse_with_sass
|
380
|
-
alias_method :to_tree, :parse
|
381
|
-
end
|
382
|
-
end
|