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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 56cad98ddddf30558dd50bde2947f90b785fea1b
4
- data.tar.gz: 52271a3c6e50b65b1961316cd11ce5d9160226d5
3
+ metadata.gz: ca69c9ae44f38d8c0857b220996ba0d61b317f9f
4
+ data.tar.gz: 8bf0eae470330703ad014bedf2b721a78147e643
5
5
  SHA512:
6
- metadata.gz: fe0511b66fc3ba2ca8c0e7a04eec0ae9298bea40ffba516bc367bc5017b3ba29f2deef4bc553eb0fc91be520cec55b3f41894753f3eefed9778348c460f82aac
7
- data.tar.gz: 6b9c4b85d08f88956c60735a9fd72d4c04d4dbe0415eb0fd1a179aa7af2a46cc9c59ed4770761fd9b1ecda766bdd0021e6e1508e8b677fcbcfe78fd2d4e74f26
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
- class While < Stmt
981
+
982
+ # @abstract Subclass to implement a custom iteration class.
983
+ class Iteration < Stmt
982
984
  attr_reader :condition, :body
983
985
 
984
- def initialize(condition_expr, body_stmt, **rest)
985
- @condition = Syntax::Expr.ensure(condition_expr)
986
- @body = Syntax::Stmt::ensure(body_stmt)
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 DoWhile < Stmt
993
- attr_reader :condition, :body
994
-
995
- def initialize(condition_expr, body_stmt, **rest)
996
- @condition = Syntax::Expr.ensure(condition_expr)
997
- @body = Syntax::Stmt::ensure(body_stmt)
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
- super **rest
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 For < Stmt
1004
- attr_reader :init, :condition, :loop, :body
1030
+ # This class represents `for` iteration statement.
1031
+ class For < Iteration
1032
+ attr_reader :init, :loop
1005
1033
 
1006
- def initialize(init_stmt=nil, condition_expr=nil, loop_expr=nil, body_stmt, **rest)
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
 
@@ -1,3 +1,3 @@
1
1
  module Chelsy
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
@@ -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
- stmt = Block.new.tap do |b|
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
- b << Declaration.new(:celsius, Type::Int.new, celsius)
32
- b << Operator::Call.new(:printf, [Constant::String.new("%d\t%d\n"), :fahr, :celsius])
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
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-24 00:00:00.000000000 Z
11
+ date: 2016-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler