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.



52
53
54
55
56
57
# File 'lib/review/compiler.rb', line 52

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.



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

def name
  @name
end

Instance Method Details

#block_allowed?Boolean

Returns:

  • (Boolean)


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

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

#block_required?Boolean

Returns:

  • (Boolean)


79
80
81
# File 'lib/review/compiler.rb', line 79

def block_required?
  @type == :block
end

#check_args(args) ⇒ Object



61
62
63
64
65
66
67
68
# File 'lib/review/compiler.rb', line 61

def check_args(args)
  unless @argc_spec === args.size
    raise CompileError, "wrong # of parameters (block command //#{@name}, expect #{@argc_spec} but #{args.size})"
  end
  if @checker
    @checker.call(*args)
  end
end

#min_argcObject



70
71
72
73
74
75
76
77
# File 'lib/review/compiler.rb', line 70

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