Class: Opal::REPL
- Inherits:
-
Object
- Object
- Opal::REPL
- Defined in:
- opal/lib/opal/repl.rb
Constant Summary collapse
- HISTORY_PATH =
File.('~/.opal-repl-history')
Instance Method Summary collapse
-
#initialize ⇒ REPL
constructor
A new instance of REPL.
- #load_file(filename) ⇒ Object
- #load_opal ⇒ Object
- #run(filename = nil) ⇒ Object
- #run_input_loop ⇒ Object
- #run_line(line) ⇒ Object
Constructor Details
#initialize ⇒ REPL
Returns a new instance of REPL.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'opal/lib/opal/repl.rb', line 9 def initialize begin require 'mini_racer' rescue LoadError abort 'opal-repl depends on mini_racer gem, which is not currently installed' end begin require 'readline' rescue LoadError abort 'opal-repl depends on readline, which is not currently available' end MiniRacer::Platform.set_flags! :harmony @history = File.exist?(HISTORY_PATH) end |
Instance Method Details
#load_file(filename) ⇒ Object
36 37 38 39 |
# File 'opal/lib/opal/repl.rb', line 36 def load_file(filename) raise "file does not exist: #{filename}" unless File.exist? filename eval_ruby File.read(filename) end |
#load_opal ⇒ Object
41 42 43 44 45 46 |
# File 'opal/lib/opal/repl.rb', line 41 def load_opal v8.attach('console.log', method(:puts).to_proc) v8.attach('console.warn', method(:warn).to_proc) v8.eval Opal::Builder.new.build('opal').to_s v8.attach('Opal.exit', method(:exit).to_proc) end |
#run(filename = nil) ⇒ Object
27 28 29 30 31 32 33 34 |
# File 'opal/lib/opal/repl.rb', line 27 def run(filename = nil) load_opal load_file(filename) if filename load_history run_input_loop ensure dump_history end |
#run_input_loop ⇒ Object
53 54 55 56 57 58 59 60 61 62 63 |
# File 'opal/lib/opal/repl.rb', line 53 def run_input_loop # on SIGINT lets just return from the loop.. previous_trap = trap('SIGINT') { return } while (line = readline) run_line(line) end ensure trap('SIGINT', previous_trap || 'DEFAULT') end |
#run_line(line) ⇒ Object
48 49 50 51 |
# File 'opal/lib/opal/repl.rb', line 48 def run_line(line) result = eval_ruby(line) puts "=> #{result}" end |