eturk/marvin

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Marvin
  module AST

    # The base for +Statement+ and +Expression+.
    class Base < RLTK::ASTNode
    end
  end
end