code-ruby 1.1.3 → 1.2.1

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +13 -13
  3. data/.github/workflows/ci.yml +25 -24
  4. data/.npm-version +1 -0
  5. data/.rubocop.yml +14 -11
  6. data/Gemfile +5 -4
  7. data/Gemfile.lock +134 -28
  8. data/VERSION +1 -1
  9. data/bin/console +6 -0
  10. data/bin/dorian +31 -0
  11. data/code-ruby.gemspec +6 -1
  12. data/lib/code/error.rb +4 -25
  13. data/lib/code/node/code.rb +1 -1
  14. data/lib/code/node/function_parameter.rb +10 -8
  15. data/lib/code/node/while.rb +1 -1
  16. data/lib/code/object/boolean.rb +20 -16
  17. data/lib/code/object/class.rb +10 -4
  18. data/lib/code/object/code.rb +7 -3
  19. data/lib/code/object/context.rb +8 -8
  20. data/lib/code/object/date.rb +41 -7
  21. data/lib/code/object/decimal.rb +101 -56
  22. data/lib/code/object/dictionary.rb +245 -191
  23. data/lib/code/object/duration.rb +11 -7
  24. data/lib/code/object/function.rb +38 -25
  25. data/lib/code/object/global.rb +95 -42
  26. data/lib/code/object/html.rb +12 -14
  27. data/lib/code/object/http.rb +219 -0
  28. data/lib/code/object/identifier_list.rb +16 -16
  29. data/lib/code/object/integer.rb +129 -89
  30. data/lib/code/object/json.rb +18 -22
  31. data/lib/code/object/list.rb +141 -92
  32. data/lib/code/object/parameter.rb +9 -13
  33. data/lib/code/object/range.rb +77 -45
  34. data/lib/code/object/string.rb +15 -34
  35. data/lib/code/object/time.rb +17 -16
  36. data/lib/code/object.rb +126 -93
  37. data/lib/code/parser/string.rb +2 -1
  38. data/lib/code/type/sig.rb +3 -3
  39. data/lib/code-ruby.rb +119 -0
  40. data/package-lock.json +1 -1
  41. data/package.json +1 -1
  42. data/spec/code/object/http_spec.rb +91 -0
  43. data/spec/code/type_spec.rb +1 -1
  44. data/spec/code_spec.rb +10 -5
  45. data/spec/spec_helper.rb +18 -0
  46. metadata +50 -3
@@ -4,18 +4,22 @@ class Code
4
4
  class Object
5
5
  class Duration < Object
6
6
  def initialize(*args, **_kargs, &)
7
- raw = args.first || 0.seconds
8
- raw = raw.raw if raw.is_an?(Object)
9
- raw = raw.iso8601 if raw.is_an?(::ActiveSupport::Duration)
10
- @raw = ::ActiveSupport::Duration.parse(raw.to_s)
7
+ @raw =
8
+ if args.first.is_an?(::ActiveSupport::Duration)
9
+ args.first
10
+ elsif args.first.is_a?(Duration)
11
+ args.first.raw
12
+ else
13
+ ::ActiveSupport::Duration.parse(args.first.to_s)
14
+ end
11
15
  rescue ::ActiveSupport::Duration::ISO8601Parser::ParsingError
12
- raise Error, "#{raw.inspect} is not a valid duration"
16
+ @raw = 0.seconds
13
17
  end
14
18
 
15
19
  def call(**args)
16
- operator = args.fetch(:operator, nil)
20
+ code_operator = args.fetch(:operator, nil).to_code
17
21
 
18
- case operator.to_s
22
+ case code_operator.to_s
19
23
  when "ago"
20
24
  sig(args)
21
25
  code_ago
@@ -3,60 +3,73 @@
3
3
  class Code
4
4
  class Object
5
5
  class Function < Object
6
- attr_reader :parameters, :body
6
+ attr_reader :code_parameters, :code_body
7
7
 
