class SyntaxTree::Parser

def consume_tstring_end(location)

Experimental RBS support (using type sampling data from the type_fusion project).

def consume_tstring_end: (SyntaxTree::Location location) -> untyped

This signature was generated using 14 samples from 1 application.

def consume_tstring_end(location)
  index = tokens.rindex { |token| token.is_a?(TStringEnd) }
  consume_error("string ending", location) unless index
  tokens.delete_at(index)
end