We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2fc159 commit 1ffea04Copy full SHA for 1ffea04
3 files changed
lib/code/object/context.rb
@@ -18,7 +18,6 @@ def code_lookup!(identifier)
18
elsif parent?
19
parent.code_lookup!(code_identifier)
20
else
21
- binding.irb
22
raise Error, "#{code_identifier} is not defined"
23
end
24
lib/code/parser/name.rb
@@ -172,7 +172,7 @@ def keyword
172
173
def root
174
(
175
- special_name |
+ (special_name << separator.ignore) |
176
177
(keyword << separator).absent << special_characters.absent <<
178
character.repeat(1)
spec/code_spec.rb
@@ -13,6 +13,8 @@
13
"Object.new !== Object.new"
14
] +
15
%w[
16
+ 1..3
17
+ 1...3
:abc.size
Date.new.change
{}.zero?
0 commit comments