Class: FixtureFox::AstMember
Overview
A member of a record
Direct Known Subclasses
AstFieldMember, AstRecordMember, AstReferenceMember, AstTableMember
Instance Attribute Summary collapse
-
#column ⇒ Object
Initialized by the analyzer.
-
#ident ⇒ Object
readonly
Ident token.
Attributes inherited from AstNode
Instance Method Summary collapse
-
#initialize(record, ident) ⇒ AstMember
constructor
A new instance of AstMember.
Methods inherited from AstNode
Constructor Details
#initialize(record, ident) ⇒ AstMember
Returns a new instance of AstMember.
115 116 117 118 |
# File 'lib/fixture_fox/ast.rb', line 115 def initialize(record, ident) super(record) @ident = ident end |
Instance Attribute Details
#column ⇒ Object
Initialized by the analyzer
113 114 115 |
# File 'lib/fixture_fox/ast.rb', line 113 def column @column end |
#ident ⇒ Object (readonly)
Ident token
112 113 114 |
# File 'lib/fixture_fox/ast.rb', line 112 def ident @ident end |