We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4440546 commit 8563accCopy full SHA for 8563acc
lib/coderay/scanners/sass.rb
@@ -18,13 +18,11 @@ class Sass < CSS
18
19
def setup
20
@state = :initial
21
- @value_expected = false
22
end
23
24
def scan_tokens encoder, options
25
states = Array(options[:state] || @state)
26
string_delimiter = nil
27
- value_expected = @value_expected
28
29
until eos?
30
@@ -191,7 +189,6 @@ def scan_tokens encoder, options
191
189
192
190
if options[:keep_state]
193
@state = states
194
- @value_expected = value_expected
195
196
197
encoder
0 commit comments