Create a new compiler with the given options.
Activate TLS_FALLBACK_SCSV for this context. See RFC 7507.
Configures store to look up CA certificates from the system default certificate store as needed basis. The location of the store can usually be determined by:
OpenSSL::X509::DEFAULT_CERT_FILE
OpenSSL::X509::DEFAULT_CERT_DIR
See also the man page X509_STORE_set_default_paths(3).
Permit block/lambda nodes to mark newlines within themselves.
Mark if/unless nodes as newlines.
Permit statements lists to mark newlines within themselves.
Visit a pattern within a pattern match. This is used to bypass the parenthesis node that can be used to wrap patterns.
a and b ^^^^^^^
foo(bar) ^^^
{ a: 1 } ^^^^
begin end ^^^^^^^^^
Visit a BlockNode.
case foo; when bar; end ^^^^^^^^^^^^^^^^^^^^^^^
class Foo; end ^^^^^^^^^^^^^^
def foo; end ^^^^^^^^^^^^
def self.foo; end ^^^^^^^^^^^^^^^^^
if foo then bar else baz end ^^^^^^^^^^^^
Visit an EnsureNode node.