Class: NT54::Parser::Visitors::WaitForAreaCode

Inherits:
NT54::Parser::Visitor show all
Defined in:
lib/nt54/parser/visitors/wait_for_area_code.rb

Instance Attribute Summary

Attributes inherited from NT54::Parser::Visitor

#number

Instance Method Summary collapse

Methods inherited from NT54::Parser::Visitor

#initialize, #to_sym

Constructor Details

This class inherits a constructor from NT54::Parser::Visitor

Instance Method Details

#accept(keypress) ⇒ Object



5
6
7
8
9
10
11
12
13
# File 'lib/nt54/parser/visitors/wait_for_area_code.rb', line 5

def accept(keypress)
  super
  @number.area_code << keypress
  if @number.area_code.length == 2 && @number.area
    :area_code_completed
  elsif @number.area_code.length > 2
    :area_code_potentially_completed
  end
end