Merge pull request #6014 from dearblue/setup_debug.1

Fixed visibility of `MRuby::Command::Compiler#setup_debug`
This commit is contained in:
Yukihiro "Matz" Matsumoto
2023-05-29 09:26:32 +09:00
committed by GitHub
+6 -6
View File
@@ -129,6 +129,12 @@ module MRuby
end
end
# This method can be redefined as a singleton method where appropriate.
# Manipulate `flags`, `include_paths` and/or more if necessary.
def setup_debug(conf)
nil
end
private
#
@@ -172,12 +178,6 @@ module MRuby
def object_ext?(path)
File.extname(path) == build.exts.object
end
# This method can be redefined as a singleton method where appropriate.
# Manipulate `flags`, `include_paths` and/or more if necessary.
def setup_debug(conf)
nil
end
end
class Command::Linker < Command