Method: Languages::VariableBehaviour#handle_multiple_declaration_with_comma

Defined in:
lib/kuniri/language/abstract_container/structured_and_oo/variable_behaviour.rb

#handle_multiple_declaration_with_comma(pString) ⇒ Object (protected)

One common behaviour related with variables, is the multiple declaration separated by comma. This method is responsible for handling multiple line declaration separated by comma.

Parameters:

  • pString

    String to be handled.

Returns:

  • Return an array with multiple variables.

Raises:

  • (NotImplementedError)


31
32
33
# File 'lib/kuniri/language/abstract_container/structured_and_oo/variable_behaviour.rb', line 31

def handle_multiple_declaration_with_comma(pString)
  raise NotImplementedError
end