Class: FFI::Clang::Lib::TokensPointer

Inherits:
Pointer
  • Object
show all
Defined in:
lib/ffi/clang/lib/token.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ptr, token_size, translation_unit) ⇒ TokensPointer

Returns a new instance of TokensPointer.



34
35
36
37
38
# File 'lib/ffi/clang/lib/token.rb', line 34

def initialize(ptr, token_size, translation_unit)
	super ptr
	@token_size = token_size
	@translation_unit = translation_unit
end

Instance Attribute Details

#token_sizeObject (readonly)

Returns the value of attribute token_size.



32
33
34
# File 'lib/ffi/clang/lib/token.rb', line 32

def token_size
  @token_size
end

#translation_unitObject (readonly)

Returns the value of attribute translation_unit.



33
34
35
# File 'lib/ffi/clang/lib/token.rb', line 33

def translation_unit
  @translation_unit
end