class RASEL::StackItem

Attributes

annotation[R]

Public Class Methods

new(n, annotation) click to toggle source
Calls superclass method
# File lib/rasel.rb, line 99
def initialize n, annotation
  super n
  @annotation = annotation || (n.annotation if n.respond_to? :annotation)
end