Sha256: 147a668d2a47948b63979db7937c604f45cb4824329216c367240a82ea4d7e4c
Contents?: true
Size: 455 Bytes
Versions: 28
Compression:
Stored size: 455 Bytes
Contents
# frozen_string_literal: true module RBS module Prototype class Runtime module Reflection def self.object_class(value) @object_class ||= Object.instance_method(:class) @object_class.bind_call(value) end def self.constants_of(mod, inherit = true) @constants_of ||= Module.instance_method(:constants) @constants_of.bind_call(mod, inherit) end end end end end
Version data entries
28 entries across 28 versions & 1 rubygems