Class: Lasp::Parser
- Inherits:
-
Object
- Object
- Lasp::Parser
- Defined in:
- lib/lasp/parser.rb
Constant Summary collapse
- ESCAPE_CHARACTERS =
{ '\n' => "\n", '\t' => "\t", '\\\\' => "\\", '\"' => "\"", }
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.parse(program) ⇒ Object
12 13 14 |
# File 'lib/lasp/parser.rb', line 12 def self.parse(program) new.parse(program) end |