mirror of
https://github.com/ruby/ruby.git
synced 2025-08-25 22:14:37 +02:00
152 lines
4 KiB
Ruby
152 lines
4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
# Here we are reopening the prism module to provide methods on nodes that aren't
|
|
# templated and are meant as convenience methods.
|
|
module Prism
|
|
module RegularExpressionOptions # :nodoc:
|
|
# Returns a numeric value that represents the flags that were used to create
|
|
# the regular expression.
|
|
def options
|
|
o = flags & (RegularExpressionFlags::IGNORE_CASE | RegularExpressionFlags::EXTENDED | RegularExpressionFlags::MULTI_LINE)
|
|
o |= Regexp::FIXEDENCODING if flags.anybits?(RegularExpressionFlags::EUC_JP | RegularExpressionFlags::WINDOWS_31J | RegularExpressionFlags::UTF_8)
|
|
o |= Regexp::NOENCODING if flags.anybits?(RegularExpressionFlags::ASCII_8BIT)
|
|
o
|
|
end
|
|
end
|
|
|
|
private_constant :RegularExpressionOptions
|
|
|
|
class FloatNode < Node
|
|
# Returns the value of the node as a Ruby Float.
|
|
def value
|
|
Float(slice)
|
|
end
|
|
end
|
|
|
|
class ImaginaryNode < Node
|
|
# Returns the value of the node as a Ruby Complex.
|
|
def value
|
|
Complex(0, numeric.value)
|
|
end
|
|
end
|
|
|
|
class IntegerNode < Node
|
|
# Returns the value of the node as a Ruby Integer.
|
|
def value
|
|
Integer(slice)
|
|
end
|
|
end
|
|
|
|
class InterpolatedMatchLastLineNode < Node
|
|
include RegularExpressionOptions
|
|
end
|
|
|
|
class InterpolatedRegularExpressionNode < Node
|
|
include RegularExpressionOptions
|
|
end
|
|
|
|
class MatchLastLineNode < Node
|
|
include RegularExpressionOptions
|
|
end
|
|
|
|
class RationalNode < Node
|
|
# Returns the value of the node as a Ruby Rational.
|
|
def value
|
|
Rational(slice.chomp("r"))
|
|
end
|
|
end
|
|
|
|
class RegularExpressionNode < Node
|
|
include RegularExpressionOptions
|
|
end
|
|
|
|
class ConstantReadNode < Node
|
|
# Returns the list of parts for the full name of this constant.
|
|
# For example: [:Foo]
|
|
def full_name_parts
|
|
[name]
|
|
end
|
|
|
|
# Returns the full name of this constant. For example: "Foo"
|
|
def full_name
|
|
name.name
|
|
end
|
|
end
|
|
|
|
class ConstantPathNode < Node
|
|
# Returns the list of parts for the full name of this constant path.
|
|
# For example: [:Foo, :Bar]
|
|
def full_name_parts
|
|
parts = [child.name]
|
|
current = parent
|
|
|
|
while current.is_a?(ConstantPathNode)
|
|
parts.unshift(current.child.name)
|
|
current = current.parent
|
|
end
|
|
|
|
parts.unshift(current&.name || :"")
|
|
end
|
|
|
|
# Returns the full name of this constant path. For example: "Foo::Bar"
|
|
def full_name
|
|
full_name_parts.join("::")
|
|
end
|
|
end
|
|
|
|
class ConstantPathTargetNode < Node
|
|
# Returns the list of parts for the full name of this constant path.
|
|
# For example: [:Foo, :Bar]
|
|
def full_name_parts
|
|
(parent&.full_name_parts || [:""]).push(child.name)
|
|
end
|
|
|
|
# Returns the full name of this constant path. For example: "Foo::Bar"
|
|
def full_name
|
|
full_name_parts.join("::")
|
|
end
|
|
end
|
|
|
|
class ParametersNode < Node
|
|
# Mirrors the Method#parameters method.
|
|
def signature
|
|
names = []
|
|
|
|
requireds.each do |param|
|
|
names << (param.is_a?(MultiTargetNode) ? [:req] : [:req, param.name])
|
|
end
|
|
|
|
optionals.each { |param| names << [:opt, param.name] }
|
|
names << [:rest, rest.name || :*] if rest
|
|
|
|
posts.each do |param|
|
|
names << (param.is_a?(MultiTargetNode) ? [:req] : [:req, param.name])
|
|
end
|
|
|
|
# Regardless of the order in which the keywords were defined, the required
|
|
# keywords always come first followed by the optional keywords.
|
|
keyopt = []
|
|
keywords.each do |param|
|
|
if param.is_a?(OptionalKeywordParameterNode)
|
|
keyopt << param
|
|
else
|
|
names << [:keyreq, param.name]
|
|
end
|
|
end
|
|
|
|
keyopt.each { |param| names << [:key, param.name] }
|
|
|
|
case keyword_rest
|
|
when ForwardingParameterNode
|
|
names.concat([[:rest, :*], [:keyrest, :**], [:block, :&]])
|
|
when KeywordRestParameterNode
|
|
names << [:keyrest, keyword_rest.name || :**]
|
|
when NoKeywordsParameterNode
|
|
names << [:nokey]
|
|
end
|
|
|
|
names << [:block, block.name || :&] if block
|
|
names
|
|
end
|
|
end
|
|
end
|