Sha256: 971137b47dab2816bea6e67b6b14fd2b193d8292ce6d1b28d4c3964886d8cfde
Contents?: true
Size: 445 Bytes
Versions: 63
Compression:
Stored size: 445 Bytes
Contents
module Expressir module Model module Statements class Case < ModelElement attr_accessor :expression attr_accessor :actions attr_accessor :otherwise_statement def initialize(options = {}) @expression = options[:expression] @actions = options.fetch(:actions, []) @otherwise_statement = options[:otherwise_statement] super end end end end end
Version data entries
63 entries across 63 versions & 1 rubygems