eturk/marvin

View on GitHub
lib/marvin/ast/block.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Marvin
  module AST

    # A block containing many +Statement+ or +Expression+.
    class Block < Statement
      child :body, [Base]
    end
  end
end