8
8
  def initialize(*args, **_kargs, &)
9
- @parameters = List.new(args.first.presence || [])
10
- @parameters.raw.map! { |parameter| Parameter.new(parameter) }
11
- @body = Code.new(args.second.presence || Nothing.new)
12
- @raw = List.new(parameters, body)
9
+ @code_parameters =
10
+ List
11
+ .new(args.first)
12
+ .raw
13
+ .map { |parameter| Parameter.new(parameter) }
14
+ .to_code
15
+
16
+ @code_body = Code.new(args.second.presence)
17
+
18
+ @raw = List.new([code_parameters, code_body])
13
19
  end
14
20
 
15
21
  def call(**args)
16
- operator = args.fetch(:operator, nil)
17
- arguments = args.fetch(:arguments, List.new)
22
+ code_operator = args.fetch(:operator, nil).to_code
23
+ code_arguments = args.fetch(:arguments, List.new).to_code
18
24
  globals = multi_fetch(args, *GLOBALS)
19
25
 
20
- case operator.to_s
26
+ case code_operator.to_s
21
27
  when "", "call"
22
28
  sig(args) { signature_for_call }
23
- code_call(*arguments.raw, **globals)
29
+ code_call(*code_arguments.raw, **globals)
24
30
  else
25
31
  super
26
32
  end
27
33
  end
28
34
 
29
35
  def code_call(*arguments, **globals)
30
- context = Context.new({}, globals[:context])
36
+ code_arguments = arguments.to_code
37
+ code_context = Context.new({}, globals[:context])
31
38
 
32
- parameters.raw.each.with_index do |parameter, index|
33
- argument =
34
- if parameter.keyword?
35
- arguments
36
- .detect do |dictionary|
37
- dictionary.code_has_value?(parameter.code_name)
39
+ code_parameters.raw.each.with_index do |code_parameter, index|
40
+ code_argument =
41
+ if code_parameter.keyword?
42
+ code_arguments
43
+ .raw
44
+ .select { |code_argument| code_argument.is_a?(Dictionary) }
45
+ .detect do |code_dictionary|
46
+ code_dictionary.code_has_value?(parameter.code_name).truthy?
38
47
  end
39
48
  &.code_get(parameter.code_name)
40
49
  else
41
- arguments[index]
50
+ code_arguments.raw[index].to_code
42
51
  end
43
- argument = parameter.evaluate(**globals) if argument.nil?
44
- context.code_set(parameter.code_name, argument)
52
+
53
+ if code_argument.nothing?
54
+ code_argument = code_parameter.code_evaluate(**globals)
55
+ end
56
+
57
+ code_context.code_set(code_parameter.code_name, code_argument)
45
58
  end
46
59
 
47
- body.evaluate(**globals, context:)
60
+ code_body.code_evaluate(**globals, context: code_context)
48
61
  end
49
62
 
50
63
  def signature_for_call
51
- parameters
64
+ code_parameters
52
65
  .raw
53
- .inject([]) do |signature, parameter|
54
- if parameter.keyword?
66
+ .inject([]) do |signature, code_parameter|
67
+ if code_parameter.keyword?
55
68
  if signature.last.is_a?(::Hash)
56
- signature.last.code_set(parameter.code_name, Object)
69
+ signature.last[code_parameter.code_name] = Object
57
70
  signature
58
71
  else
59
- signature + [{ parameter.code_name => Object }]
72
+ signature + [{ code_parameter.code_name => Object }]
60
73
  end
61
74
  else
62
75
  signature + [Object]
@@ -3,117 +3,170 @@
3
3
  class Code
4
4
  class Object
5
5
  class Global < Object
6
- def initialize(...)
7
- @raw = "global"
8
- end
9
-
10
6
  def call(**args)
11
- operator = args.fetch(:operator, nil)
12
- arguments = args.fetch(:arguments, List.new)
7
+ code_operator = args.fetch(:operator, nil).to_code
8
+ code_arguments = args.fetch(:arguments, []).to_code
13
9
  output = args.fetch(:output)
