Skip to content

Fix #tokens_to_s method for token streams #592

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/rdoc/token_stream.rb
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def token_stream
# Returns a string representation of the token stream

def tokens_to_s
token_stream.compact.map { |token| token.text }.join ''
token_stream.compact.map { |token| token[:text] }.join ''
end

end
Expand Down
15 changes: 15 additions & 0 deletions test/test_rdoc_token_stream.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,20 @@ def test_class_to_html_empty
assert_equal '', RDoc::TokenStream.to_html([])
end

def test_tokens_to_s
foo = Class.new do
include RDoc::TokenStream

def initialize
@token_stream = [
{ line_no: 0, char_no: 0, kind: :on_ident, text: "foo" },
{ line_no: 0, char_no: 0, kind: :on_sp, text: " " },
{ line_no: 0, char_no: 0, kind: :on_tstring, text: "'bar'" },
]
end
end.new

assert_equal "foo 'bar'", foo.tokens_to_s
end
end