module Safrano::Attribute::Transitions

methods related to transitions to next state (cf. walker)

Constants

ALLOWED_TRANSITIONS

Public Instance Methods

allowed_transitions() click to toggle source
# File lib/odata/attribute.rb, line 66
def allowed_transitions
  Transitions::ALLOWED_TRANSITIONS
end
transition_end(_match_result) click to toggle source
# File lib/odata/attribute.rb, line 55
def transition_end(_match_result)
  Transition::RESULT_END
end
transition_value(_match_result) click to toggle source
# File lib/odata/attribute.rb, line 59
def transition_value(_match_result)
  [self, :end_with_value]
end