summaryrefslogtreecommitdiff
path: root/lib/irb.rb
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2019-04-28 03:41:06 +0900
committeraycabta <aycabta@gmail.com>2019-04-30 14:40:06 +0900
commit94b740b2499242e1aca67f7bbf595e75e63abc40 (patch)
treea25a0b1aa3928968f8c0716fed98c4005f6fcb18 /lib/irb.rb
parent567cb1ae1d25b837bed6e91af1418c6a4f25cc90 (diff)
Use Ripper for IRB
The debug option of IRB is deleted because it's just for IRB's pure Ruby parser.
Diffstat (limited to 'lib/irb.rb')
-rw-r--r--lib/irb.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/irb.rb b/lib/irb.rb
index ba12bdbcab..d0246b077c 100644
--- a/lib/irb.rb
+++ b/lib/irb.rb
@@ -74,7 +74,6 @@ require "irb/version"
# --back-trace-limit n
# Display backtrace top n and tail n. The default
# value is 16.
-# --irb_debug n Set internal debug level to n (not for popular use)
# -v, --version Print the version of irb
#
# == Configuration
@@ -102,7 +101,6 @@ require "irb/version"
# IRB.conf[:IGNORE_EOF] = false
# IRB.conf[:PROMPT_MODE] = :DEFAULT
# IRB.conf[:PROMPT] = {...}
-# IRB.conf[:DEBUG_LEVEL]=0
#
# === Auto indentation
#
@@ -413,7 +411,6 @@ module IRB
@signal_status = :IN_IRB
@scanner = RubyLex.new
- @scanner.exception_on_syntax_error = false
end
def run(conf = IRB.conf)