eturk/marvin

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Marvin
  module AST

    # A parent class for statement nodes.
    class Statement < Base
    end
  end
end