14
- context = args.fetch(:context)
15
- multi_fetch(args, *GLOBALS)
16
- value = arguments.code_first
10
+ code_context = args.fetch(:context).to_code
11
+ code_value = code_arguments.code_first
17
12
 
18
- case operator.to_s
13
+ case code_operator.to_s
19
14
  when "Boolean"
20
15
  sig(args) { Object.repeat }
21
- arguments.any? ? Boolean.new(*arguments.raw) : Class.new(Boolean)
16
+ if code_arguments.any?
17
+ Boolean.new(*code_arguments.raw)
18
+ else
19
+ Class.new(Boolean)
20
+ end
22
21
  when "break"
23
22
  sig(args) { Object.repeat }
24
- raise Error::Break, value || Nothing.new
23
+ raise Error::Break, code_value || Nothing.new
25
24
  when "next"
26
25
  sig(args) { Object.repeat }
27
- raise Error::Next, value || Nothing.new
26
+ raise Error::Next, code_value || Nothing.new
28
27
  when "Class"
29
28
  sig(args) { Object.repeat }
30
- arguments.any? ? Class.new(*arguments.raw) : Class.new(Class)
29
+ if code_arguments.any?
30
+ Class.new(*code_arguments.raw)
31
+ else
32
+ Class.new(Class)
33
+ end
31
34
  when "Date"
32
35
  sig(args) { Object.repeat }
33
- arguments.any? ? Date.new(*arguments.raw) : Class.new(Date)
36
+ code_arguments.any? ? Date.new(*code_arguments.raw) : Class.new(Date)
34
37
  when "Decimal"
35
38
  sig(args) { Object.repeat }
36
- arguments.any? ? Decimal.new(*arguments.raw) : Class.new(Decimal)
39
+ if code_arguments.any?
40
+ Decimal.new(*code_arguments.raw)
41
+ else
42
+ Class.new(Decimal)
43
+ end
37
44
  when "Dictionary"
38
45
  sig(args) { Object.repeat }
39
- if arguments.any?
40
- Dictionary.new(*arguments.raw)
46
+ if code_arguments.any?
47
+ Dictionary.new(*code_arguments.raw)
41
48
  else
42
49
  Class.new(Dictionary)
43
50
  end
44
51
  when "Duration"
45
52
  sig(args) { Object.repeat }
46
- arguments.any? ? Duration.new(*arguments.raw) : Class.new(Duration)
53
+ if code_arguments.any?
54
+ Duration.new(*code_arguments.raw)
55
+ else
56
+ Class.new(Duration)
57
+ end
47
58
  when "Function"
48
59
  sig(args)
49
- arguments.any? ? Function.new(*arguments.raw) : Class.new(Function)
60
+ if code_arguments.any?
61
+ Function.new(*code_arguments.raw)
62
+ else
63
+ Class.new(Function)
64
+ end
50
65
  when "Integer"
51
66
  sig(args) { Object.repeat }
52
- arguments.any? ? Integer.new(*arguments.raw) : Class.new(Integer)
67
+ if code_arguments.any?
68
+ Integer.new(*code_arguments.raw)
69
+ else
70
+ Class.new(Integer)
71
+ end
53
72
  when "List"
54
73
  sig(args) { Object.repeat }
55
- arguments.any? ? List.new(*arguments.raw) : Class.new(List)
74
+ code_arguments.any? ? List.new(*code_arguments.raw) : Class.new(List)
56
75
  when "Nothing"
57
76
  sig(args) { Object.repeat }
58
- arguments.any? ? Nothing.new(*arguments.raw) : Class.new(Nothing)
77
+ if code_arguments.any?
78
+ Nothing.new(*code_arguments.raw)
79
+ else
80
+ Class.new(Nothing)
81
+ end
59
82
  when "context"
60
83
  sig(args)
61
84
  context
62
85
  when "Object"
