Actions
Bug #9726
closedIncorrect Proc parsing
Bug #9726:
Incorrect Proc parsing
Description
There seems to be issue in parsing with white space:
The code below works:
proc_issue (Proc.new { |n|
"Do something"
})
That code causing parsing error (removing white space makes it working proc_issue
(Proc
..)
proc_issue (Proc.new do |n|
"Do something"
end)
Actions