Class: Maccro::DSL::SuperExp

Inherits:
Node
  • Object
show all
Defined in:
lib/maccro/dsl/expression.rb

Instance Attribute Summary

Attributes inherited from Node

#first_column, #first_lineno, #last_column, #last_lineno, #name

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#capture, #children, #initialize, #match?, #to_code_range

Methods included from ASTNodeWrapper

#capture, #children, #match?, #to_code_range

Constructor Details

This class inherits a constructor from Maccro::DSL::Node

Class Method Details

.match?(node) ⇒ Boolean

Returns:

  • (Boolean)


76
77
78
# File 'lib/maccro/dsl/expression.rb', line 76

def self.match?(node)
  node.type == :SUPER || node.type == :ZSUPER
end

Instance Method Details

#typeObject

super or super without arguments



75
# File 'lib/maccro/dsl/expression.rb', line 75

def type; :MACCRO_SUPER; end