@@ -52,7 +52,7 @@ class Contract < Contracts::Decorator
52
52
end
53
53
end
54
54
55
- attr_reader :args_contracts , :ret_contract , :klass , :method
55
+ attr_reader :args_contracts , :kargs_contract , : ret_contract, :klass , :method
56
56
57
57
def initialize ( klass , method , *contracts )
58
58
super ( klass , method )
@@ -69,13 +69,18 @@ def initialize(klass, method, *contracts)
69
69
70
70
# internally we just convert that return value syntax back to an array
71
71
@args_contracts = contracts [ 0 , contracts . size - 1 ] + contracts [ -1 ] . keys
72
+ # Extract contract for keyword arguments
73
+ @kargs_contract = args_contracts . find { |c | c . is_a? ( Contracts ::Builtin ::KeywordArgs ) }
74
+ args_contracts . delete ( kargs_contract ) if kargs_contract
72
75
73
76
@ret_contract = contracts [ -1 ] . values [ 0 ]
74
77
75
78
@args_validators = args_contracts . map do |contract |
76
79
Contract . make_validator ( contract )
77
80
end
78
81
82
+ @kargs_validator = kargs_contract ? Contract . make_validator ( kargs_contract ) : nil
83
+
79
84
@args_contract_index = args_contracts . index do |contract |
80
85
contract . is_a? Contracts ::Args
81
86
end
@@ -93,16 +98,6 @@ def initialize(klass, method, *contracts)
93
98
94
99
# ====
95
100
96
- # == @has_options_contract
97
- last_contract = args_contracts . last
98
- penultimate_contract = args_contracts [ -2 ]
99
- @has_options_contract = if @has_proc_contract
100
- penultimate_contract . is_a? ( Contracts ::Builtin ::KeywordArgs )
101
- else
102
- last_contract . is_a? ( Contracts ::Builtin ::KeywordArgs )
103
- end
104
- # ===
105
-
106
101
@klass , @method = klass , method
107
102
end
108
103
@@ -255,19 +250,6 @@ def maybe_append_block! args, blk
255
250
true
256
251
end
257
252
258
- # Same thing for when we have named params but didn't pass any in.
259
- # returns true if it appended nil
260
- def maybe_append_options! args , kargs , blk
261
- return false unless @has_options_contract
262
-
263
- if @has_proc_contract && args_contracts [ -2 ] . is_a? ( Contracts ::Builtin ::KeywordArgs )
264
- args . insert ( -2 , kargs )
265
- elsif args_contracts [ -1 ] . is_a? ( Contracts ::Builtin ::KeywordArgs )
266
- args << kargs
267
- end
268
- true
269
- end
270
-
271
253
# Used to determine type of failure exception this contract should raise in case of failure
272
254
def failure_exception
273
255
if pattern_match?
0 commit comments