Sha256: e21cfe8b2d9b45338246165bd30a62fc08e9e4e8b13fc666f83ee9c723927b27
Contents?: true
Size: 374 Bytes
Versions: 96
Compression:
Stored size: 374 Bytes
Contents
# frozen_string_literal: true # typed: true class T::Private::DeclState def self.current Thread.current[:opus_types__decl_state] ||= self.new end def self.current=(other) Thread.current[:opus_types__decl_state] = other end attr_accessor :active_declaration attr_accessor :skip_on_method_added def reset! self.active_declaration = nil end end
Version data entries
96 entries across 96 versions & 1 rubygems