1. Prism::
  2. SourceEncodingNode

class Prism::SourceEncodingNode

Represents the use of the__ENCODING__ keyword.

__ENCODING__^^^^^^^^^^^^

Public Class Methods

Source
# File lib/prism/node.rb, line 16676definitialize(source,node_id,location,flags)@source =source@node_id =node_id@location =location@flags =flagsend

Initialize a newSourceEncodingNode node.

Source
# File lib/prism/node.rb, line 16727defself.type:source_encoding_nodeend

Return a symbol representation of this node type. SeeNode::type.

Public Instance Methods

Source
# File lib/prism/node.rb, line 16733def===(other)other.is_a?(SourceEncodingNode)end

Implements case-equality for the node. This is effectively == but without comparing the value of locations. Locations are checked only for presence.

Source
# File lib/prism/node.rb, line 16684defaccept(visitor)visitor.visit_source_encoding_node(self)end

def accept: (Visitor visitor) -> void

Source
# File lib/prism/node.rb, line 16689defchild_nodes  []end

defchild_nodes: () ->Array

Also aliased as:deconstruct
Source
# File lib/prism/node.rb, line 16699defcomment_targets  []#: Array[Prism::node | Location]end

defcomment_targets: () -> Array[Node | Location]

Source
# File lib/prism/node.rb, line 16694defcompact_child_nodes  []end

defcompact_child_nodes: () ->Array

Source
# File lib/prism/node.rb, line 16704defcopy(node_id:self.node_id,location:self.location,flags:self.flags)SourceEncodingNode.new(source,node_id,location,flags)end

def copy: (?node_id:Integer, ?location:Location, ?flags:Integer) ->SourceEncodingNode

def deconstruct: () ->Array

Alias for:child_nodes
Source
# File lib/prism/node.rb, line 16712defdeconstruct_keys(keys)  {node_id:node_id,location:location }end

defdeconstruct_keys: (Array keys) -> { node_id:Integer, location:Location }

Source
# File lib/prism/node.rb, line 16717definspectInspectVisitor.compose(self)end

def inspect ->String

Source
# File lib/prism/node.rb, line 16722deftype:source_encoding_nodeend

Return a symbol representation of this node type. SeeNode#type.