63
86
  sig(args)
64
- arguments.any? ? Object.new(*arguments.raw) : Class.new(Object)
87
+ if code_arguments.any?
88
+ Object.new(*code_arguments.raw)
89
+ else
90
+ Class.new(Object)
91
+ end
65
92
  when "Range"
66
93
  sig(args) { Object.repeat }
67
- arguments.any? ? Range.new(*arguments.raw) : Class.new(Range)
94
+ if code_arguments.any?
95
+ Range.new(*code_arguments.raw)
96
+ else
97
+ Class.new(Range)
98
+ end
68
99
  when "String"
69
100
  sig(args) { Object.repeat }
70
- arguments.any? ? String.new(*arguments.raw) : Class.new(String)
101
+ if code_arguments.any?
102
+ String.new(*code_arguments.raw)
103
+ else
104
+ Class.new(String)
105
+ end
71
106
  when "Time"
72
107
  sig(args) { Object.repeat }
73
- arguments.any? ? Time.zone.local(*arguments.raw) : Class.new(Time)
108
+ if code_arguments.any?
109
+ Time.zone.local(*code_arguments.raw)
110
+ else
111
+ Class.new(Time)
112
+ end
74
113
  when "Context"
75
114
  sig(args) { Object.repeat }
76
- arguments.any? ? Context.new(*arguments.raw) : Class.new(Context)
115
+ if code_arguments.any?
116
+ Context.new(*code_arguments.raw)
117
+ else
118
+ Class.new(Context)
119
+ end
77
120
  when "Code"
78
121
  sig(args) { Object.repeat }
79
- arguments.any? ? Code.new(*arguments.raw) : Class.new(Code)
122
+ code_arguments.any? ? Code.new(*code_arguments.raw) : Class.new(Code)
80
123
  when "Parameter"
81
124
  sig(args) { Object.repeat }
82
- arguments.any? ? Parameter.new(*arguments.raw) : Class.new(Parameter)
125
+ if code_arguments.any?
126
+ Parameter.new(*code_arguments.raw)
127
+ else
128
+ Class.new(Parameter)
129
+ end
83
130
  when "IdentifierList"
84
131
  sig(args) { Object.repeat }
85
- if arguments.any?
86
- IdentifierList.new(*arguments.raw)
132
+ if code_arguments.any?
133
+ IdentifierList.new(*code_arguments.raw)
87
134
  else
88
135
  Class.new(IdentifierList)
89
136
  end
90
137
  when "Html"
91
138
  sig(args) { Object.repeat }
92
- arguments.any? ? Html.new(*arguments.raw) : Class.new(Html)
139
+ code_arguments.any? ? Html.new(*code_arguments.raw) : Class.new(Html)
140
+ when "Http"
141
+ sig(args) { Object.repeat }
142
+ code_arguments.any? ? Http.new(*code_arguments.raw) : Class.new(Http)
143
+ when "Json"
144
+ sig(args) { Object.repeat }
145
+ code_arguments.any? ? Json.new(*code_arguments.raw) : Class.new(Json)
93
146
  when "evaluate"
94
147
  sig(args) { Object }
95
- Code.evaluate(value.to_s)
148
+ Code.evaluate(code_value.to_s)
96
149
  when "p"
97
150
  sig(args) { Object.repeat }
98
- output.puts(*arguments.raw.map(&:inspect))
151
+ output.puts(*code_arguments.raw.map(&:inspect))
99
152
  Nothing.new
100
153
  when "print"
101
154
  sig(args) { Object.repeat }
102
- output.print(*arguments.raw)
155
+ output.print(*code_arguments.raw)
103
156
  Nothing.new
104
157
  when "puts"
105
158
  sig(args) { Object.repeat }
106
- output.puts(*arguments.raw)
159
+ output.puts(*code_arguments.raw)
107
160
  Nothing.new
108
161
  else
