Class: PrettyPrint::Group

Inherits:
Object show all
Defined in:
lib/project/prettyprint.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(depth) ⇒ Group

Returns a new instance of Group.



285
286
287
288
289
# File 'lib/project/prettyprint.rb', line 285

def initialize(depth)
  @depth = depth
  @breakables = []
  @break = false
end

Instance Attribute Details

#breakablesObject (readonly)

Returns the value of attribute breakables.



290
291
292
# File 'lib/project/prettyprint.rb', line 290

def breakables
  @breakables
end

#depthObject (readonly)

Returns the value of attribute depth.



290
291
292
# File 'lib/project/prettyprint.rb', line 290

def depth
  @depth
end

Instance Method Details

#breakObject



292
293
294
# File 'lib/project/prettyprint.rb', line 292

def break
  @break = true
end

#break?Boolean

Returns:

  • (Boolean)


296
297
298
# File 'lib/project/prettyprint.rb', line 296

def break?
  @break
end

#first?Boolean

Returns:

  • (Boolean)


300
301
302
303
304
305
306
307
# File 'lib/project/prettyprint.rb', line 300

def first?
  if defined? @first
    false
  else
    @first = false
    true
  end
end