Class: SyntaxTree::ArrayLiteral::VarRefsFormatter
- Inherits:
-
Object
- Object
- SyntaxTree::ArrayLiteral::VarRefsFormatter
- Defined in:
- lib/syntax_tree/node.rb
Instance Attribute Summary collapse
-
#contents ⇒ Object
readonly
- Args
-
the contents of the array.
Instance Method Summary collapse
- #format(q) ⇒ Object
-
#initialize(contents) ⇒ VarRefsFormatter
constructor
A new instance of VarRefsFormatter.
Constructor Details
#initialize(contents) ⇒ VarRefsFormatter
Returns a new instance of VarRefsFormatter.
968 969 970 |
# File 'lib/syntax_tree/node.rb', line 968 def initialize(contents) @contents = contents end |
Instance Attribute Details
#contents ⇒ Object (readonly)
- Args
-
the contents of the array
966 967 968 |
# File 'lib/syntax_tree/node.rb', line 966 def contents @contents end |
Instance Method Details
#format(q) ⇒ Object
972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 |
# File 'lib/syntax_tree/node.rb', line 972 def format(q) q.group(0, "[", "]") do q.indent do q.breakable("") separator = -> do q.text(",") q.fill_breakable end q.seplist(contents.parts, separator) { |part| q.format(part) } end q.breakable("") end end |