X7ROOT File Manager
Current Path:
/opt/alt/ruby34/share/ruby
opt
/
alt
/
ruby34
/
share
/
ruby
/
📁
..
📄
English.rb
(5.54 KB)
📄
benchmark.rb
(18.66 KB)
📁
bigdecimal
📄
bundled_gems.rb
(7.28 KB)
📁
cgi
📄
cgi.rb
(9.83 KB)
📄
coverage.rb
(368 B)
📄
date.rb
(1.17 KB)
📄
delegate.rb
(11.68 KB)
📁
did_you_mean
📄
did_you_mean.rb
(4.51 KB)
📁
digest
📄
digest.rb
(3.3 KB)
📁
erb
📄
erb.rb
(14.53 KB)
📁
error_highlight
📄
error_highlight.rb
(84 B)
📄
expect.rb
(2.19 KB)
📁
fiddle
📄
fiddle.rb
(3.67 KB)
📄
fileutils.rb
(78.8 KB)
📄
find.rb
(2.52 KB)
📁
forwardable
📄
forwardable.rb
(9.03 KB)
📁
io
📄
ipaddr.rb
(22.4 KB)
📁
json
📄
json.rb
(19.58 KB)
📁
logger
📄
logger.rb
(22.49 KB)
📄
mkmf.rb
(92.63 KB)
📄
monitor.rb
(6.97 KB)
📁
net
📁
objspace
📄
objspace.rb
(4.14 KB)
📄
open-uri.rb
(28.38 KB)
📁
open3
📄
open3.rb
(47.51 KB)
📁
openssl
📄
openssl.rb
(1.06 KB)
📄
optionparser.rb
(59 B)
📁
optparse
📄
optparse.rb
(64.17 KB)
📄
ostruct.rb
(14.22 KB)
📄
pathname.rb
(17.2 KB)
📄
pp.rb
(18.36 KB)
📄
prettyprint.rb
(15.93 KB)
📁
prism
📄
prism.rb
(2.93 KB)
📄
pstore.rb
(20.36 KB)
📁
psych
📄
psych.rb
(25.1 KB)
📁
random
📄
readline.rb
(215 B)
📁
reline
📄
reline.rb
(14.93 KB)
📄
resolv.rb
(86.88 KB)
📁
ripper
📄
ripper.rb
(2.44 KB)
📁
ruby_vm
📄
securerandom.rb
(2.28 KB)
📁
set
📄
set.rb
(25 KB)
📄
shellwords.rb
(7.53 KB)
📄
singleton.rb
(5.52 KB)
📄
socket.rb
(59.49 KB)
📁
strscan
📁
syntax_suggest
📄
syntax_suggest.rb
(74 B)
📄
tempfile.rb
(20.68 KB)
📄
time.rb
(23.96 KB)
📄
timeout.rb
(5.72 KB)
📄
tmpdir.rb
(5.62 KB)
📄
tsort.rb
(14.29 KB)
📄
un.rb
(11.17 KB)
📁
unicode_normalize
📁
uri
📄
uri.rb
(3.09 KB)
📁
vendor_ruby
📄
weakref.rb
(1.36 KB)
📁
yaml
📄
yaml.rb
(2.13 KB)
Editing: prism.rb
# frozen_string_literal: true # The Prism Ruby parser. # # "Parsing Ruby is suddenly manageable!" # - You, hopefully # module Prism # There are many files in prism that are templated to handle every node type, # which means the files can end up being quite large. We autoload them to make # our require speed faster since consuming libraries are unlikely to use all # of these features. autoload :BasicVisitor, "prism/visitor" autoload :Compiler, "prism/compiler" autoload :DesugarCompiler, "prism/desugar_compiler" autoload :Dispatcher, "prism/dispatcher" autoload :DotVisitor, "prism/dot_visitor" autoload :DSL, "prism/dsl" autoload :InspectVisitor, "prism/inspect_visitor" autoload :LexCompat, "prism/lex_compat" autoload :LexRipper, "prism/lex_compat" autoload :MutationCompiler, "prism/mutation_compiler" autoload :Pack, "prism/pack" autoload :Pattern, "prism/pattern" autoload :Reflection, "prism/reflection" autoload :Relocation, "prism/relocation" autoload :Serialize, "prism/serialize" autoload :StringQuery, "prism/string_query" autoload :Translation, "prism/translation" autoload :Visitor, "prism/visitor" # Some of these constants are not meant to be exposed, so marking them as # private here. private_constant :LexCompat private_constant :LexRipper # :call-seq: # Prism::lex_compat(source, **options) -> LexCompat::Result # # Returns a parse result whose value is an array of tokens that closely # resembles the return value of Ripper::lex. The main difference is that the # `:on_sp` token is not emitted. # # For supported options, see Prism::parse. def self.lex_compat(source, **options) LexCompat.new(source, **options).result # steep:ignore end # :call-seq: # Prism::lex_ripper(source) -> Array # # This lexes with the Ripper lex. It drops any space events but otherwise # returns the same tokens. Raises SyntaxError if the syntax in source is # invalid. def self.lex_ripper(source) LexRipper.new(source).result # steep:ignore end # :call-seq: # Prism::load(source, serialized) -> ParseResult # # Load the serialized AST using the source as a reference into a tree. def self.load(source, serialized) Serialize.load(source, serialized) end end require_relative "prism/polyfill/byteindex" require_relative "prism/node" require_relative "prism/node_ext" require_relative "prism/parse_result" # This is a Ruby implementation of the prism parser. If we're running on CRuby # and we haven't explicitly set the PRISM_FFI_BACKEND environment variable, then # it's going to require the built library. Otherwise, it's going to require a # module that uses FFI to call into the library. if RUBY_ENGINE == "ruby" and !ENV["PRISM_FFI_BACKEND"] # The C extension is the default backend on CRuby. Prism::BACKEND = :CEXT require "prism/prism" else # The FFI backend is used on other Ruby implementations. Prism::BACKEND = :FFI require_relative "prism/ffi" end
Upload File
Create Folder