Revert "Don't echo results of assignment expressions"
This reverts commit 1ee88c51b3c319b74b69540e111e4a1c24833cad.
This commit is contained in:
parent
1ee88c51b3
commit
43b52ac0a5
44
lib/irb.rb
44
lib/irb.rb
@ -10,7 +10,6 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
require "e2mmap"
|
require "e2mmap"
|
||||||
require "ripper"
|
|
||||||
|
|
||||||
require "irb/init"
|
require "irb/init"
|
||||||
require "irb/context"
|
require "irb/context"
|
||||||
@ -411,35 +410,6 @@ module IRB
|
|||||||
end
|
end
|
||||||
|
|
||||||
class Irb
|
class Irb
|
||||||
ASSIGNMENT_NODE_TYPES = [
|
|
||||||
# Local, instance, global, class, constant, instance, and index assignment:
|
|
||||||
# "foo = bar",
|
|
||||||
# "@foo = bar",
|
|
||||||
# "$foo = bar",
|
|
||||||
# "@@foo = bar",
|
|
||||||
# "::Foo = bar",
|
|
||||||
# "a::Foo = bar",
|
|
||||||
# "Foo = bar"
|
|
||||||
# "foo.bar = 1"
|
|
||||||
# "foo[1] = bar"
|
|
||||||
:assign,
|
|
||||||
|
|
||||||
# Operation assignment:
|
|
||||||
# "foo += bar"
|
|
||||||
# "foo -= bar"
|
|
||||||
# "foo ||= bar"
|
|
||||||
# "foo &&= bar"
|
|
||||||
:opassign,
|
|
||||||
|
|
||||||
# Multiple assignment:
|
|
||||||
# "foo, bar = 1, 2
|
|
||||||
:massign,
|
|
||||||
]
|
|
||||||
# Note: instance and index assignment expressions could also be written like:
|
|
||||||
# "foo.bar=(1)" and "foo.[]=(1, bar)", when expressed that way, the former
|
|
||||||
# be parsed as :assign and echo will be suppressed, but the latter is
|
|
||||||
# parsed as a :method_add_arg and the output won't be suppressed
|
|
||||||
|
|
||||||
# Creates a new irb session
|
# Creates a new irb session
|
||||||
def initialize(workspace = nil, input_method = nil, output_method = nil)
|
def initialize(workspace = nil, input_method = nil, output_method = nil)
|
||||||
@context = Context.new(self, workspace, input_method, output_method)
|
@context = Context.new(self, workspace, input_method, output_method)
|
||||||
@ -528,7 +498,7 @@ module IRB
|
|||||||
begin
|
begin
|
||||||
line.untaint
|
line.untaint
|
||||||
@context.evaluate(line, line_no, exception: exc)
|
@context.evaluate(line, line_no, exception: exc)
|
||||||
output_value if @context.echo? && (@context.echo_on_assignment? || !assignment_expression?(line))
|
output_value if @context.echo?
|
||||||
rescue Interrupt => exc
|
rescue Interrupt => exc
|
||||||
rescue SystemExit, SignalException
|
rescue SystemExit, SignalException
|
||||||
raise
|
raise
|
||||||
@ -747,18 +717,6 @@ module IRB
|
|||||||
format("#<%s: %s>", self.class, ary.join(", "))
|
format("#<%s: %s>", self.class, ary.join(", "))
|
||||||
end
|
end
|
||||||
|
|
||||||
def assignment_expression?(line)
|
|
||||||
# Try to parse the line and check if the last of possibly multiple
|
|
||||||
# expressions is an assignment type.
|
|
||||||
|
|
||||||
# If the expression is invalid, Ripper.sexp should return nil which will
|
|
||||||
# result in false being returned. Any valid expression should return an
|
|
||||||
# s-expression where the second selement of the top level array is an
|
|
||||||
# array of parsed expressions. The first element of each expression is the
|
|
||||||
# expression's type.
|
|
||||||
ASSIGNMENT_NODE_TYPES.include?(Ripper.sexp(line)&.dig(1,-1,0))
|
|
||||||
end
|
|
||||||
|
|
||||||
ATTR_TTY = "\e[%sm"
|
ATTR_TTY = "\e[%sm"
|
||||||
def ATTR_TTY.[](*a) self % a.join(";"); end
|
def ATTR_TTY.[](*a) self % a.join(";"); end
|
||||||
ATTR_PLAIN = ""
|
ATTR_PLAIN = ""
|
||||||
|
@ -121,11 +121,6 @@ module IRB
|
|||||||
if @echo.nil?
|
if @echo.nil?
|
||||||
@echo = true
|
@echo = true
|
||||||
end
|
end
|
||||||
|
|
||||||
@echo_on_assignment = IRB.conf[:ECHO_ON_ASSIGNMENT]
|
|
||||||
if @echo_on_assignment.nil?
|
|
||||||
@echo_on_assignment = false
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# The top-level workspace, see WorkSpace#main
|
# The top-level workspace, see WorkSpace#main
|
||||||
@ -241,15 +236,6 @@ module IRB
|
|||||||
# puts "omg"
|
# puts "omg"
|
||||||
# # omg
|
# # omg
|
||||||
attr_accessor :echo
|
attr_accessor :echo
|
||||||
# Whether to echo for assignment expressions
|
|
||||||
#
|
|
||||||
# Uses IRB.conf[:ECHO_ON_ASSIGNMENT] if available, or defaults to +false+.
|
|
||||||
#
|
|
||||||
# a = "omg"
|
|
||||||
# IRB.CurrentContext.echo_on_assignment = true
|
|
||||||
# a = "omg"
|
|
||||||
# #=> omg
|
|
||||||
attr_accessor :echo_on_assignment
|
|
||||||
# Whether verbose messages are displayed or not.
|
# Whether verbose messages are displayed or not.
|
||||||
#
|
#
|
||||||
# A copy of the default <code>IRB.conf[:VERBOSE]</code>
|
# A copy of the default <code>IRB.conf[:VERBOSE]</code>
|
||||||
@ -275,7 +261,6 @@ module IRB
|
|||||||
alias ignore_sigint? ignore_sigint
|
alias ignore_sigint? ignore_sigint
|
||||||
alias ignore_eof? ignore_eof
|
alias ignore_eof? ignore_eof
|
||||||
alias echo? echo
|
alias echo? echo
|
||||||
alias echo_on_assignment? echo_on_assignment
|
|
||||||
|
|
||||||
# Returns whether messages are displayed or not.
|
# Returns whether messages are displayed or not.
|
||||||
def verbose?
|
def verbose?
|
||||||
|
@ -51,7 +51,6 @@ module IRB # :nodoc:
|
|||||||
@CONF[:IGNORE_SIGINT] = true
|
@CONF[:IGNORE_SIGINT] = true
|
||||||
@CONF[:IGNORE_EOF] = false
|
@CONF[:IGNORE_EOF] = false
|
||||||
@CONF[:ECHO] = nil
|
@CONF[:ECHO] = nil
|
||||||
@CONF[:ECHO_ON_ASSIGNMENT] = nil
|
|
||||||
@CONF[:VERBOSE] = nil
|
@CONF[:VERBOSE] = nil
|
||||||
|
|
||||||
@CONF[:EVAL_HISTORY] = nil
|
@CONF[:EVAL_HISTORY] = nil
|
||||||
@ -173,10 +172,6 @@ module IRB # :nodoc:
|
|||||||
@CONF[:ECHO] = true
|
@CONF[:ECHO] = true
|
||||||
when "--noecho"
|
when "--noecho"
|
||||||
@CONF[:ECHO] = false
|
@CONF[:ECHO] = false
|
||||||
when "--echo-on-assignment"
|
|
||||||
@CONF[:ECHO_ON_ASSIGNMENT] = true
|
|
||||||
when "--noecho-on-assignment"
|
|
||||||
@CONF[:ECHO_ON_ASSIGNMENT] = false
|
|
||||||
when "--verbose"
|
when "--verbose"
|
||||||
@CONF[:VERBOSE] = true
|
@CONF[:VERBOSE] = true
|
||||||
when "--noverbose"
|
when "--noverbose"
|
||||||
|
@ -26,10 +26,6 @@ module TestIRB
|
|||||||
def encoding
|
def encoding
|
||||||
Encoding.default_external
|
Encoding.default_external
|
||||||
end
|
end
|
||||||
|
|
||||||
def reset
|
|
||||||
@line_no = 0
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
@ -88,126 +84,5 @@ module TestIRB
|
|||||||
def test_default_config
|
def test_default_config
|
||||||
assert_equal(true, @context.use_colorize?)
|
assert_equal(true, @context.use_colorize?)
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_assignment_expression
|
|
||||||
input = TestInputMethod.new
|
|
||||||
irb = IRB::Irb.new(IRB::WorkSpace.new(Object.new), input)
|
|
||||||
[
|
|
||||||
"foo = bar",
|
|
||||||
"@foo = bar",
|
|
||||||
"$foo = bar",
|
|
||||||
"@@foo = bar",
|
|
||||||
"::Foo = bar",
|
|
||||||
"a::Foo = bar",
|
|
||||||
"Foo = bar",
|
|
||||||
"foo.bar = 1",
|
|
||||||
"foo[1] = bar",
|
|
||||||
"foo += bar",
|
|
||||||
"foo -= bar",
|
|
||||||
"foo ||= bar",
|
|
||||||
"foo &&= bar",
|
|
||||||
"foo, bar = 1, 2",
|
|
||||||
"foo.bar=(1)",
|
|
||||||
"foo; foo = bar",
|
|
||||||
"foo; foo = bar; ;\n ;",
|
|
||||||
"foo\nfoo = bar",
|
|
||||||
].each do |exp|
|
|
||||||
assert(
|
|
||||||
irb.assignment_expression?(exp),
|
|
||||||
"#{exp.inspect}: should be an assignment expression"
|
|
||||||
)
|
|
||||||
end
|
|
||||||
|
|
||||||
[
|
|
||||||
"foo",
|
|
||||||
"foo.bar",
|
|
||||||
"foo[0]",
|
|
||||||
"foo = bar; foo",
|
|
||||||
"foo = bar\nfoo",
|
|
||||||
].each do |exp|
|
|
||||||
refute(
|
|
||||||
irb.assignment_expression?(exp),
|
|
||||||
"#{exp.inspect}: should not be an assignment expression"
|
|
||||||
)
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_echo_on_assignment
|
|
||||||
input = TestInputMethod.new([
|
|
||||||
"a = 1\n",
|
|
||||||
"a\n",
|
|
||||||
"a, b = 2, 3\n",
|
|
||||||
"a\n",
|
|
||||||
"b\n",
|
|
||||||
"b = 4\n",
|
|
||||||
"_\n"
|
|
||||||
])
|
|
||||||
irb = IRB::Irb.new(IRB::WorkSpace.new(Object.new), input)
|
|
||||||
|
|
||||||
# The default
|
|
||||||
irb.context.echo = true
|
|
||||||
irb.context.echo_on_assignment = false
|
|
||||||
out, err = capture_io do
|
|
||||||
irb.eval_input
|
|
||||||
end
|
|
||||||
assert_empty err
|
|
||||||
assert_equal("=> 1\n=> 2\n=> 3\n=> 4\n", out)
|
|
||||||
|
|
||||||
# Everything is output, like before echo_on_assignment was introduced
|
|
||||||
input.reset
|
|
||||||
irb.context.echo = true
|
|
||||||
irb.context.echo_on_assignment = true
|
|
||||||
out, err = capture_io do
|
|
||||||
irb.eval_input
|
|
||||||
end
|
|
||||||
assert_empty err
|
|
||||||
assert_equal("=> 1\n=> 1\n=> [2, 3]\n=> 2\n=> 3\n=> 4\n=> 4\n", out)
|
|
||||||
|
|
||||||
# Nothing is output when echo is false
|
|
||||||
input.reset
|
|
||||||
irb.context.echo = false
|
|
||||||
irb.context.echo_on_assignment = false
|
|
||||||
out, err = capture_io do
|
|
||||||
irb.eval_input
|
|
||||||
end
|
|
||||||
assert_empty err
|
|
||||||
assert_equal("", out)
|
|
||||||
|
|
||||||
# Nothing is output when echo is false even if echo_on_assignment is true
|
|
||||||
input.reset
|
|
||||||
irb.context.echo = false
|
|
||||||
irb.context.echo_on_assignment = true
|
|
||||||
out, err = capture_io do
|
|
||||||
irb.eval_input
|
|
||||||
end
|
|
||||||
assert_empty err
|
|
||||||
assert_equal("", out)
|
|
||||||
end
|
|
||||||
|
|
||||||
def test_echo_on_assignment_conf
|
|
||||||
# Default
|
|
||||||
IRB.conf[:ECHO] = nil
|
|
||||||
IRB.conf[:ECHO_ON_ASSIGNMENT] = nil
|
|
||||||
input = TestInputMethod.new()
|
|
||||||
irb = IRB::Irb.new(IRB::WorkSpace.new(Object.new), input)
|
|
||||||
|
|
||||||
assert(irb.context.echo?, "echo? should be true by default")
|
|
||||||
refute(irb.context.echo_on_assignment?, "echo_on_assignment? should be false by default")
|
|
||||||
|
|
||||||
# Explicitly set :ECHO to false
|
|
||||||
IRB.conf[:ECHO] = false
|
|
||||||
irb = IRB::Irb.new(IRB::WorkSpace.new(Object.new), input)
|
|
||||||
|
|
||||||
refute(irb.context.echo?, "echo? should be false when IRB.conf[:ECHO] is set to false")
|
|
||||||
refute(irb.context.echo_on_assignment?, "echo_on_assignment? should be false by default")
|
|
||||||
|
|
||||||
# Explicitly set :ECHO_ON_ASSIGNMENT to true
|
|
||||||
IRB.conf[:ECHO] = nil
|
|
||||||
IRB.conf[:ECHO_ON_ASSIGNMENT] = true
|
|
||||||
irb = IRB::Irb.new(IRB::WorkSpace.new(Object.new), input)
|
|
||||||
|
|
||||||
assert(irb.context.echo?, "echo? should be true by default")
|
|
||||||
assert(irb.context.echo_on_assignment?, "echo_on_assignment? should be true when IRB.conf[:ECHO_ON_ASSIGNMENT] is set to true")
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -7,7 +7,6 @@ module TestIRB
|
|||||||
bundle_exec = ENV.key?('BUNDLE_GEMFILE') ? ['-rbundler/setup'] : []
|
bundle_exec = ENV.key?('BUNDLE_GEMFILE') ? ['-rbundler/setup'] : []
|
||||||
assert_in_out_err(bundle_exec + %w[-rirb -W0 -e IRB.start(__FILE__) -- -f --], <<-IRB, /Exception: foo/, [])
|
assert_in_out_err(bundle_exec + %w[-rirb -W0 -e IRB.start(__FILE__) -- -f --], <<-IRB, /Exception: foo/, [])
|
||||||
e = Exception.new("foo")
|
e = Exception.new("foo")
|
||||||
puts e.inspect
|
|
||||||
def e.backtrace; nil; end
|
def e.backtrace; nil; end
|
||||||
raise e
|
raise e
|
||||||
IRB
|
IRB
|
||||||
|
Loading…
x
Reference in New Issue
Block a user