Class: ReVIEW::Compiler::SyntaxElement

Inherits:
Object
  • Object
show all
Defined in:
lib/review/compiler.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, type, argc, &block) ⇒ SyntaxElement

Returns a new instance of SyntaxElement.



57
58
59
60
61
62
# File 'lib/review/compiler.rb', line 57

def initialize(name, type, argc, &block)
  @name = name
  @type = type
  @argc_spec = argc
  @checker = block
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



64
65
66
# File 'lib/review/compiler.rb', line 64

def name
  @name
end

Instance Method Details

#block_allowed?Boolean

Returns:

  • (Boolean)


86
87
88
# File 'lib/review/compiler.rb', line 86

def block_allowed?
  @type == :block or @type == :optional
end

#block_required?Boolean

Returns:

  • (Boolean)


82
83
84
# File 'lib/review/compiler.rb', line 82

def block_required?
  @type == :block
end

#check_args(args) ⇒ Object



66
67
68
69
70
71
# File 'lib/review/compiler.rb', line 66

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_argcObject



73
74
75
76
77
78
79
80
# File 'lib/review/compiler.rb', line 73

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