self-ml/selfml

View on GitHub
lib/selfml/ast/comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
module SelfML::AST

  # SelfML::AST::Comment
  #
  class Comment < String
    
    # @return [nil] Comments do not show up
    def serialize; nil; end
    alias :to_s :serialize

  end

end