language-ruby 0.5.6 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +0 -1
- data/.ruby-version +1 -0
- data/.tool-versions +1 -1
- data/Gemfile +5 -4
- data/Gemfile.lock +12 -23
- data/README.md +2 -102
- data/language-ruby.gemspec +7 -5
- data/lib/language/atom/absent.rb +29 -0
- data/lib/language/atom/aka.rb +32 -0
- data/lib/language/atom/and.rb +32 -0
- data/lib/language/atom/any.rb +15 -0
- data/lib/language/atom/ignore.rb +27 -0
- data/lib/language/atom/maybe.rb +32 -0
- data/lib/language/atom/or.rb +46 -0
- data/lib/language/atom/repeat.rb +57 -0
- data/lib/language/atom/str.rb +21 -0
- data/lib/language/atom/then.rb +21 -0
- data/lib/language/atom.rb +10 -291
- data/lib/language/output.rb +13 -11
- data/lib/language/parser/absent/present.rb +2 -0
- data/lib/language/parser/absent.rb +2 -0
- data/lib/language/parser/end_of_input.rb +2 -0
- data/lib/language/parser/interuption.rb +2 -0
- data/lib/language/parser/not_end_of_input.rb +2 -0
- data/lib/language/parser/str/not_found.rb +2 -0
- data/lib/language/parser/str.rb +2 -0
- data/lib/language/parser.rb +10 -10
- data/lib/language/version.rb +5 -0
- data/lib/language-ruby.rb +2 -5
- data/lib/language.rb +9 -7
- data/spec/language_spec.rb +21 -0
- data/spec/spec_helper.rb +2 -5
- metadata +18 -218
- data/.cherry.js +0 -21
- data/.editorconfig +0 -9
- data/.github/workflows/rspec.yml +0 -14
- data/.prettierrc +0 -3
- data/CHANGELOG.md +0 -55
- data/LICENSE +0 -7
- data/TODO +0 -17
- data/bin/code +0 -76
- data/bin/format +0 -3
- data/bin/publish +0 -19
- data/bin/template +0 -85
- data/bin/test +0 -17
- data/code-ruby.gemspec +0 -17
- data/docs/class.code +0 -9
- data/docs/euler/1.template +0 -10
- data/docs/euler/2.template +0 -16
- data/docs/euler/3.template +0 -16
- data/docs/euler/4.template +0 -10
- data/docs/euler/5.template +0 -13
- data/docs/fibonnaci.template +0 -14
- data/docs/meetup.code +0 -12
- data/docs/precedence.template +0 -36
- data/docs/rain.code +0 -22
- data/docs/slack.code +0 -17
- data/docs/stripe.code +0 -7
- data/docs/twitter.code +0 -9
- data/lib/code/error.rb +0 -18
- data/lib/code/node/base_10.rb +0 -29
- data/lib/code/node/base_16.rb +0 -13
- data/lib/code/node/base_2.rb +0 -13
- data/lib/code/node/base_8.rb +0 -13
- data/lib/code/node/boolean.rb +0 -22
- data/lib/code/node/call.rb +0 -47
- data/lib/code/node/call_argument.rb +0 -21
- data/lib/code/node/chained_call.rb +0 -23
- data/lib/code/node/code.rb +0 -20
- data/lib/code/node/decimal.rb +0 -26
- data/lib/code/node/dictionnary.rb +0 -33
- data/lib/code/node/equal.rb +0 -34
- data/lib/code/node/function.rb +0 -20
- data/lib/code/node/function_parameter.rb +0 -31
- data/lib/code/node/if.rb +0 -59
- data/lib/code/node/if_modifier.rb +0 -47
- data/lib/code/node/list.rb +0 -16
- data/lib/code/node/negation.rb +0 -15
- data/lib/code/node/not.rb +0 -15
- data/lib/code/node/nothing.rb +0 -12
- data/lib/code/node/number.rb +0 -25
- data/lib/code/node/operation.rb +0 -38
- data/lib/code/node/power.rb +0 -20
- data/lib/code/node/rescue.rb +0 -17
- data/lib/code/node/splat.rb +0 -15
- data/lib/code/node/statement.rb +0 -59
- data/lib/code/node/string.rb +0 -53
- data/lib/code/node/ternary.rb +0 -24
- data/lib/code/node/unary_minus.rb +0 -15
- data/lib/code/node/while.rb +0 -35
- data/lib/code/node.rb +0 -13
- data/lib/code/object/argument.rb +0 -32
- data/lib/code/object/boolean.rb +0 -27
- data/lib/code/object/decimal.rb +0 -162
- data/lib/code/object/dictionnary.rb +0 -96
- data/lib/code/object/function.rb +0 -64
- data/lib/code/object/global.rb +0 -42
- data/lib/code/object/integer.rb +0 -221
- data/lib/code/object/list.rb +0 -207
- data/lib/code/object/nothing.rb +0 -23
- data/lib/code/object/number.rb +0 -6
- data/lib/code/object/range.rb +0 -146
- data/lib/code/object/ruby_function.rb +0 -31
- data/lib/code/object/string.rb +0 -102
- data/lib/code/object.rb +0 -197
- data/lib/code/parser/addition.rb +0 -21
- data/lib/code/parser/and_operator.rb +0 -17
- data/lib/code/parser/bitwise_and.rb +0 -17
- data/lib/code/parser/bitwise_or.rb +0 -21
- data/lib/code/parser/boolean.rb +0 -17
- data/lib/code/parser/call.rb +0 -122
- data/lib/code/parser/chained_call.rb +0 -47
- data/lib/code/parser/class.rb +0 -45
- data/lib/code/parser/code.rb +0 -25
- data/lib/code/parser/dictionnary.rb +0 -67
- data/lib/code/parser/equal.rb +0 -94
- data/lib/code/parser/equality.rb +0 -35
- data/lib/code/parser/equality_lower.rb +0 -9
- data/lib/code/parser/function.rb +0 -85
- data/lib/code/parser/greater.rb +0 -25
- data/lib/code/parser/group.rb +0 -22
- data/lib/code/parser/if.rb +0 -63
- data/lib/code/parser/if_modifier.rb +0 -55
- data/lib/code/parser/list.rb +0 -42
- data/lib/code/parser/multiplication.rb +0 -25
- data/lib/code/parser/name.rb +0 -107
- data/lib/code/parser/negation.rb +0 -30
- data/lib/code/parser/not_keyword.rb +0 -23
- data/lib/code/parser/nothing.rb +0 -22
- data/lib/code/parser/number.rb +0 -154
- data/lib/code/parser/operation.rb +0 -35
- data/lib/code/parser/or_keyword.rb +0 -21
- data/lib/code/parser/or_operator.rb +0 -17
- data/lib/code/parser/power.rb +0 -43
- data/lib/code/parser/range.rb +0 -17
- data/lib/code/parser/rescue.rb +0 -39
- data/lib/code/parser/shift.rb +0 -21
- data/lib/code/parser/splat.rb +0 -31
- data/lib/code/parser/statement.rb +0 -9
- data/lib/code/parser/string.rb +0 -78
- data/lib/code/parser/ternary.rb +0 -46
- data/lib/code/parser/unary_minus.rb +0 -31
- data/lib/code/parser/while.rb +0 -36
- data/lib/code/parser/whitespace.rb +0 -49
- data/lib/code/parser.rb +0 -19
- data/lib/code/ruby.rb +0 -174
- data/lib/code-ruby.rb +0 -10
- data/lib/code.rb +0 -47
- data/lib/template/node/code_part.rb +0 -13
- data/lib/template/node/part.rb +0 -19
- data/lib/template/node/template.rb +0 -15
- data/lib/template/node/text_part.rb +0 -13
- data/lib/template/node.rb +0 -4
- data/lib/template/parser/template.rb +0 -39
- data/lib/template/parser.rb +0 -19
- data/lib/template/version.rb +0 -3
- data/lib/template-ruby.rb +0 -10
- data/lib/template.rb +0 -50
- data/spec/code/addition_spec.rb +0 -13
- data/spec/code/and_operator_spec.rb +0 -13
- data/spec/code/bitwise_and_spec.rb +0 -13
- data/spec/code/bitwise_or_spec.rb +0 -13
- data/spec/code/boolean_spec.rb +0 -13
- data/spec/code/call_spec.rb +0 -21
- data/spec/code/chained_call_spec.rb +0 -16
- data/spec/code/code_spec.rb +0 -29
- data/spec/code/dictionnary_spec.rb +0 -17
- data/spec/code/equal_spec.rb +0 -26
- data/spec/code/equality_spec.rb +0 -13
- data/spec/code/function_spec.rb +0 -18
- data/spec/code/greater_spec.rb +0 -18
- data/spec/code/group_spec.rb +0 -12
- data/spec/code/if_modifier_spec.rb +0 -20
- data/spec/code/if_spec.rb +0 -25
- data/spec/code/list_spec.rb +0 -19
- data/spec/code/multiplication_spec.rb +0 -18
- data/spec/code/negation_spec.rb +0 -20
- data/spec/code/not_keyword_spec.rb +0 -13
- data/spec/code/nothing_spec.rb +0 -17
- data/spec/code/number_spec.rb +0 -22
- data/spec/code/or_keyword_spec.rb +0 -17
- data/spec/code/or_operator_spec.rb +0 -16
- data/spec/code/parser/boolean_spec.rb +0 -16
- data/spec/code/parser/call_spec.rb +0 -26
- data/spec/code/parser/chained_call.rb +0 -17
- data/spec/code/parser/dictionnary_spec.rb +0 -18
- data/spec/code/parser/function_spec.rb +0 -16
- data/spec/code/parser/group_spec.rb +0 -18
- data/spec/code/parser/list_spec.rb +0 -18
- data/spec/code/parser/number_spec.rb +0 -12
- data/spec/code/parser/string_spec.rb +0 -21
- data/spec/code/parser_spec.rb +0 -23
- data/spec/code/power_spec.rb +0 -13
- data/spec/code/range_spec.rb +0 -16
- data/spec/code/rescue_spec.rb +0 -13
- data/spec/code/shift_spec.rb +0 -13
- data/spec/code/splat_spec.rb +0 -13
- data/spec/code/string_spec.rb +0 -27
- data/spec/code/ternary_spec.rb +0 -18
- data/spec/code/unary_minus_spec.rb +0 -13
- data/spec/code/while_spec.rb +0 -18
- data/template-ruby.gemspec +0 -19
data/docs/euler/4.template
DELETED
data/docs/euler/5.template
DELETED
data/docs/fibonnaci.template
DELETED
data/docs/meetup.code
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
url = fetch(:url) { "https://www.meetup.com/parisrb" }
|
2
|
-
response = HTTP.get(url)
|
3
|
-
times = response.css(".groupHome-eventsList-upcomingEvents time")
|
4
|
-
times = times.map(&:datetime).map { |time| Time.from_epoch(time.to_integer) }
|
5
|
-
|
6
|
-
times.each do |time|
|
7
|
-
if (1.day.from_now...(1.day.from_now + 1.hour)).include?(time)
|
8
|
-
Sms.send("Event in one day {url}")
|
9
|
-
elsif (2.hours.from_now...(1.hour.from_now)).include(time)
|
10
|
-
Sms.send("Event in two hours {url}")
|
11
|
-
end
|
12
|
-
end
|
data/docs/precedence.template
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
- Code
|
2
|
-
- Statement
|
3
|
-
- Equality
|
4
|
-
- Splat
|
5
|
-
- Class
|
6
|
-
- While
|
7
|
-
- If
|
8
|
-
- IfModifier
|
9
|
-
- OrKeyword
|
10
|
-
- NotKeyword
|
11
|
-
- Equal
|
12
|
-
- Rescue
|
13
|
-
- Ternary
|
14
|
-
- Range
|
15
|
-
- OrOperator
|
16
|
-
- AndOperator
|
17
|
-
- EqualityLower
|
18
|
-
- Greater
|
19
|
-
- BitwiseOr
|
20
|
-
- BitwiseAnd
|
21
|
-
- Shift
|
22
|
-
- Addition
|
23
|
-
- Multiplication
|
24
|
-
- UnaryMinus
|
25
|
-
- Power
|
26
|
-
- Negation
|
27
|
-
- Function
|
28
|
-
- ChainedCall
|
29
|
-
- Dictionnary
|
30
|
-
- List
|
31
|
-
- String
|
32
|
-
- Number
|
33
|
-
- Boolean
|
34
|
-
- Nothing
|
35
|
-
- Group
|
36
|
-
- Call
|
data/docs/rain.code
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
paris = { latitude: 48.8566, longitude: 2.4022 }
|
2
|
-
latitude = fetch(:latitude) { paris.latitude }
|
3
|
-
longitude = fetch(:longitude) { paris.longitude }
|
4
|
-
duration = fetch(:duration) { 1.hour }
|
5
|
-
hour = duration.from_now.hour
|
6
|
-
|
7
|
-
response =
|
8
|
-
HTTP.get(
|
9
|
-
"https://api.open-meteo.com/v1/forecast",
|
10
|
-
parameters: {
|
11
|
-
latitude: latitude,
|
12
|
-
longitude: longitude,
|
13
|
-
hourly: :precipitation
|
14
|
-
}
|
15
|
-
)
|
16
|
-
|
17
|
-
precipitation = response.hourly.precipitation[hour]
|
18
|
-
precipitation = (precipitation * 100).to_integer
|
19
|
-
|
20
|
-
if precipitation > 0
|
21
|
-
Sms.send("There will be {precipitation}% of precipitation in the next hour")
|
22
|
-
end
|
data/docs/slack.code
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
Slack.send("Who is leading the syncs?", channel: "#team-template")
|
2
|
-
|
3
|
-
Twitter.send("What do you want to do this week?")
|
4
|
-
|
5
|
-
Discord.send("Who will be the game master this week?")
|
6
|
-
|
7
|
-
Email.send(
|
8
|
-
subject: "What did you do last week?",
|
9
|
-
from: "dorian@thoughtbot.com",
|
10
|
-
reply_to: "rob@thoughtbot.com"
|
11
|
-
)
|
12
|
-
|
13
|
-
Email.send(
|
14
|
-
subject: "What do you want to do this week?",
|
15
|
-
from: "dorian@thoughtbot.com",
|
16
|
-
reply_to: "rob@thoughtbot.com"
|
17
|
-
)
|
data/docs/stripe.code
DELETED
data/docs/twitter.code
DELETED
@@ -1,9 +0,0 @@
|
|
1
|
-
twitter_username = fetch(:twitter_username) { "dorianmariefr" }
|
2
|
-
|
3
|
-
Twitter
|
4
|
-
.search("to:{twitter_username}", type: :recent)
|
5
|
-
.each do |tweet|
|
6
|
-
next if Storage.exists?(tweet.id)
|
7
|
-
Storage.create!(tweet.id)
|
8
|
-
Sms.send("New mention: {tweet.user.screen_name}: {tweet.text}")
|
9
|
-
end
|
data/lib/code/error.rb
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Error < StandardError
|
3
|
-
class TypeError < ::Code::Error
|
4
|
-
end
|
5
|
-
|
6
|
-
class Undefined < ::Code::Error
|
7
|
-
end
|
8
|
-
|
9
|
-
class UndefinedVariable < ::Code::Error
|
10
|
-
end
|
11
|
-
|
12
|
-
class ArgumentError < ::Code::Error
|
13
|
-
end
|
14
|
-
|
15
|
-
class IncompatibleContext < ::Code::Error
|
16
|
-
end
|
17
|
-
end
|
18
|
-
end
|
data/lib/code/node/base_10.rb
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Base10 < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@whole = parsed.delete(:whole)
|
6
|
-
|
7
|
-
if parsed.key?(:exponent)
|
8
|
-
@exponent = Node::Statement.new(parsed.delete(:exponent))
|
9
|
-
end
|
10
|
-
|
11
|
-
super(parsed)
|
12
|
-
end
|
13
|
-
|
14
|
-
def evaluate(**args)
|
15
|
-
if @exponent
|
16
|
-
exponent = @exponent.evaluate(**args)
|
17
|
-
|
18
|
-
if exponent.is_a?(::Code::Object::Integer)
|
19
|
-
::Code::Object::Integer.new(@whole.to_i, exponent: exponent)
|
20
|
-
else
|
21
|
-
::Code::Object::Decimal.new(@whole, exponent: exponent)
|
22
|
-
end
|
23
|
-
else
|
24
|
-
::Code::Object::Integer.new(@whole.to_i)
|
25
|
-
end
|
26
|
-
end
|
27
|
-
end
|
28
|
-
end
|
29
|
-
end
|
data/lib/code/node/base_16.rb
DELETED
data/lib/code/node/base_2.rb
DELETED
data/lib/code/node/base_8.rb
DELETED
data/lib/code/node/boolean.rb
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Boolean < Node
|
4
|
-
TRUE_KEYWORD = "true"
|
5
|
-
FALSE_KEYWORD = "false"
|
6
|
-
|
7
|
-
def initialize(parsed)
|
8
|
-
@boolean = parsed
|
9
|
-
end
|
10
|
-
|
11
|
-
def evaluate(**args)
|
12
|
-
if @boolean == TRUE_KEYWORD
|
13
|
-
::Code::Object::Boolean.new(true)
|
14
|
-
elsif @boolean == FALSE_KEYWORD
|
15
|
-
::Code::Object::Boolean.new(false)
|
16
|
-
else
|
17
|
-
raise NotImplementedError.new(@boolean)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
data/lib/code/node/call.rb
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Call < Node
|
4
|
-
class Block < Node
|
5
|
-
def initialize(parsed)
|
6
|
-
@parameters =
|
7
|
-
parsed
|
8
|
-
.delete(:parameters) { [] }
|
9
|
-
.map { |parameter| Node::FunctionParameter.new(parameter) }
|
10
|
-
|
11
|
-
@body = Node::Code.new(parsed.delete(:body))
|
12
|
-
|
13
|
-
super(parsed)
|
14
|
-
end
|
15
|
-
|
16
|
-
def evaluate(**args)
|
17
|
-
::Code::Object::Argument.new(
|
18
|
-
::Code::Object::Function.new(parameters: @parameters, body: @body)
|
19
|
-
)
|
20
|
-
end
|
21
|
-
end
|
22
|
-
|
23
|
-
def initialize(parsed)
|
24
|
-
@name = parsed.delete(:name)
|
25
|
-
@arguments =
|
26
|
-
parsed
|
27
|
-
.delete(:arguments) { [] }
|
28
|
-
.map { |argument| Node::CallArgument.new(argument) }
|
29
|
-
|
30
|
-
if parsed.key?(:block)
|
31
|
-
@block = Node::Call::Block.new(parsed.delete(:block))
|
32
|
-
end
|
33
|
-
|
34
|
-
super(parsed)
|
35
|
-
end
|
36
|
-
|
37
|
-
def evaluate(**args)
|
38
|
-
arguments = @arguments.map { |argument| argument.evaluate(**args) }
|
39
|
-
arguments << @block.evaluate(**args) if @block
|
40
|
-
|
41
|
-
name = ::Code::Object::String.new(@name)
|
42
|
-
|
43
|
-
args.fetch(:object).call(operator: name, arguments: arguments, **args)
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class CallArgument < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@value = Node::Code.new(parsed.delete(:value))
|
6
|
-
@name = parsed.delete(:name)
|
7
|
-
end
|
8
|
-
|
9
|
-
def evaluate(**args)
|
10
|
-
if @name
|
11
|
-
::Code::Object::Argument.new(
|
12
|
-
@value.evaluate(**args),
|
13
|
-
name: ::Code::Object::String.new(@name)
|
14
|
-
)
|
15
|
-
else
|
16
|
-
::Code::Object::Argument.new(@value.evaluate(**args))
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
@@ -1,23 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class ChainedCall < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@first = Node::Statement.new(parsed.delete(:first))
|
6
|
-
@others =
|
7
|
-
parsed
|
8
|
-
.delete(:others)
|
9
|
-
.map { |operator| Node::Statement.new(operator) }
|
10
|
-
|
11
|
-
super(parsed)
|
12
|
-
end
|
13
|
-
|
14
|
-
def evaluate(**args)
|
15
|
-
first = @first.evaluate(**args)
|
16
|
-
|
17
|
-
@others.reduce(first) do |acc, element|
|
18
|
-
element.evaluate(**args.merge(object: acc))
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|
22
|
-
end
|
23
|
-
end
|
data/lib/code/node/code.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Code < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@statements = parsed.map { |statement| Node::Statement.new(statement) }
|
6
|
-
end
|
7
|
-
|
8
|
-
def evaluate(**args)
|
9
|
-
last = ::Code::Object::Nothing.new
|
10
|
-
|
11
|
-
@statements.each do |statement|
|
12
|
-
last =
|
13
|
-
statement.evaluate(**args.merge(object: ::Code::Object::Global.new))
|
14
|
-
end
|
15
|
-
|
16
|
-
last
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
data/lib/code/node/decimal.rb
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Decimal < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@decimal = parsed.delete(:decimal)
|
6
|
-
|
7
|
-
if parsed.key?(:exponent)
|
8
|
-
@exponent = Node::Statement.new(parsed.delete(:exponent))
|
9
|
-
end
|
10
|
-
|
11
|
-
super(parsed)
|
12
|
-
end
|
13
|
-
|
14
|
-
def evaluate(**args)
|
15
|
-
if @exponent
|
16
|
-
::Code::Object::Decimal.new(
|
17
|
-
@decimal,
|
18
|
-
exponent: @exponent.evaluate(**args)
|
19
|
-
)
|
20
|
-
else
|
21
|
-
::Code::Object::Decimal.new(@decimal)
|
22
|
-
end
|
23
|
-
end
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
@@ -1,33 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Dictionnary < Node
|
4
|
-
class KeyValue < Node
|
5
|
-
def initialize(parsed)
|
6
|
-
if parsed.key?(:statement)
|
7
|
-
@key = Node::Statement.new(parsed.delete(:statement))
|
8
|
-
elsif parsed.key?(:name)
|
9
|
-
@key = Node::String.new([{ text: parsed.delete(:name) }])
|
10
|
-
end
|
11
|
-
|
12
|
-
@value = Node::Code.new(parsed.delete(:value))
|
13
|
-
end
|
14
|
-
|
15
|
-
def evaluate(**args)
|
16
|
-
[@key.evaluate(**args), @value.evaluate(**args)]
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
def initialize(parsed)
|
21
|
-
parsed = [] if parsed == ""
|
22
|
-
@key_values =
|
23
|
-
parsed.map { |key_value| Node::Dictionnary::KeyValue.new(key_value) }
|
24
|
-
end
|
25
|
-
|
26
|
-
def evaluate(**args)
|
27
|
-
::Code::Object::Dictionnary.new(
|
28
|
-
@key_values.map { |key_value| key_value.evaluate(**args) }.to_h
|
29
|
-
)
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
data/lib/code/node/equal.rb
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Equal < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@operator = parsed.delete(:operator)
|
6
|
-
@left = parsed.delete(:left)
|
7
|
-
@right = Node::Statement.new(parsed.delete(:right))
|
8
|
-
super(parsed)
|
9
|
-
end
|
10
|
-
|
11
|
-
def evaluate(**args)
|
12
|
-
right = @right.evaluate(**args)
|
13
|
-
left = ::Code::Object::String.new(@left)
|
14
|
-
context = args.fetch(:context)
|
15
|
-
|
16
|
-
if @operator == ""
|
17
|
-
context[left] = right
|
18
|
-
else
|
19
|
-
if context[left].nil?
|
20
|
-
raise ::Code::Error::Undefined.new("#{left} is not defined")
|
21
|
-
end
|
22
|
-
|
23
|
-
context[left] = context.fetch(left).call(
|
24
|
-
operator: @operator,
|
25
|
-
arguments: [::Code::Object::Argument.new(right)],
|
26
|
-
**args
|
27
|
-
)
|
28
|
-
end
|
29
|
-
|
30
|
-
args[:context][left]
|
31
|
-
end
|
32
|
-
end
|
33
|
-
end
|
34
|
-
end
|
data/lib/code/node/function.rb
DELETED
@@ -1,20 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Function < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@parameters =
|
6
|
-
parsed
|
7
|
-
.delete(:parameters) { [] }
|
8
|
-
.map { |parameter| Node::FunctionParameter.new(parameter) }
|
9
|
-
|
10
|
-
@body = Node::Code.new(parsed.delete(:body))
|
11
|
-
|
12
|
-
super(parsed)
|
13
|
-
end
|
14
|
-
|
15
|
-
def evaluate(**args)
|
16
|
-
::Code::Object::Function.new(parameters: @parameters, body: @body)
|
17
|
-
end
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
@@ -1,31 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class FunctionParameter < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@name = parsed.delete(:name)
|
6
|
-
@keyword = !!parsed.delete(:keyword)
|
7
|
-
super(parsed)
|
8
|
-
end
|
9
|
-
|
10
|
-
def name
|
11
|
-
::Code::Object::String.new(@name)
|
12
|
-
end
|
13
|
-
|
14
|
-
def regular?
|
15
|
-
!@keyword
|
16
|
-
end
|
17
|
-
|
18
|
-
def keyword?
|
19
|
-
!!@keyword
|
20
|
-
end
|
21
|
-
|
22
|
-
def regular_splat?
|
23
|
-
false
|
24
|
-
end
|
25
|
-
|
26
|
-
def keyword_splat?
|
27
|
-
false
|
28
|
-
end
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
data/lib/code/node/if.rb
DELETED
@@ -1,59 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class If < Node
|
4
|
-
IF_KEYWORD = "if"
|
5
|
-
UNLESS_KEYWORD = "unless"
|
6
|
-
ELSIF_KEYWORD = "elsif"
|
7
|
-
ELSE_KEYWORD = "else"
|
8
|
-
|
9
|
-
class Else < Node
|
10
|
-
attr_reader :operator, :statement, :body
|
11
|
-
|
12
|
-
def initialize(parsed)
|
13
|
-
@operator = parsed.delete(:operator)
|
14
|
-
@body = Node::Code.new(parsed.delete(:body))
|
15
|
-
|
16
|
-
if parsed.key?(:statement)
|
17
|
-
@statement = Node::Statement.new(parsed.delete(:statement))
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
def initialize(parsed)
|
23
|
-
@first_operator = parsed.delete(:first_operator)
|
24
|
-
@first_statement = Node::Statement.new(parsed.delete(:first_statement))
|
25
|
-
@first_body = Node::Code.new(parsed.delete(:first_body))
|
26
|
-
@elses =
|
27
|
-
parsed.delete(:elses) { [] }.map { |elses| Node::If::Else.new(elses) }
|
28
|
-
super(parsed)
|
29
|
-
end
|
30
|
-
|
31
|
-
def evaluate(**args)
|
32
|
-
if @first_operator == IF_KEYWORD &&
|
33
|
-
@first_statement.evaluate(**args).truthy?
|
34
|
-
@first_body.evaluate(**args)
|
35
|
-
elsif @first_operator == UNLESS_KEYWORD &&
|
36
|
-
@first_statement.evaluate(**args).falsy?
|
37
|
-
@first_body.evaluate(**args)
|
38
|
-
else
|
39
|
-
@elses.each do |elses|
|
40
|
-
if elses.operator == ELSIF_KEYWORD &&
|
41
|
-
elses.statement.evaluate(**args).truthy?
|
42
|
-
return elses.body.evaluate(**args)
|
43
|
-
elsif elses.operator == IF_KEYWORD &&
|
44
|
-
elses.statement.evaluate(**args).truthy?
|
45
|
-
return elses.body.evaluate(**args)
|
46
|
-
elsif elses.operator == UNLESS_KEYWORD &&
|
47
|
-
elses.statement.evaluate(**args).falsy?
|
48
|
-
return elses.body.evaluate(**args)
|
49
|
-
elsif elses.operator == ELSE_KEYWORD
|
50
|
-
return elses.body.evaluate(**args)
|
51
|
-
end
|
52
|
-
end
|
53
|
-
|
54
|
-
::Code::Object::Nothing.new
|
55
|
-
end
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
end
|
@@ -1,47 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class IfModifier < Node
|
4
|
-
IF_KEYWORD = "if"
|
5
|
-
UNLESS_KEYWORD = "unless"
|
6
|
-
WHILE_KEYWORD = "while"
|
7
|
-
UNTIL_KEYWORD = "until"
|
8
|
-
|
9
|
-
def initialize(parsed)
|
10
|
-
@operator = parsed.delete(:operator)
|
11
|
-
@left = Node::Statement.new(parsed.delete(:left))
|
12
|
-
@right = Node::Statement.new(parsed.delete(:right))
|
13
|
-
super(parsed)
|
14
|
-
end
|
15
|
-
|
16
|
-
def evaluate(**args)
|
17
|
-
if @operator == IF_KEYWORD
|
18
|
-
if @right.evaluate(**args).truthy?
|
19
|
-
@left.evaluate(**args)
|
20
|
-
else
|
21
|
-
::Code::Object::Nothing.new
|
22
|
-
end
|
23
|
-
elsif @operator == UNLESS_KEYWORD
|
24
|
-
if @right.evaluate(**args).falsy?
|
25
|
-
@left.evaluate(**args)
|
26
|
-
else
|
27
|
-
::Code::Object::Nothing.new
|
28
|
-
end
|
29
|
-
elsif @operator == WHILE_KEYWORD
|
30
|
-
last = ::Code::Object::Nothing.new
|
31
|
-
|
32
|
-
last = @left.evaluate(**args) while @right.evaluate(**args).truthy?
|
33
|
-
|
34
|
-
last
|
35
|
-
elsif @operator == UNTIL_KEYWORD
|
36
|
-
last = ::Code::Object::Nothing.new
|
37
|
-
|
38
|
-
last = @left.evaluate(**args) while @right.evaluate(**args).falsy?
|
39
|
-
|
40
|
-
last
|
41
|
-
else
|
42
|
-
raise NotImplementedError.new(@operator)
|
43
|
-
end
|
44
|
-
end
|
45
|
-
end
|
46
|
-
end
|
47
|
-
end
|
data/lib/code/node/list.rb
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class List < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
parsed = [] if parsed == ""
|
6
|
-
@elements = parsed.map { |element| Node::Code.new(element) }
|
7
|
-
end
|
8
|
-
|
9
|
-
def evaluate(**args)
|
10
|
-
::Code::Object::List.new(
|
11
|
-
@elements.map { |element| element.evaluate(**args) }
|
12
|
-
)
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
data/lib/code/node/negation.rb
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
class Code
|
2
|
-
class Node
|
3
|
-
class Negation < Node
|
4
|
-
def initialize(parsed)
|
5
|
-
@operator = parsed.delete(:operator)
|
6
|
-
@right = Node::Statement.new(parsed.delete(:right))
|
7
|
-
super(parsed)
|
8
|
-
end
|
9
|
-
|
10
|
-
def evaluate(**args)
|
11
|
-
@right.evaluate(**args).call(operator: @operator, arguments: [], **args)
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
15
|
-
end
|