Class: OpenWFE::SyncExpression

Inherits:
ObjectWithMeta show all
Defined in:
lib/openwfe/expressions/fe_concurrence.rb

Overview

A base for sync expressions, currently empty. That may change.

Direct Known Subclasses

GenericSyncExpression

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ObjectWithMeta

#class_def, meta_def, meta_eval, metaclass

Constructor Details

#initializeSyncExpression

Returns a new instance of SyncExpression.



288
289
290
291
# File 'lib/openwfe/expressions/fe_concurrence.rb', line 288

def initialize

    super
end

Class Method Details

.names(*exp_names) ⇒ Object



293
294
295
296
297
298
299
300
301
# File 'lib/openwfe/expressions/fe_concurrence.rb', line 293

def self.names (*exp_names)

    exp_names = exp_names.collect do |n|
        n.to_s
    end
    meta_def :expression_names do
        exp_names
    end
end