chelsy 0.0.4 → 0.0.5
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/chelsy/ast.rb +46 -17
- data/lib/chelsy/version.rb +1 -1
- data/sample/temperature.rb +3 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca69c9ae44f38d8c0857b220996ba0d61b317f9f
|
4
|
+
data.tar.gz: 8bf0eae470330703ad014bedf2b721a78147e643
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f52743c6703285660c60b3f9da020d9a4e11ff57e6847142cbb3b91e5b041dce5fc4ee3ee19404a30667e987a0104afc78c2f8ef3f05270f51e0dc289b5e192
|
7
|
+
data.tar.gz: 0aa25da10d2d50d6b620c3236edb4c98ca8def623b333b04c588963fd6bdfbf14f87a49ef7a6e3abff45d9447079680671968fd2c0ee7debb77fac7eeaa716a7
|
data/lib/chelsy/ast.rb
CHANGED
@@ -978,38 +978,67 @@ module Chelsy
|
|
978
978
|
end
|
979
979
|
|
980
980
|
# == 6.8.5 Iteration statements
|
981
|
-
|
981
|
+
|
982
|
+
# @abstract Subclass to implement a custom iteration class.
|
983
|
+
class Iteration < Stmt
|
982
984
|
attr_reader :condition, :body
|
983
985
|
|
984
|
-
|
985
|
-
|
986
|
-
|
986
|
+
# Initialize iteration statement with its condition and iteration body statement.
|
987
|
+
# You can pass an optional code block which takes {Chelsy::Block} instance can be
|
988
|
+
# used to construct iteration body statements.
|
989
|
+
#
|
990
|
+
# @param condition_expr an expression which express condition
|
991
|
+
# @param body_stmt iteration body statement
|
992
|
+
# @yield [Chelsy::Block] If given, this method yields {Chelsy::Block} instance
|
993
|
+
# @raise [ArgumentError] Given neither `body_stmt` nor code block
|
994
|
+
def initialize(condition_expr=nil, body_stmt=nil, **rest)
|
995
|
+
@condition = Syntax::Expr.ensure(condition_expr) if condition_expr
|
996
|
+
|
997
|
+
if block_given?
|
998
|
+
@body = Block.new
|
999
|
+
yield @body
|
1000
|
+
elsif body_stmt
|
1001
|
+
@body = Syntax::Stmt.ensure(body_stmt)
|
1002
|
+
else
|
1003
|
+
raise ArgumentError, "missing body statement"
|
1004
|
+
end
|
987
1005
|
|
988
1006
|
super **rest
|
989
1007
|
end
|
990
1008
|
end
|
991
1009
|
|
992
|
-
class
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
1010
|
+
# This class represents `while` iteration statement.
|
1011
|
+
class While < Iteration
|
1012
|
+
# (see Chelsy::Iteration#initialize)
|
1013
|
+
# @raise [ArgumentError] `condition_expr` is nil
|
1014
|
+
def initialize(condition_expr, body_stmt=nil, **rest)
|
1015
|
+
raise ArgumentError, "missing condition expr" unless condition_expr
|
1016
|
+
super condition_expr, body_stmt, **rest
|
1017
|
+
end
|
1018
|
+
end
|
998
1019
|
|
999
|
-
|
1020
|
+
# This class represents `do ... while (...)` iteration statement.
|
1021
|
+
class DoWhile < Iteration
|
1022
|
+
# (see Chelsy::Iteration#initialize)
|
1023
|
+
# @raise [ArgumentError] `condition_expr` is nil
|
1024
|
+
def initialize(condition_expr, body_stmt=nil, **rest)
|
1025
|
+
raise ArgumentError, "missing condition expr" unless condition_expr
|
1026
|
+
super condition_expr, body_stmt, **rest
|
1000
1027
|
end
|
1001
1028
|
end
|
1002
1029
|
|
1003
|
-
class
|
1004
|
-
|
1030
|
+
# This class represents `for` iteration statement.
|
1031
|
+
class For < Iteration
|
1032
|
+
attr_reader :init, :loop
|
1005
1033
|
|
1006
|
-
|
1034
|
+
# (see Chelsy::Iteration#initialize)
|
1035
|
+
# @param init_stmt initialization statement
|
1036
|
+
# @param loop_expr loop expression is performed each iteration
|
1037
|
+
def initialize(init_stmt=nil, condition_expr=nil, loop_expr=nil, body_stmt=nil, **rest)
|
1007
1038
|
@init = Syntax::BlockItem::ensure(init_stmt) if init_stmt
|
1008
|
-
@condition = Syntax::Expr.ensure(condition_expr) if condition_expr
|
1009
1039
|
@loop = Syntax::Expr.ensure(loop_expr) if loop_expr
|
1010
|
-
@body = Syntax::Stmt::ensure(body_stmt)
|
1011
1040
|
|
1012
|
-
super **rest
|
1041
|
+
super condition_expr, body_stmt, **rest
|
1013
1042
|
end
|
1014
1043
|
end
|
1015
1044
|
|
data/lib/chelsy/version.rb
CHANGED
data/sample/temperature.rb
CHANGED
@@ -23,16 +23,15 @@ doc << Function.new(:main,
|
|
23
23
|
cond = Operator::LessThanOrEqual.new(:fahr, 'UPPER')
|
24
24
|
step = Operator::AssignAdd.new(:fahr, 'STEP')
|
25
25
|
|
26
|
-
|
26
|
+
b << For.new(init, cond, step) do |body|
|
27
27
|
celsius = Operator::Sub.new(:fahr, Constant::Int.new(32))
|
28
28
|
celsius = Operator::Mul.new(Constant::Int.new(5), celsius)
|
29
29
|
celsius = Operator::Div.new(celsius, Constant::Int.new(9))
|
30
30
|
|
31
|
-
|
32
|
-
|
31
|
+
body << Declaration.new(:celsius, Type::Int.new, celsius)
|
32
|
+
body << Operator::Call.new(:printf, [Constant::String.new("%d\t%d\n"), :fahr, :celsius])
|
33
33
|
end
|
34
34
|
|
35
|
-
b << For.new(init, cond, step, stmt)
|
36
35
|
b << Return.new(Constant::Int.new(0))
|
37
36
|
end
|
38
37
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chelsy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takanori Ishikawa
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-11-
|
11
|
+
date: 2016-11-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|