repl_type_completor 0.1.10 → 0.1.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22c32aa7e27069f8002c1fe8080bb31c8470760c6c780ba8b566252389dc326d
4
- data.tar.gz: 296c548b10082570baadd90d3c94323f91373a6f0edbde307d01228aac7d83e0
3
+ metadata.gz: 45c80e0c90081af7992d51765854f270adbaec795050775ae778560737db52b2
4
+ data.tar.gz: 9b4745ab99625ebfd3b6c1ecb526ff6e5186ef9320873b55cc4f6d88103f25ec
5
5
  SHA512:
6
- metadata.gz: 3494ca3dfd41ac33f784e35384299a502703e503fc94732a7572cf2c4418d7754b53dfb2be49588aca33eab595dc3ed181686b4cfc32da0a36c6523aa82183c9
7
- data.tar.gz: 4beada48ab3e6d67c7543cf9a3e7797792fef8548cf4a8637024d72b865dcbb50ace5fe460ff8e504dae73e308116aefa523fdcbf4f161ed534060fa9c700e59
6
+ metadata.gz: c1a11765f19a07a3cf1a387448e2a57f8d0a087991a9cdae946eebdb6000552e4b7ed7a172a1d7dc65ba273def75e345b76e7adc290cb99af153017cc84df8e8
7
+ data.tar.gz: 682c8671b614077226d873dba34543dfae6598fb555cefa69bdce155e09de2bb4cc5cfb107d7a5b4887e50d6381eb923b2fda1d4babb5d458b506484b118b2d5
@@ -2,7 +2,8 @@
2
2
 
3
3
  module ReplTypeCompletor
4
4
  module Methods
5
- OBJECT_SINGLETON_CLASS_METHOD = Object.instance_method(:singleton_class)
5
+ OBJECT_SINGLETON_METHODS_METHOD = Object.instance_method(:singleton_methods)
6
+ OBJECT_PRIVATE_METHODS_METHOD = Object.instance_method(:private_methods)
6
7
  OBJECT_INSTANCE_VARIABLES_METHOD = Object.instance_method(:instance_variables)
7
8
  OBJECT_INSTANCE_VARIABLE_GET_METHOD = Object.instance_method(:instance_variable_get)
8
9
  OBJECT_CLASS_METHOD = Object.instance_method(:class)
@@ -284,36 +284,19 @@ module ReplTypeCompletor
284
284
  end
285
285
 
286
286
  def instance_variables
287
- self_singleton_types = self_type.types.grep(Types::SingletonType)
288
- singleton_classes = self_type.types.grep(Types::InstanceType).map(&:klass).select(&:singleton_class?)
289
- base_self = base_scope.self_object
290
- self_instance_variables = singleton_classes.flat_map do |singleton_class|
291
- if singleton_class.respond_to? :attached_object
292
- Methods::OBJECT_INSTANCE_VARIABLES_METHOD.bind_call(singleton_class.attached_object).map(&:to_s)
293
- elsif singleton_class == Methods::OBJECT_SINGLETON_CLASS_METHOD.bind_call(base_self)
294
- Methods::OBJECT_INSTANCE_VARIABLES_METHOD.bind_call(base_self).map(&:to_s)
295
- else
296
- []
297
- end
298
- end
287
+ modules = self_type.types.grep(Types::SingletonType).map(&:module_or_class)
288
+ instances = self_type.types.grep(Types::InstanceType).filter_map(&:instances).flatten(1)
289
+ self_objects = modules + instances
299
290
  [
300
- self_singleton_types.flat_map { _1.module_or_class.instance_variables.map(&:to_s) },
301
- self_instance_variables || [],
291
+ self_objects.flat_map { Methods::OBJECT_INSTANCE_VARIABLES_METHOD.bind_call(_1).map(&:to_s) },
302
292
  table_instance_variables
303
- ].inject(:|)
293
+ ].inject([], :|)
304
294
  end
305
295
 
306
296
  def self_instance_variable_get(name)
307
- self_objects = self_type.types.grep(Types::SingletonType).map(&:module_or_class)
308
- singleton_classes = self_type.types.grep(Types::InstanceType).map(&:klass).select(&:singleton_class?)
309
- base_self = base_scope.self_object
310
- singleton_classes.each do |singleton_class|
311
- if singleton_class.respond_to? :attached_object
312
- self_objects << singleton_class.attached_object
313
- elsif singleton_class == base_self.singleton_class
314
- self_objects << base_self
315
- end
316
- end
297
+ modules = self_type.types.grep(Types::SingletonType).map(&:module_or_class)
298
+ instances = self_type.types.grep(Types::InstanceType).filter_map(&:instances).flatten(1)
299
+ self_objects = modules + instances
317
300
  types = self_objects.map do |object|