109
- context = context.lookup!(operator)
110
- result = context.code_fetch(operator)
162
+ code_context = code_context.code_lookup!(code_operator)
163
+ code_result = code_context.code_fetch(code_operator)
111
164
 
112
- if result.is_a?(Function)
113
- result.call(**args.merge(operator: nil))
165
+ if code_result.is_a?(Function)
166
+ code_result.call(**args, operator: nil)
114
167
  else
115
168
  sig(args)
116
- result
169
+ code_result
117
170
  end
118
171
  end
119
172
  end
@@ -3,39 +3,37 @@
3
3
  class Code
4
4
  class Object
5
5
  class Html < Object
6
- def initialize(*_args, **_kargs, &)
7
- @raw = nil
8
- end
9
-
10
6
  def self.call(**args)
11
- operator = args.fetch(:operator, nil)
12
- arguments = args.fetch(:arguments, List.new)
7
+ code_operator = args.fetch(:operator, nil).to_code
8
+ code_arguments = args.fetch(:arguments, []).to_code
13
9
 
14
- case operator.to_s
10
+ case code_operator.to_s
15
11
  when "link_to"
16
12
  sig(args) { [Object.maybe, Object.maybe] }
17
- code_link_to(*arguments.raw)
13
+ code_link_to(*code_arguments.raw)
18
14
  when "escape"
19
15
  sig(args) { Object.maybe }
20
- code_escape(*arguments.raw)
16
+ code_escape(*code_arguments.raw)
21
17
  else
22
18
  super
23
19
  end
24
20
  end
25
21
 
26
22
  def self.code_link_to(text = nil, href = nil)
27
- text ||= Nothing.new
28
- href ||= Nothing.new
23
+ code_text = text.to_code
24
+ code_href = href.to_code
29
25
 
30
26
  String.new(<<~LINK.strip)
31
- <a href="#{CGI.escapeHTML(href.raw.to_s)}">#{CGI.escapeHTML(text.raw.to_s)}</a>
27
+ <a
28
+ href="#{CGI.escapeHTML(code_href.to_s)}"
29
+ >#{CGI.escapeHTML(code_text.to_s)}</a>
32
30
  LINK
33
31
  end
34
32
 
35
33
  def self.code_escape(string = nil)
36
- string ||= Nothing.new
34
+ code_string = string.to_code
37
35
 
38
- String.new(CGI.escapeHTML(string.raw.to_s))
36
+ String.new(CGI.escapeHTML(string.to_s))
39
37
  end
40
38
  end
41
39
  end
