Class: Furnace::AVM2::Tokens::NamespaceNameToken

Inherits:
Code::TerminalToken
  • Object
show all
Defined in:
lib/furnace-avm2/source/declaration_tokens/namespace_name_token.rb

Instance Method Summary collapse

Constructor Details

#initialize(origin, name, options = {}) ⇒ NamespaceNameToken

Returns a new instance of NamespaceNameToken.



3
4
5
6
# File 'lib/furnace-avm2/source/declaration_tokens/namespace_name_token.rb', line 3

def initialize(origin, name, options={})
  super(origin, options)
  @name = name
end

Instance Method Details

#to_textObject



8
9
10
11
12
13
14
# File 'lib/furnace-avm2/source/declaration_tokens/namespace_name_token.rb', line 8

def to_text
  if @name == "*"
    nil
  else
    @name
  end
end