module SyntaxTree

def self.parse(source)

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

def self.parse: (String source) -> untyped

This signature was generated using 1 sample from 1 application.

Parses the given source and returns the syntax tree.
def self.parse(source)
  parser = Parser.new(source)
  response = parser.parse
  response unless parser.error?
end