eturk/marvin

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Marvin
  module AST

    # A program is the source file with a list of statements.
    class Program < Base
      value :contents, [Base]
    end
  end
end