class Estreet::Statement

Public Instance Methods

<<(statement) click to toggle source

Returns a block where the receiver is the first statment and ‘statement` is the second

# File lib/estreet/statement.rb, line 8
def <<(statement)
  BlockStatement.flatten(self, statement)
end
to_statement() click to toggle source
# File lib/estreet/statement.rb, line 3
def to_statement
  self
end