Class: Languages::VariableGlobal Abstract
- Inherits:
-
Object
- Object
- Languages::VariableGlobal
- Defined in:
- lib/kuniri/language/abstract_container/structured_and_oo/variable_global.rb
Overview
This class is abstract.
Any global variable should be handler here.
Direct Known Subclasses
Instance Method Summary collapse
-
#detect_variable(pLine) ⇒ Object
protected
Verify if line has a variable.
-
#get_variable(pLine) ⇒ Object
This method is the main interface for extract data from specific code and convert it to a common representation.
Instance Method Details
#detect_variable(pLine) ⇒ Object (protected)
Verify if line has a variable.
24 25 26 |
# File 'lib/kuniri/language/abstract_container/structured_and_oo/variable_global.rb', line 24 def detect_variable(pLine) raise NotImplementedError end |
#get_variable(pLine) ⇒ Object
This method is the main interface for extract data from specific code and convert it to a common representation.
14 15 16 |
# File 'lib/kuniri/language/abstract_container/structured_and_oo/variable_global.rb', line 14 def get_variable(pLine) raise NotImplementedError end |