Skip to content

Commit

Permalink
Support a stack of StringScanner in parser
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Oct 25, 2013
1 parent 04f480d commit 36c74a6
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion lib/opal/lexer.rb
Expand Up @@ -15,7 +15,9 @@ def initialize(source, file)
@file = file

@string_parse_stack = []

@scanner = StringScanner.new(source)
@scanner_stack = [@scanner]
end

def cond_push(n)
Expand Down Expand Up @@ -1235,7 +1237,16 @@ def next_token
return [matched =~ /^[A-Z]/ ? :CONSTANT : :IDENTIFIER, matched]

end
return [false, false] if scanner.eos?

if scanner.eos?
if @scanner_stack.size == 1 # our main scanner, we cant pop this
return [false, false]
else # we were probably parsing a heredoc, so pop that parser and continue
@scanner_stack.pop
@scanner = @scanner_stack.last
return next_token
end
end

raise "Unexpected content in parsing stream `#{scanner.peek 5}` :#{@file}:#{@line}"
end
Expand Down

0 comments on commit 36c74a6

Please sign in to comment.