class Omnium::Parser::AST::Block

A block represents declarations and compound statements

Attributes

compound_statement[R]
variable_declarations[R]

Public Class Methods

new(variable_declarations, compound_statement) click to toggle source
# File lib/omnium/parser/ast/block.rb, line 10
def initialize(variable_declarations, compound_statement)
  @variable_declarations = variable_declarations
  @compound_statement = compound_statement
end