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 +4 -4
- data/lib/repl_type_completor/methods.rb +2 -1
- data/lib/repl_type_completor/scope.rb +8 -25
- data/lib/repl_type_completor/types.rb +69 -22
- data/lib/repl_type_completor/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 45c80e0c90081af7992d51765854f270adbaec795050775ae778560737db52b2
|
4
|
+
data.tar.gz: 9b4745ab99625ebfd3b6c1ecb526ff6e5186ef9320873b55cc4f6d88103f25ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1a11765f19a07a3cf1a387448e2a57f8d0a087991a9cdae946eebdb6000552e4b7ed7a172a1d7dc65ba273def75e345b76e7adc290cb99af153017cc84df8e8
|
7
|
+
data.tar.gz: 682c8671b614077226d873dba34543dfae6598fb555cefa69bdce155e09de2bb4cc5cfb107d7a5b4887e50d6381eb923b2fda1d4babb5d458b506484b118b2d5
|
@@ -2,7 +2,8 @@
|
|
2
2
|
|
3
3
|
module ReplTypeCompletor
|
4
4
|
module Methods
|
5
|
-
|
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
|
-
|
288
|
-
|
289
|
-
|
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
|
-
|
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
|
-
|
308
|
-
|
309
|
-
|
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,
|
180
|
+
InstanceType.new Array, nil, [object]
|
181
181
|
when Hash
|
182
|
-
InstanceType.new Hash,
|
182
|
+
InstanceType.new Hash, nil, [object]
|
183
183
|
when Module
|
184
184
|
SingletonType.new object
|
185
185
|
else
|
186
|
-
|
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
|
-
|
193
|
-
|
194
|
-
UnionType[*
|
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, :
|
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
|
-
@
|
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.
|
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
|
-
|
279
|
-
|
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 = (
|
286
|
-
type.
|
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
|
-
|
333
|
+
singleton_types << type
|
291
334
|
end
|
292
335
|
end
|
293
336
|
types.each(&collect)
|
294
|
-
@types =
|
295
|
-
|
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
|
|
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.
|
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
|
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.
|
87
|
+
rubygems_version: 3.6.3
|
88
88
|
specification_version: 4
|
89
89
|
summary: Type based completion for REPL.
|
90
90
|
test_files: []
|