class RBS::Types::Literal
Constants
- TABLE
Attributes
Public Class Methods
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1524 def initialize(literal:, location:) @literal = literal @location = location end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1580 def self.unescape_string(string, is_double_quote) if is_double_quote string.gsub!(/\\([0-9]{1,3})/) { ($1 || "").to_i(8).chr } string.gsub!(/\\x([0-9a-f]{1,2})/) { ($1 || "").to_i(16).chr } string.gsub!(/\\u([0-9a-fA-F]{4})/) { ($1 || "").to_i(16).chr(Encoding::UTF_8) } string.gsub!(/\\[abefnrstv"'\\]?/, TABLE) string else string.gsub!(/\\['\\]/, TABLE) string end end
Public Instance Methods
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1529 def ==(other) other.is_a?(Literal) && other.literal == literal end
Also aliased as: eql?
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1556 def has_classish_type? false end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1552 def has_self_type? false end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1535 def hash self.class.hash ^ literal.hash end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1544 def to_json(state = _ = nil) { class: :literal, literal: literal.inspect, location: location }.to_json(state) end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1548 def to_s(level = 0) literal.inspect end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/types.rb, line 1560 def with_nonreturn_void? false end