@@ -0,0 +1,219 @@
1
+ # frozen_string_literal: true
2
+
3
+ class Code
4
+ class Object
5
+ class Http < Object
6
+ SIG = [
7
+ String,
8
+ {
9
+ headers: Dictionary.maybe,
10
+ query: Dictionary.maybe,
11
+ body: String.maybe,
12
+ username: String.maybe,
13
+ password: String.maybe,
14
+ data: Dictionary.maybe,
15
+ }
16
+ ].freeze
17
+
18
+ STATUS_CODES = {
19
+ continue: 100,
20
+ switching_protocols: 101,
21
+ processing: 102,
22
+ early_hints: 103,
23
+ ok: 200,
24
+ created: 201,
25
+ accepted: 202,
26
+ non_authoritative_information: 203,
27
+ no_content: 204,
28
+ reset_content: 205,
29
+ partial_content: 206,
30
+ multi_status: 207,
31
+ already_reported: 208,
32
+ im_used: 226,
33
+ multiple_choices: 300,
34
+ moved_permanently: 301,
35
+ found: 302,
36
+ see_other: 303,
37
+ not_modified: 304,
38
+ use_proxy: 305,
39
+ reserved: 306,
40
+ temporary_redirect: 307,
41
+ permanent_redirect: 308,
42
+ bad_request: 400,
43
+ unauthorized: 401,
44
+ payment_required: 402,
45
+ forbidden: 403,
46
+ not_found: 404,
47
+ method_not_allowed: 405,
48
+ not_acceptable: 406,
49
+ proxy_authentication_required: 407,
50
+ request_timeout: 408,
51
+ conflict: 409,
52
+ gone: 410,
53
+ length_required: 411,
54
+ precondition_failed: 412,
55
+ request_entity_too_large: 413,
56
+ request_uri_too_long: 414,
57
+ unsupported_media_type: 415,
58
+ requested_range_not_satisfiable: 416,
59
+ expectation_failed: 417,
60
+ misdirected_request: 421,
61
+ unprocessable_entity: 422,
62
+ locked: 423,
63
+ failed_dependency: 424,
64
+ too_early: 425,
65
+ upgrade_required: 426,
66
+ precondition_required: 428,
67
+ too_many_requests: 429,
68
+ request_header_fields_too_large: 431,
69
+ unavailable_for_legal_reasons: 451,
70
+ internal_server_error: 500,
71
+ not_implemented: 501,
72
+ bad_gateway: 502,
73
+ service_unavailable: 503,
74
+ gateway_timeout: 504,
75
+ http_version_not_supported: 505,
76
+ variant_also_negotiates: 506,
77
+ insufficient_storage: 507,
78
+ loop_detected: 508,
79
+ bandwidth_limit_exceeded: 509,
80
+ not_extended: 510,
81
+ network_authentication_required: 511
82
+ }.freeze
83
+
84
+ def self.call(**args)
85
+ code_operator = args.fetch(:operator, nil).to_code
86
+ code_arguments = args.fetch(:arguments, []).to_code
87
+
88
+ case code_operator.to_s
89
+ when "get"
90
+ sig(args) { SIG }
91
+ code_get(*code_arguments.raw)
92
+ when "head"
93
+ sig(args) { SIG }
94
+ code_head(*code_arguments.raw)
95
+ when "post"
96
+ sig(args) { SIG }
97
+ code_post(*code_arguments.raw)
98
+ when "put"
99
+ sig(args) { SIG }
100
+ code_put(*code_arguments.raw)
101
+ when "delete"
102
+ sig(args) { SIG }
103
+ code_delete(*code_arguments.raw)
104
+ when "connect"
105
+ sig(args) { SIG }
106
+ code_connect(*code_arguments.raw)
107
+ when "options"
108
+ sig(args) { SIG }
109
+ code_options(*code_arguments.raw)
110
+ when "trace"
111
+ sig(args) { SIG }
112
+ code_trace(*code_arguments.raw)
113
+ when "patch"
114
+ sig(args) { SIG }
115
+ code_patch(*code_arguments.raw)
116
+ when "fetch"
117
+ sig(args) { [String] + SIG }
118
+ code_fetch(*code_arguments.raw)
119
+ else
120
+ super
121
+ end
122
+ end
123
+
124
+ def self.code_get(...)
125
+ code_fetch("get", ...)
126
+ end
127
+
128
+ def self.code_head(...)
129
+ code_fetch("head", ...)
130
+ end
131
+
132
+ def self.code_post(...)
133
+ code_fetch("post", ...)
134
+ end
135
+
136
+ def self.code_put(...)
137
+ code_fetch("put", ...)
138
+ end
139
+
140
+ def self.code_delete(...)
141
+ code_fetch("delete", ...)
142
+ end
143
+
144
+ def self.code_connect(...)
145
+ code_fetch("connect", ...)
146
+ end
147
+
148
+ def self.code_options(...)
149
+ code_fetch("options", ...)
150
+ end
151
+
152
+ def self.code_trace(...)
153
+ code_fetch("trace", ...)
154
+ end
155
+
156
+ def self.code_patch(...)
157
+ code_fetch("patch", ...)
158
+ end
159
+
160
+ def self.code_fetch(*arguments)
161
+ verb = arguments.first.to_code.to_s.downcase
162
+ url = arguments.second.to_code.to_s
163
+ options = arguments.third.to_code
164
+ options = Dictionary.new if options.nothing?
165
+ username = options.code_get("username").to_s
166
+ password = options.code_get("password").to_s
167
+ body = options.code_get("body").to_s
168
+ headers = options.code_get("headers").raw || {}
169
+ data = options.code_get("data").raw || {}
170
+ query = options.code_get("query").raw || {}
171
+ query = query.to_a.flatten.map(&:to_s).each_slice(2).to_h.to_query
172
+ url = "#{url}?#{query}" if query.present?
173
+ uri = ::URI.parse(url)
174
+ http = ::Net::HTTP.new(uri.host, uri.port)
175
+ http.use_ssl = true if uri.scheme == "https"
176
+
177
+ if username.present? || password.present?
178
+ headers["Authorization"] =
179
+ "Basic #{::Base64.strict_encode64("#{username}:#{password}")}"
180
+ end
181
+
182
+ request_class =
183
+ case verb
184
+ when "get"
185
+ ::Net::HTTP::Get
186
+ when "head"
187
+ ::Net::HTTP::Head
188
+ when "post"
189
+ ::Net::HTTP::Post
190
+ when "put"
191
+ ::Net::HTTP::Put
192
+ when "delete"
193
+ ::Net::HTTP::Delete
194
+ when "connect"
195
+ ::Net::HTTP::Get
196
+ when "options"
197
+ ::Net::HTTP::Options
198
+ when "trace"
199
+ ::Net::HTTP::Trace
200
+ when "patch"
201
+ ::Net::HTTP::Patch
202
+ else
203
+ ::Net::HTTP::Get
204
+ end
205
+
206
+ request = request_class.new(uri)
207
+ headers.each { |key, value| request[key.to_s] = value.to_s }
208
+ request.body = body if body.present?
209
+ request.set_form_data(**data.as_json) if data.present?
210
+
211
+ response = http.request(request)
212
+ code = response.code.to_i
213
+ status = STATUS_CODES.key(code) || :ok
214
+
215
+ Dictionary.new(code: code, status: status, body: response.body)
216
+ end
217
+ end
218
+ end
219
+ end
@@ -4,36 +4,36 @@ class Code
4
4
  class Object
