Sha256: 7b389e1b6a2fc9f9d4af0d3e8bc0a94aad63397a3acbe5dffa06f27052fc0ed0
Contents?: true
Size: 676 Bytes
Versions: 37
Compression:
Stored size: 676 Bytes
Contents
module OrigenTesters module Decompiler class Pattern require_relative './base' class CommentBlock < Base def initialize(parent) super(node: parent, context: parent.context) end def comments processor.comments end def to_yaml_hash(options = {}) { class: self.class.to_s, index: (node.respond_to?(:index) ? node.index : nil), type: node.type, processor: node.class.to_s, comments: comments, platform_nodes: _platform_nodes_ } end end end end end
Version data entries
37 entries across 37 versions & 1 rubygems