Class: ReVIEW::Compiler::SyntaxElement
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #block_allowed? ⇒ Boolean
- #block_required? ⇒ Boolean
- #check_args(args) ⇒ Object
-
#initialize(name, type, argc, &block) ⇒ SyntaxElement
constructor
A new instance of SyntaxElement.
- #min_argc ⇒ Object
Constructor Details
#initialize(name, type, argc, &block) ⇒ SyntaxElement
Returns a new instance of SyntaxElement.
58 59 60 61 62 63 |
# File 'lib/review/compiler.rb', line 58 def initialize(name, type, argc, &block) @name = name @type = type @argc_spec = argc @checker = block end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
65 66 67 |
# File 'lib/review/compiler.rb', line 65 def name @name end |
Instance Method Details
#block_allowed? ⇒ Boolean
87 88 89 |
# File 'lib/review/compiler.rb', line 87 def block_allowed? @type == :block or @type == :optional end |
#block_required? ⇒ Boolean
83 84 85 |
# File 'lib/review/compiler.rb', line 83 def block_required? @type == :block end |
#check_args(args) ⇒ Object
67 68 69 70 71 72 |
# File 'lib/review/compiler.rb', line 67 def check_args(args) unless @argc_spec === args.size raise CompileError, "wrong # of parameters (block command //#{@name}, expect #{@argc_spec} but #{args.size})" end @checker.call(*args) if @checker end |
#min_argc ⇒ Object
74 75 76 77 78 79 80 81 |
# File 'lib/review/compiler.rb', line 74 def min_argc case @argc_spec when Range then @argc_spec.begin when Integer then @argc_spec else raise TypeError, "argc_spec is not Range/Integer: #{inspect()}" end end |