class Pione::Lang::TicketExpr

TicketExpr is a ticket expression as alternative input or output conditions of rules for serial processing.

@example Serial process of rule A and B by tickets in PIONE flow rule

Rule Main
  input '*.in'
  output '*.out'
Flow
  rule A ==> <T>
  <T> ==> rule B
End

Public Instance Methods

textize() click to toggle source

Convert to text string.

# File lib/pione/lang/ticket-expr.rb, line 19
def textize
  "<%s>" % name
end