class IDL::Scanner::Identifier

string derivative for IDL parsed identifiers able to carry both ‘raw’ IDL name as well as language mapped name

Attributes

checked_name[R]
unescaped_name[R]

Public Class Methods

new(idl_id, checked_id, unescaped_idl_id = nil) click to toggle source
Calls superclass method
# File lib/ridl/scanner.rb, line 217
def initialize(idl_id, checked_id, unescaped_idl_id = nil)
  super(idl_id)
  @checked_name = checked_id
  @unescaped_name = unescaped_idl_id || idl_id
end