mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
Don't show syntax warnings many times
This commit is contained in:
parent
e8fa7ae06c
commit
68f6519c48
1 changed files with 5 additions and 3 deletions
|
@ -591,9 +591,11 @@ class Pry
|
|||
elsif defined?(Rubinius::Melbourne)
|
||||
Rubinius::Melbourne.parse_string(str, Pry.eval_path)
|
||||
else
|
||||
catch(:valid) {
|
||||
eval("BEGIN{throw :valid}\n#{str}", binding, Pry.eval_path)
|
||||
}
|
||||
catch(:valid) do
|
||||
Helpers::BaseHelpers.silence_warnings do
|
||||
eval("BEGIN{throw :valid}\n#{str}", binding, Pry.eval_path)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# Assert that a line which ends with a , is incomplete.
|
||||
|
|
Loading…
Reference in a new issue