HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/rubies/default/lib/ruby/gems/3.0.0/gems/rbs-1.0.4/sig/comment.rbs
module RBS
  module AST
    # RBS allows writing documentation of declarations and members.
    #
    #    # This is a doc for class.
    #    class Hello
    #    end
    #
    class Comment
      attr_reader string: String
      attr_reader location: Location?

      def initialize: (string: String, location: Location?) -> void

      def ==: (untyped other) -> bool

      alias eql? ==

      def hash: () -> Integer

      def to_json: (*untyped) -> String

      def concat: (string: String, location: Location?) -> self
    end
  end
end