Sha256: abd11392b2f9bfefe73190bfc97c61c727e5e4e9d35d8bc0b01db1842c9c6875
Contents?: true
Size: 666 Bytes
Versions: 21
Compression:
Stored size: 666 Bytes
Contents
module Expressir module Model module Statements class Alias < ModelElement include Identifier model_attr_accessor :expression model_attr_accessor :statements def initialize(options = {}) @id = options[:id] @remarks = options.fetch(:remarks, []) @remark_items = options.fetch(:remark_items, []) @source = options[:source] @expression = options[:expression] @statements = options.fetch(:statements, []) super end def children [ self, *remark_items ] end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems