Class: IDL::Scanner::Identifier
- Inherits:
-
String
- Object
- String
- IDL::Scanner::Identifier
- Defined in:
- lib/ridl/scanner.rb
Overview
string derivative for IDL parsed identifiers able to carry both ‘raw’ IDL name as well as language mapped name
Instance Attribute Summary collapse
-
#checked_name ⇒ Object
readonly
Returns the value of attribute checked_name.
Instance Method Summary collapse
-
#initialize(idl_id, checked_id) ⇒ Identifier
constructor
A new instance of Identifier.
Constructor Details
#initialize(idl_id, checked_id) ⇒ Identifier
Returns a new instance of Identifier.
216 217 218 219 |
# File 'lib/ridl/scanner.rb', line 216 def initialize(idl_id, checked_id) super(idl_id) @checked_name = checked_id end |
Instance Attribute Details
#checked_name ⇒ Object (readonly)
Returns the value of attribute checked_name.
215 216 217 |
# File 'lib/ridl/scanner.rb', line 215 def checked_name @checked_name end |