code-ruby 1.1.1 → 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.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +13 -13
- data/.github/workflows/ci.yml +25 -24
- data/.npm-version +1 -0
- data/.rubocop.yml +14 -11
- data/Gemfile +5 -4
- data/Gemfile.lock +134 -28
- data/VERSION +1 -1
- data/bin/console +6 -0
- data/bin/dorian +31 -0
- data/code-ruby.gemspec +6 -1
- data/lib/code/error.rb +4 -25
- data/lib/code/node/code.rb +1 -1
- data/lib/code/node/function_parameter.rb +10 -8
- data/lib/code/node/while.rb +1 -1
- data/lib/code/object/boolean.rb +20 -16
- data/lib/code/object/class.rb +10 -4
- data/lib/code/object/code.rb +7 -3
- data/lib/code/object/context.rb +8 -8
- data/lib/code/object/date.rb +41 -7
- data/lib/code/object/decimal.rb +101 -56
- data/lib/code/object/dictionary.rb +245 -191
- data/lib/code/object/duration.rb +11 -7
- data/lib/code/object/function.rb +38 -25
- data/lib/code/object/global.rb +95 -42
- data/lib/code/object/html.rb +12 -14
- data/lib/code/object/http.rb +219 -0
- data/lib/code/object/identifier_list.rb +16 -16
- data/lib/code/object/integer.rb +129 -89
- data/lib/code/object/json.rb +18 -22
- data/lib/code/object/list.rb +141 -92
- data/lib/code/object/parameter.rb +9 -13
- data/lib/code/object/range.rb +77 -45
- data/lib/code/object/string.rb +15 -34
- data/lib/code/object/time.rb +17 -16
- data/lib/code/object.rb +126 -93
- data/lib/code/parser/string.rb +2 -1
- data/lib/code/type/sig.rb +3 -3
- data/lib/code-ruby.rb +119 -0
- data/package-lock.json +1 -1
- data/package.json +1 -1
- data/spec/code/object/http_spec.rb +91 -0
- data/spec/code/type_spec.rb +1 -1
- data/spec/code_spec.rb +10 -5
- data/spec/spec_helper.rb +18 -0
- metadata +50 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e76cc8afa937c6f3e48a31d58fc1b6e9b15aacaea6781fe80426cc081a22df7
|
4
|
+
data.tar.gz: f49f9bd9d36deb5b9d827b07ce0aa828ef348cd0d86a4f88d3d06c052be280ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4719bc78b263558b72bb9071de558cc632e6fc52723029c9d24975ffcf2262e8264dbce9038b6442aa060e1c4b8851bc4fae3f488ee5748113a0ae081d2dbde4
|
7
|
+
data.tar.gz: 49ed1a4e9423d54f3a8c38d4dc32a93a7807638acd87f4be4a71a2ba2ac7f53cf5c44b40647b85cbff34e222a8867e578cf751bbf9a981325cbb3a00e47c2886
|
data/.github/dependabot.yml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
|
-
version: 2
|
3
2
|
updates:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
3
|
+
- directory: "/"
|
4
|
+
package-ecosystem: github-actions
|
5
|
+
schedule:
|
6
|
+
interval: daily
|
7
|
+
- directory: "/"
|
8
|
+
package-ecosystem: npm
|
9
|
+
schedule:
|
10
|
+
interval: daily
|
11
|
+
- directory: "/"
|
12
|
+
package-ecosystem: bundler
|
13
|
+
schedule:
|
14
|
+
interval: daily
|
15
|
+
version: 2
|
data/.github/workflows/ci.yml
CHANGED
@@ -1,37 +1,38 @@
|
|
1
|
-
|
2
|
-
on: push
|
1
|
+
---
|
3
2
|
jobs:
|
4
3
|
bundler-audit:
|
5
4
|
name: Bundler Audit
|
6
5
|
runs-on: ubuntu-latest
|
7
6
|
steps:
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
7
|
+
- uses: actions/checkout@v4
|
8
|
+
- uses: ruby/setup-ruby@v1
|
9
|
+
with:
|
10
|
+
bundler-cache: true
|
11
|
+
- run: bin/bundler-audit check --update
|
12
|
+
npm-audit:
|
13
|
+
name: npm Audit
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
steps:
|
16
|
+
- uses: actions/checkout@v4
|
17
|
+
- uses: actions/setup-node@v4
|
18
|
+
- run: npm audit
|
13
19
|
rspec:
|
14
20
|
name: Test
|
15
21
|
runs-on: ubuntu-latest
|
16
22
|
steps:
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
23
|
+
- uses: actions/checkout@v4
|
24
|
+
- uses: ruby/setup-ruby@v1
|
25
|
+
with:
|
26
|
+
bundler-cache: true
|
27
|
+
- run: bin/test
|
22
28
|
rubocop:
|
23
29
|
name: Rubocop
|
24
30
|
runs-on: ubuntu-latest
|
25
31
|
steps:
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
runs-on: ubuntu-latest
|
34
|
-
steps:
|
35
|
-
- uses: actions/checkout@v4
|
36
|
-
- uses: actions/setup-node@v4
|
37
|
-
- run: npm audit
|
32
|
+
- uses: actions/checkout@v4
|
33
|
+
- uses: ruby/setup-ruby@v1
|
34
|
+
with:
|
35
|
+
bundler-cache: true
|
36
|
+
- run: bin/rubocop
|
37
|
+
name: CI
|
38
|
+
'on': push
|
data/.npm-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
10.8.2
|
data/.rubocop.yml
CHANGED
@@ -1,11 +1,12 @@
|
|
1
1
|
---
|
2
2
|
AllCops:
|
3
3
|
Exclude:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
- "*/node_modules/**/*"
|
5
|
+
- "*/vendor/**/*"
|
6
|
+
- node_modules/**/*
|
7
|
+
- vendor/**/*
|
8
8
|
NewCops: enable
|
9
|
+
TargetRubyVersion: 3.3
|
9
10
|
Layout/ClosingHeredocIndentation:
|
10
11
|
Enabled: false
|
11
12
|
Layout/FirstArgumentIndentation:
|
@@ -58,6 +59,8 @@ Naming/MethodParameterName:
|
|
58
59
|
Enabled: false
|
59
60
|
Naming/VariableNumber:
|
60
61
|
Enabled: false
|
62
|
+
Performance/Sum:
|
63
|
+
Enabled: false
|
61
64
|
Performance/UnfreezeString:
|
62
65
|
Enabled: false
|
63
66
|
RSpec/AnyInstance:
|
@@ -117,10 +120,10 @@ Style/StringLiterals:
|
|
117
120
|
Style/StringLiteralsInInterpolation:
|
118
121
|
Enabled: false
|
119
122
|
require:
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
123
|
+
- rubocop-factory_bot
|
124
|
+
- rubocop-performance
|
125
|
+
- rubocop-rails
|
126
|
+
- rubocop-rake
|
127
|
+
- rubocop-rspec
|
128
|
+
- rubocop-rspec_rails
|
129
|
+
- rubocop-capybara
|
data/Gemfile
CHANGED
@@ -7,15 +7,16 @@ gemspec
|
|
7
7
|
ruby "3.3.5"
|
8
8
|
|
9
9
|
gem "bundler-audit"
|
10
|
+
gem "dorian"
|
10
11
|
gem "rake"
|
11
12
|
gem "rspec"
|
12
|
-
gem "
|
13
|
-
|
13
|
+
gem "rubocop-capybara"
|
14
14
|
gem "rubocop-factory_bot"
|
15
15
|
gem "rubocop-performance"
|
16
16
|
gem "rubocop-rails"
|
17
17
|
gem "rubocop-rake"
|
18
18
|
gem "rubocop-rspec"
|
19
19
|
gem "rubocop-rspec_rails"
|
20
|
-
|
21
|
-
gem "
|
20
|
+
gem "ruby-prof"
|
21
|
+
gem "sinatra"
|
22
|
+
gem "webmock"
|
data/Gemfile.lock
CHANGED
@@ -1,20 +1,24 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
code-ruby (1.
|
4
|
+
code-ruby (1.2.1)
|
5
5
|
activesupport
|
6
|
+
base64
|
6
7
|
bigdecimal
|
7
8
|
did-you-mean
|
8
9
|
dorian-arguments
|
9
10
|
json
|
10
11
|
language-ruby
|
12
|
+
net-http
|
13
|
+
uri
|
11
14
|
zeitwerk
|
12
15
|
|
13
16
|
GEM
|
14
17
|
remote: https://rubygems.org/
|
15
18
|
specs:
|
16
|
-
activesupport (
|
19
|
+
activesupport (8.0.1)
|
17
20
|
base64
|
21
|
+
benchmark (>= 0.3)
|
18
22
|
bigdecimal
|
19
23
|
concurrent-ruby (~> 1.0, >= 1.3.1)
|
20
24
|
connection_pool (>= 2.2.5)
|
@@ -24,91 +28,190 @@ GEM
|
|
24
28
|
minitest (>= 5.1)
|
25
29
|
securerandom (>= 0.3)
|
26
30
|
tzinfo (~> 2.0, >= 2.0.5)
|
31
|
+
uri (>= 0.13.1)
|
32
|
+
addressable (2.8.7)
|
33
|
+
public_suffix (>= 2.0.2, < 7.0)
|
27
34
|
ast (2.4.2)
|
28
35
|
base64 (0.2.0)
|
36
|
+
benchmark (0.4.0)
|
29
37
|
bigdecimal (3.1.8)
|
30
38
|
bundler-audit (0.9.2)
|
31
39
|
bundler (>= 1.2.0, < 3)
|
32
40
|
thor (~> 1.0)
|
41
|
+
cmdparse (3.0.7)
|
33
42
|
concurrent-ruby (1.3.4)
|
34
43
|
connection_pool (2.4.1)
|
44
|
+
crack (1.0.0)
|
45
|
+
bigdecimal
|
46
|
+
rexml
|
47
|
+
csv (3.3.2)
|
35
48
|
did-you-mean (0.1.1)
|
36
49
|
levenshtein (>= 0.2.0)
|
37
50
|
diff-lcs (1.5.1)
|
38
|
-
dorian
|
51
|
+
dorian (2.6.3)
|
52
|
+
csv
|
53
|
+
dorian-arguments
|
54
|
+
dorian-eval
|
55
|
+
dorian-progress
|
56
|
+
dorian-to_struct
|
57
|
+
git
|
58
|
+
hexapdf
|
59
|
+
json
|
60
|
+
mini_racer
|
61
|
+
ostruct
|
62
|
+
parallel
|
63
|
+
syntax_tree
|
64
|
+
syntax_tree-haml
|
65
|
+
syntax_tree-xml
|
66
|
+
terminal-table
|
67
|
+
w_syntax_tree-erb
|
68
|
+
yaml
|
69
|
+
dorian-arguments (1.2.2)
|
39
70
|
bigdecimal
|
71
|
+
dorian-eval (1.5.0)
|
72
|
+
yaml
|
73
|
+
dorian-progress (1.1.2)
|
74
|
+
ruby-progressbar
|
75
|
+
dorian-to_struct (2.0.2)
|
40
76
|
drb (2.2.1)
|
41
|
-
|
77
|
+
geom2d (0.4.1)
|
78
|
+
git (2.3.3)
|
79
|
+
activesupport (>= 5.0)
|
80
|
+
addressable (~> 2.8)
|
81
|
+
process_executer (~> 1.1)
|
82
|
+
rchardet (~> 1.8)
|
83
|
+
haml (6.3.0)
|
84
|
+
temple (>= 0.8.2)
|
85
|
+
thor
|
86
|
+
tilt
|
87
|
+
hashdiff (1.1.2)
|
88
|
+
hexapdf (1.0.3)
|
89
|
+
cmdparse (~> 3.0, >= 3.0.3)
|
90
|
+
geom2d (~> 0.4, >= 0.4.1)
|
91
|
+
openssl (>= 2.2.1)
|
92
|
+
i18n (1.14.6)
|
42
93
|
concurrent-ruby (~> 1.0)
|
43
|
-
json (2.
|
44
|
-
language-ruby (1.
|
94
|
+
json (2.9.1)
|
95
|
+
language-ruby (1.1.2)
|
45
96
|
dorian-arguments
|
46
97
|
zeitwerk
|
47
98
|
language_server-protocol (3.17.0.3)
|
48
99
|
levenshtein (0.2.2)
|
49
|
-
|
50
|
-
|
100
|
+
libv8-node (18.19.0.0)
|
101
|
+
libv8-node (18.19.0.0-arm64-darwin)
|
102
|
+
libv8-node (18.19.0.0-x86_64-linux)
|
103
|
+
logger (1.6.4)
|
104
|
+
mini_racer (0.16.0)
|
105
|
+
libv8-node (~> 18.19.0.0)
|
106
|
+
minitest (5.25.4)
|
107
|
+
mustermann (3.0.3)
|
108
|
+
ruby2_keywords (~> 0.0.1)
|
109
|
+
net-http (0.6.0)
|
110
|
+
uri
|
111
|
+
openssl (3.2.1)
|
112
|
+
ostruct (0.6.1)
|
51
113
|
parallel (1.26.3)
|
52
|
-
parser (3.3.
|
114
|
+
parser (3.3.6.0)
|
53
115
|
ast (~> 2.4.1)
|
54
116
|
racc
|
117
|
+
prettier_print (1.2.1)
|
118
|
+
process_executer (1.2.0)
|
119
|
+
public_suffix (6.0.1)
|
55
120
|
racc (1.8.1)
|
56
|
-
rack (3.1.
|
121
|
+
rack (3.1.8)
|
122
|
+
rack-protection (4.1.1)
|
123
|
+
base64 (>= 0.1.0)
|
124
|
+
logger (>= 1.6.0)
|
125
|
+
rack (>= 3.0.0, < 4)
|
126
|
+
rack-session (2.0.0)
|
127
|
+
rack (>= 3.0.0)
|
57
128
|
rainbow (3.1.1)
|
58
129
|
rake (13.2.1)
|
59
|
-
|
130
|
+
rchardet (1.8.0)
|
131
|
+
regexp_parser (2.9.3)
|
132
|
+
rexml (3.4.0)
|
60
133
|
rspec (3.13.0)
|
61
134
|
rspec-core (~> 3.13.0)
|
62
135
|
rspec-expectations (~> 3.13.0)
|
63
136
|
rspec-mocks (~> 3.13.0)
|
64
|
-
rspec-core (3.13.
|
137
|
+
rspec-core (3.13.2)
|
65
138
|
rspec-support (~> 3.13.0)
|
66
|
-
rspec-expectations (3.13.
|
139
|
+
rspec-expectations (3.13.3)
|
67
140
|
diff-lcs (>= 1.2.0, < 2.0)
|
68
141
|
rspec-support (~> 3.13.0)
|
69
|
-
rspec-mocks (3.13.
|
142
|
+
rspec-mocks (3.13.2)
|
70
143
|
diff-lcs (>= 1.2.0, < 2.0)
|
71
144
|
rspec-support (~> 3.13.0)
|
72
|
-
rspec-support (3.13.
|
73
|
-
rubocop (1.
|
145
|
+
rspec-support (3.13.2)
|
146
|
+
rubocop (1.69.2)
|
74
147
|
json (~> 2.3)
|
75
148
|
language_server-protocol (>= 3.17.0)
|
76
149
|
parallel (~> 1.10)
|
77
150
|
parser (>= 3.3.0.2)
|
78
151
|
rainbow (>= 2.2.2, < 4.0)
|
79
|
-
regexp_parser (>= 2.
|
80
|
-
rubocop-ast (>= 1.
|
152
|
+
regexp_parser (>= 2.9.3, < 3.0)
|
153
|
+
rubocop-ast (>= 1.36.2, < 2.0)
|
81
154
|
ruby-progressbar (~> 1.7)
|
82
|
-
unicode-display_width (>= 2.4.0, <
|
83
|
-
rubocop-ast (1.
|
155
|
+
unicode-display_width (>= 2.4.0, < 4.0)
|
156
|
+
rubocop-ast (1.37.0)
|
84
157
|
parser (>= 3.3.1.0)
|
85
158
|
rubocop-capybara (2.21.0)
|
86
159
|
rubocop (~> 1.41)
|
87
160
|
rubocop-factory_bot (2.26.1)
|
88
161
|
rubocop (~> 1.61)
|
89
|
-
rubocop-performance (1.
|
162
|
+
rubocop-performance (1.23.0)
|
90
163
|
rubocop (>= 1.48.1, < 2.0)
|
91
164
|
rubocop-ast (>= 1.31.1, < 2.0)
|
92
|
-
rubocop-rails (2.
|
165
|
+
rubocop-rails (2.27.0)
|
93
166
|
activesupport (>= 4.2.0)
|
94
167
|
rack (>= 1.1)
|
95
168
|
rubocop (>= 1.52.0, < 2.0)
|
96
169
|
rubocop-ast (>= 1.31.1, < 2.0)
|
97
170
|
rubocop-rake (0.6.0)
|
98
171
|
rubocop (~> 1.0)
|
99
|
-
rubocop-rspec (3.0
|
172
|
+
rubocop-rspec (3.3.0)
|
100
173
|
rubocop (~> 1.61)
|
101
174
|
rubocop-rspec_rails (2.30.0)
|
102
175
|
rubocop (~> 1.61)
|
103
176
|
rubocop-rspec (~> 3, >= 3.0.1)
|
104
|
-
ruby-prof (1.7.
|
177
|
+
ruby-prof (1.7.1)
|
105
178
|
ruby-progressbar (1.13.0)
|
106
|
-
|
179
|
+
ruby2_keywords (0.0.5)
|
180
|
+
securerandom (0.4.1)
|
181
|
+
sinatra (4.1.1)
|
182
|
+
logger (>= 1.6.0)
|
183
|
+
mustermann (~> 3.0)
|
184
|
+
rack (>= 3.0.0, < 4)
|
185
|
+
rack-protection (= 4.1.1)
|
186
|
+
rack-session (>= 2.0.0, < 3)
|
187
|
+
tilt (~> 2.0)
|
188
|
+
syntax_tree (6.2.0)
|
189
|
+
prettier_print (>= 1.2.0)
|
190
|
+
syntax_tree-haml (4.0.3)
|
191
|
+
haml (>= 5.2)
|
192
|
+
prettier_print (>= 1.2.1)
|
193
|
+
syntax_tree (>= 6.0.0)
|
194
|
+
syntax_tree-xml (0.1.0)
|
195
|
+
prettier_print
|
196
|
+
syntax_tree (>= 2.0.1)
|
197
|
+
temple (0.10.3)
|
198
|
+
terminal-table (3.0.2)
|
199
|
+
unicode-display_width (>= 1.1.1, < 3)
|
107
200
|
thor (1.3.2)
|
201
|
+
tilt (2.5.0)
|
108
202
|
tzinfo (2.0.6)
|
109
203
|
concurrent-ruby (~> 1.0)
|
110
|
-
unicode-display_width (2.
|
111
|
-
|
204
|
+
unicode-display_width (2.6.0)
|
205
|
+
uri (1.0.2)
|
206
|
+
w_syntax_tree-erb (0.12.0)
|
207
|
+
prettier_print (~> 1.2, >= 1.2.0)
|
208
|
+
syntax_tree (~> 6.1, >= 6.1.1)
|
209
|
+
webmock (3.24.0)
|
210
|
+
addressable (>= 2.8.0)
|
211
|
+
crack (>= 0.3.2)
|
212
|
+
hashdiff (>= 0.4.0, < 2.0.0)
|
213
|
+
yaml (0.4.0)
|
214
|
+
zeitwerk (2.7.1)
|
112
215
|
|
113
216
|
PLATFORMS
|
114
217
|
arm64-darwin-23
|
@@ -118,6 +221,7 @@ PLATFORMS
|
|
118
221
|
DEPENDENCIES
|
119
222
|
bundler-audit
|
120
223
|
code-ruby!
|
224
|
+
dorian
|
121
225
|
rake
|
122
226
|
rspec
|
123
227
|
rubocop-capybara
|
@@ -128,9 +232,11 @@ DEPENDENCIES
|
|
128
232
|
rubocop-rspec
|
129
233
|
rubocop-rspec_rails
|
130
234
|
ruby-prof
|
235
|
+
sinatra
|
236
|
+
webmock
|
131
237
|
|
132
238
|
RUBY VERSION
|
133
239
|
ruby 3.3.5p100
|
134
240
|
|
135
241
|
BUNDLED WITH
|
136
|
-
2.
|
242
|
+
2.6.1
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.2.1
|
data/bin/console
ADDED
data/bin/dorian
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'dorian' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
12
|
+
|
13
|
+
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
|
+
|
15
|
+
if File.file?(bundle_binstub)
|
16
|
+
if File.read(bundle_binstub, 300).include?(
|
17
|
+
"This file was generated by Bundler"
|
18
|
+
)
|
19
|
+
load(bundle_binstub)
|
20
|
+
else
|
21
|
+
abort(
|
22
|
+
"Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
23
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again."
|
24
|
+
)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
require "rubygems"
|
29
|
+
require "bundler/setup"
|
30
|
+
|
31
|
+
load Gem.bin_path("dorian", "dorian")
|
data/code-ruby.gemspec
CHANGED
@@ -14,12 +14,17 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.executables = "code"
|
15
15
|
|
16
16
|
s.add_dependency "activesupport"
|
17
|
+
s.add_dependency "base64"
|
17
18
|
s.add_dependency "bigdecimal"
|
18
19
|
s.add_dependency "did-you-mean"
|
19
20
|
s.add_dependency "dorian-arguments"
|
20
21
|
s.add_dependency "json"
|
21
22
|
s.add_dependency "language-ruby"
|
23
|
+
s.add_dependency "net-http"
|
24
|
+
s.add_dependency "uri"
|
22
25
|
s.add_dependency "zeitwerk"
|
26
|
+
|
23
27
|
s.metadata["rubygems_mfa_required"] = "true"
|
24
|
-
|
28
|
+
|
29
|
+
s.required_ruby_version = ">= 3.1"
|
25
30
|
end
|
data/lib/code/error.rb
CHANGED
@@ -2,40 +2,19 @@
|
|
2
2
|
|
3
3
|
class Code
|
4
4
|
class Error < StandardError
|
5
|
-
class ArityError < Error
|
6
|
-
end
|
7
|
-
|
8
|
-
class TypeError < Error
|
9
|
-
end
|
10
|
-
|
11
|
-
class TypeError < Error
|
12
|
-
end
|
13
|
-
|
14
|
-
class Undefined < Error
|
15
|
-
end
|
16
|
-
|
17
|
-
class UndefinedVariable < Error
|
18
|
-
end
|
19
|
-
|
20
|
-
class IncompatibleContext < Error
|
21
|
-
end
|
22
|
-
|
23
|
-
class KeyNotFound < Error
|
24
|
-
end
|
25
|
-
|
26
5
|
class Break < Error
|
27
|
-
attr_reader :
|
6
|
+
attr_reader :code_value
|
28
7
|
|
29
8
|
def initialize(value = nil)
|
30
|
-
@
|
9
|
+
@code_value = value.to_code
|
31
10
|
end
|
32
11
|
end
|
33
12
|
|
34
13
|
class Next < Error
|
35
|
-
attr_reader :
|
14
|
+
attr_reader :code_value
|
36
15
|
|
37
16
|
def initialize(value = nil)
|
38
|
-
@
|
17
|
+
@code_value = value.to_code
|
39
18
|
end
|
40
19
|
end
|
41
20
|
end
|
data/lib/code/node/code.rb
CHANGED
@@ -36,16 +36,18 @@ class Code
|
|
36
36
|
|
37
37
|
def to_h
|
38
38
|
{
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
Object::
|
45
|
-
Object::Boolean.new(keyword_splat?),
|
46
|
-
Object::String.new(:default) => Object::Code.new(default)
|
39
|
+
name:,
|
40
|
+
regular?: regular?,
|
41
|
+
keyword?: keyword?,
|
42
|
+
regular_splat?: regular_splat?,
|
43
|
+
keyword_splat?: keyword_splat?,
|
44
|
+
default: Object::Code.new(default)
|
47
45
|
}
|
48
46
|
end
|
47
|
+
|
48
|
+
def to_code
|
49
|
+
to_h.to_code
|
50
|
+
end
|
49
51
|
end
|
50
52
|
end
|
51
53
|
end
|
data/lib/code/node/while.rb
CHANGED
data/lib/code/object/boolean.rb
CHANGED
@@ -4,41 +4,45 @@ class Code
|
|
4
4
|
class Object
|
5
5
|
class Boolean < ::Code::Object
|
6
6
|
def initialize(*args, **_kargs, &)
|
7
|
-
raw = args.first
|
8
|
-
raw = raw.raw if raw.is_a?(Object)
|
9
|
-
@raw = !!raw
|
7
|
+
@raw = (args.first.is_an?(Object) ? args.first.truthy? : !!args.first)
|
10
8
|
end
|
11
9
|
|
12
10
|
def call(**args)
|
13
|
-
|
14
|
-
|
15
|
-
|
11
|
+
code_operator = args.fetch(:operator, nil).to_code
|
12
|
+
code_arguments = args.fetch(:arguments, []).to_code
|
13
|
+
code_value = code_arguments.code_first
|
16
14
|
|
17
|
-
case
|
15
|
+
case code_operator.to_s
|
18
16
|
when "&", "bitwise_and"
|
19
17
|
sig(args) { Boolean }
|
20
|
-
code_bitwise_and(
|
18
|
+
code_bitwise_and(code_value)
|
21
19
|
when "^", "bitwise_xor"
|
22
20
|
sig(args) { Boolean }
|
23
|
-
code_bitwise_xor(
|
21
|
+
code_bitwise_xor(code_value)
|
24
22
|
when "|", "bitwise_or"
|
25
23
|
sig(args) { Boolean }
|
26
|
-
code_bitwise_or(
|
24
|
+
code_bitwise_or(code_value)
|
27
25
|
else
|
28
26
|
super
|
29
27
|
end
|
30
28
|
end
|
31
29
|
|
32
|
-
def code_bitwise_and(
|
33
|
-
|
30
|
+
def code_bitwise_and(other)
|
31
|
+
code_other = other.to_code
|
32
|
+
|
33
|
+
Boolean.new(raw & code_other.raw)
|
34
34
|
end
|
35
35
|
|
36
|
-
def code_bitwise_or(
|
37
|
-
|
36
|
+
def code_bitwise_or(other)
|
37
|
+
code_other = other.to_code
|
38
|
+
|
39
|
+
Boolean.new(raw | code_other.raw)
|
38
40
|
end
|
39
41
|
|
40
|
-
def code_bitwise_xor(
|
41
|
-
|
42
|
+
def code_bitwise_xor(other)
|
43
|
+
code_other = other.to_code
|
44
|
+
|
45
|
+
Boolean.new(raw ^ code_other.raw)
|
42
46
|
end
|
43
47
|
|
44
48
|
def truthy?
|
data/lib/code/object/class.rb
CHANGED
@@ -4,10 +4,16 @@ class Code
|
|
4
4
|
class Object
|
5
5
|
class Class < Object
|
6
6
|
def initialize(*args, **_kargs, &)
|
7
|
-
raw =
|
8
|
-
|
9
|
-
|
10
|
-
|
7
|
+
@raw =
|
8
|
+
if args.first.is_a?(Class)
|
9
|
+
args.first.raw
|
10
|
+
elsif args.first.is_an?(Object)
|
11
|
+
args.first.class
|
12
|
+
elsif args.first && args.first < Object
|
13
|
+
args.first
|
14
|
+
else
|
15
|
+
Nothing
|
16
|
+
end
|
11
17
|
end
|
12
18
|
|
13
19
|
def call(...)
|