eturk/marvin

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Marvin
  module AST

    # For addition of expressions.
    class Addition < Arithmetic
    end
  end
end