Class: Mailmate::AST::VarRefNode Private
- Inherits:
-
Struct
- Object
- Struct
- Mailmate::AST::VarRefNode
- Defined in:
- lib/mailmate/ast.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Stage C placeholder: $SENT.from.address style references.
Instance Attribute Summary collapse
-
#path ⇒ Object
Returns the value of attribute path.
-
#var ⇒ Object
Returns the value of attribute var.
Instance Method Summary collapse
- #inspect ⇒ Object private
Instance Attribute Details
#path ⇒ Object
Returns the value of attribute path
31 32 33 |
# File 'lib/mailmate/ast.rb', line 31 def path @path end |
#var ⇒ Object
Returns the value of attribute var
31 32 33 |
# File 'lib/mailmate/ast.rb', line 31 def var @var end |
Instance Method Details
#inspect ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
31 |
# File 'lib/mailmate/ast.rb', line 31 def inspect; "Var($#{var}.#{path.join(".")})"; end |