Class: StateMachine::OOStructuredFSM::MethodState
- Inherits:
-
FunctionBehaviourState
- Object
- OOStructuredState
- FunctionBehaviourState
- StateMachine::OOStructuredFSM::MethodState
- Defined in:
- lib/kuniri/state_machine/OO_structured_fsm/method_state.rb
Overview
Class responsible for handling Method state.
Instance Method Summary collapse
-
#initialize(pLanguage) ⇒ MethodState
constructor
A new instance of MethodState.
Methods inherited from FunctionBehaviourState
#aggregation_capture, #class_capture, #conditional_capture, #execute, #handle_line, #repetition_capture
Methods inherited from OOStructuredState
#aggregation_capture, #attribute_capture, #class_capture, #comment_capture, #conditional_capture, #constructor_capture, #execute, #function_capture, #handle_line, #idle_capture, #include_capture, #method_capture, #module_capture, #repetition_capture, #variable_capture
Constructor Details
#initialize(pLanguage) ⇒ MethodState
Returns a new instance of MethodState.
12 13 14 15 16 17 18 |
# File 'lib/kuniri/state_machine/OO_structured_fsm/method_state.rb', line 12 def initialize(pLanguage) super( pLanguage, flagState: StateMachine::METHOD_STATE, functionId: StateMachine::METHOD_LABEL ) end |