318
301
  value = begin
319
302
  Methods::OBJECT_INSTANCE_VARIABLE_GET_METHOD.bind_call(object, name)
@@ -177,21 +177,20 @@ module ReplTypeCompletor
177
177
  def self.type_from_object(object)
178
178
  case object
179
179
  when Array
180
- InstanceType.new Array, { Elem: union_type_from_objects(object) }
180
+ InstanceType.new Array, nil, [object]
181
181
  when Hash
182
- InstanceType.new Hash, { K: union_type_from_objects(object.keys), V: union_type_from_objects(object.values) }
182
+ InstanceType.new Hash, nil, [object]
183
183
  when Module
184
184
  SingletonType.new object
185
185
  else
186
- klass = Methods::OBJECT_SINGLETON_CLASS_METHOD.bind_call(object) rescue Methods::OBJECT_CLASS_METHOD.bind_call(object)
187
- InstanceType.new klass
186
+ InstanceType.new Methods::OBJECT_CLASS_METHOD.bind_call(object), nil, [object]
188
187
  end
189
188
  end
190
189
 
191
190
  def self.union_type_from_objects(objects)
192
- values = objects.size <= OBJECT_TO_TYPE_SAMPLE_SIZE ? objects : objects.sample(OBJECT_TO_TYPE_SAMPLE_SIZE)
193
- klasses = values.map { Methods::OBJECT_CLASS_METHOD.bind_call(_1) }
194
- UnionType[*klasses.uniq.map { InstanceType.new _1 }]
191
+ instanes = objects.size <= OBJECT_TO_TYPE_SAMPLE_SIZE ? objects : objects.sample(OBJECT_TO_TYPE_SAMPLE_SIZE)
192
+ class_instanes = instanes.group_by { Methods::OBJECT_CLASS_METHOD.bind_call(_1) }
193
+ UnionType[*class_instanes.map { InstanceType.new _1, nil, _2 }]
195
194
  end
196
195
 
197
196
  class SingletonType
@@ -212,18 +211,59 @@ module ReplTypeCompletor
212
211
  end
213
212
 
214
213
  class InstanceType
215
- attr_reader :klass, :params
216
- def initialize(klass, params = {})
214
+ attr_reader :klass, :raw_params, :instances
215
+ def initialize(klass, params = nil, instances = nil)
217
216
  @klass = klass
218
- @params = params
217
+ @raw_params = params if params && !params.empty?
218
+ @instances = instances if instances && !instances.empty?
219
219
  end
220
+
220
221
  def transform() = yield(self)
221
- def methods() = rbs_methods.select { _2.public? }.keys | @klass.instance_methods
222
- def all_methods() = rbs_methods.keys | @klass.instance_methods | @klass.private_instance_methods
222
+ def methods() = rbs_methods.select { _2.public? }.keys | @klass.instance_methods | singleton_methods
223
+ def all_methods() = rbs_methods.keys | @klass.instance_methods | @klass.private_instance_methods | singleton_methods | instances_private_methods
224
+
225
+ def singleton_methods
226
+ return [] unless @instances
227
+ @singleton_methods ||= @instances.map do |instance|
228
+ Methods::OBJECT_SINGLETON_METHODS_METHOD.bind_call(instance)
229
+ end.inject(:|)
230
+ end
231
+
232
+ def instances_private_methods
233
+ return [] unless @instances
234
+ @private_instances_methods ||= @instances.map do |instance|
235
+ Methods::OBJECT_PRIVATE_METHODS_METHOD.bind_call(instance, false)
236
+ end.inject(:|)
237
+ end
238
+
239
+ def params
240
+ @params ||= expand_params
241
+ end
242
+
243
+ def expand_params
244
+ params = @raw_params || {}
245
+ return params unless @instances
246
+
247
+ if @klass == Array
248
+ type = Types.union_type_from_objects(@instances.flatten(1))
249
+ { Elem: UnionType[*params[:Elem], *type] }
250
+ elsif @klass == Hash
251
+ key = Types.union_type_from_objects(@instances.map(&:keys).flatten(1))
252
+ value = Types.union_type_from_objects(@instances.map(&:values).flatten(1))
253
+ {
254
+ K: UnionType[*params[:K], key],
255
+ V: UnionType[*params[:V], value]
256
+ }
257
+ else
258
+ params
259
+ end
260
+ end
261
+
223
262
  def constants() = []
