[DOC] Stop document Ripper::Lexer

`:nodoc:` seems not working for inner classes.
This commit is contained in:
Nobuyoshi Nakada 2024-12-25 13:07:22 +09:00
parent 970513f677
commit 871124c3ea
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465

View File

@ -53,6 +53,7 @@ class Ripper
end
class Lexer < ::Ripper #:nodoc: internal use only
# :stopdoc:
class State
attr_reader :to_int, :to_s
@ -258,6 +259,7 @@ class Ripper
(SCANNER_EVENTS.map {|event|:"on_#{event}"} - private_instance_methods(false)).each do |event|
alias_method event, :_push_token
end
# :startdoc:
end
# [EXPERIMENTAL]