Class: Sass::Repl
- Inherits:
- Object
- Object
- Sass::Repl
- Defined in:
- /Users/ceppstei/Projects/sass-lang/.sass/lib/sass/repl.rb
Overview
Runs a SassScript read-eval-print loop. It presents a prompt on the terminal, reads in SassScript expressions, evaluates them, and prints the result.
Instance Method Summary (collapse)
- - (Repl) initialize(options = {}) constructor
A new instance of Repl.
- - run
Starts the read-eval-print loop.
Constructor Details
- (Repl) initialize(options = {})
Returns a new instance of Repl
11 12 13 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/repl.rb', line 11
def initialize(options = {})
@options = options
end |
Instance Method Details
- run
Starts the read-eval-print loop.
16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/repl.rb', line 16
def run
environment = Environment.new
@line = 0
loop do
@line += 1
unless (text = Readline.readline('>> '))
puts
return
end
Readline::HISTORY << text
parse_input(environment, text)
end
end |