224
263
  def types() = [self]
225
264
  def nillable?() = (@klass == NilClass)
226
265
  def nonnillable() = self
266
+
227
267
  def rbs_methods
228
268
  return {} unless Types.rbs_builder
229
269
 
@@ -231,6 +271,7 @@ module ReplTypeCompletor
231
271
  type_name = Types.rbs_absolute_type_name(name)
232
272
  Types.rbs_builder.build_instance(type_name).methods rescue {}
233
273
  end
274
+
234
275
  def inspect
235
276
  if params.empty?
236
277
  inspect_without_params
@@ -239,6 +280,7 @@ module ReplTypeCompletor
239
280
  "#{inspect_without_params}#{params_string}"
240
281
  end
241
282
  end
283
+
242
284
  def inspect_without_params
243
285
  if klass == NilClass
244
286
  'nil'
@@ -247,7 +289,7 @@ module ReplTypeCompletor
247
289
  elsif klass == FalseClass
248
290
  'false'
249
291
  else
250
- klass.singleton_class? ? klass.superclass.to_s : klass.to_s
292
+ klass.to_s
251
293
  end
252
294
  end
253
295
  end
@@ -275,24 +317,26 @@ module ReplTypeCompletor
275
317
 
276
318
  def initialize(*types)
277
319
  @types = []
278
- singletons = []
279
- instances = {}
320
+ singleton_types = []
321
+ instance_types = {}
280
322
  collect = -> type do
281
323
  case type
282
324
  in UnionType
283
325
  type.types.each(&collect)
284
326
  in InstanceType
285
- params = (instances[type.klass] ||= {})
286
- type.params.each do |k, v|
327
+ params, instances = (instance_types[type.klass] ||= [{}, []])
328
+ type.instances&.each { instances << _1 }
329
+ type.raw_params&.each do |k, v|
287
330
  (params[k] ||= []) << v
288
331
  end
289
332
  in SingletonType
290
- singletons << type
333
+ singleton_types << type
291
334
  end
292
335
  end
293
336
  types.each(&collect)
294
- @types = singletons.uniq + instances.map do |klass, params|
295
- InstanceType.new(klass, params.transform_values { |v| UnionType[*v] })
337
+ @types = singleton_types.uniq + instance_types.map do |klass, (params, instances)|
338
+ params = params.transform_values { |v| UnionType[*v] }
339
+ InstanceType.new(klass, params, instances)
296
340
  end
297
341
  end
298
342
 
@@ -322,7 +366,7 @@ module ReplTypeCompletor
322
366
  def methods() = @types.flat_map(&:methods).uniq
323
367
  def all_methods() = @types.flat_map(&:all_methods).uniq
324
368
  def constants() = @types.flat_map(&:constants).uniq
325
- def inspect() = @types.map(&:inspect).join(' | ')
369
+ def inspect() = @types.map(&:inspect).sort.join(' | ')
326
370
  end
327
371
 
328
372
  BOOLEAN = UnionType[TRUE, FALSE]
@@ -362,7 +406,8 @@ module ReplTypeCompletor
362
406
  OBJECT
363
407
  end
364
408
  end
365
- when RBS::Types::Union
409
+ when RBS::Types::Union, RBS::Types::Intersection
410
+ # Intersection is unsupported. fallback to union type
366
411
  UnionType[*return_type.types.map { from_rbs_type _1, self_type, extra_vars }]
367
412
  when RBS::Types::Proc
368
413
  PROC
@@ -411,6 +456,8 @@ module ReplTypeCompletor
411
456
  params = names.map.with_index { [_1, args[_2] || OBJECT] }.to_h
412
457
  end
413
458
  InstanceType.new klass, params || {}
459
+ else
460
+ OBJECT
414
461
  end
415
462
  end
416
463
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ReplTypeCompletor
4
- VERSION = "0.1.10"
4
+ VERSION = "0.1.11"
5
5
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: repl_type_completor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - tompng
8
8
  bindir: exe
9
9
  cert_chain: []
10
- date: 2025-01-21 00:00:00.000000000 Z
10
+ date: 2025-04-01 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: prism
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  - !ruby/object:Gem::Version
85
85
  version: '0'
86
86
  requirements: []
87
- rubygems_version: 3.6.2
87
+ rubygems_version: 3.6.3
88
88
  specification_version: 4
89
89
  summary: Type based completion for REPL.
90
90
  test_files: []