5
5
  class IdentifierList < List
6
6
  def call(**args)
7
- operator = args.fetch(:operator, nil)
8
- arguments = args.fetch(:arguments, List.new)
9
- context = args.fetch(:context)
10
- value = arguments.code_first
7
+ code_operator = args.fetch(:operator, nil).to_code
8
+ code_arguments = args.fetch(:arguments, []).to_code
9
+ code_context = args.fetch(:context).to_code
10
+ code_value = code_arguments.code_first
11
11
 
12
- case operator.to_s
12
+ case code_operator.to_s
13
13
  when /=$/
14
14
  sig(args) { Object }
15
15
 
16
- context = context.lookup!(raw.first)
16
+ code_context = code_context.code_lookup!(raw.first)
17
17
 
18
- context =
19
- raw[..-2].reduce(context) do |context, identifier|
20
- context.code_fetch(identifier)
18
+ code_context =
19
+ raw[..-2].reduce(code_context) do |code_context, code_identifier|
20
+ code_context.code_fetch(code_identifier)
21
21
  end
22
22
 
23
- context.code_set(
23
+ code_context.code_set(
24
24
  raw.last,
25
- if operator == "="
26
- value
25
+ if code_operator.to_s == "="
26
+ code_value
27
27
  else
28
- context.fetch(raw.last).call(
28
+ code_context.fetch(raw.last).call(
29
29
  **args,
30
- operator: operator.chop,
31
- arguments: List.new([value])
30
+ operator: code_operator.to_s.chop,
31
+ arguments: [code_value]
32
32
  )
33
33
  end
34
34
  )
35
35
 
36
- context.code_fetch(raw.last)
36
+ code_context.code_fetch(raw.last)
37
37
  else
38
38
  super
39
39
  end