Class representing a action going to a destination in the current document.
Creates a new GoTo Action.
[Source]
# File sources/parser/actions.rb, line 55 55: def initialize(hash = {}) 56: 57: if hash.is_a? Destination 58: super(:S => :GoTo, :D => hash) 59: else 60: super(hash) 61: end 62: 63: end
[Validate]