summaryrefslogtreecommitdiff
path: root/lib/coderay/scanners/raydebug.rb
diff options
context:
space:
mode:
authorKornelius Kalnbach <murphy@rubychan.de>2013-07-20 18:12:04 +0200
committerKornelius Kalnbach <murphy@rubychan.de>2013-07-20 18:12:04 +0200
commit5c23a731ca55729fc65630eca3b37a5b1a71e5b1 (patch)
tree97045ac6fa9544a1e0f168b9a02c7b53b0c4e452 /lib/coderay/scanners/raydebug.rb
parent59ca07b0d1a1710ab729636ea00de4b638f56110 (diff)
downloadcoderay-5c23a731ca55729fc65630eca3b37a5b1a71e5b1.tar.gz
mark possibly problematic spots with FIXME
Diffstat (limited to 'lib/coderay/scanners/raydebug.rb')
-rw-r--r--lib/coderay/scanners/raydebug.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/coderay/scanners/raydebug.rb b/lib/coderay/scanners/raydebug.rb
index d39d962..ca35de0 100644
--- a/lib/coderay/scanners/raydebug.rb
+++ b/lib/coderay/scanners/raydebug.rb
@@ -26,6 +26,7 @@ module Scanners
encoder.text_token kind, :class
encoder.text_token '(', :operator
match = self[2]
+ # FIXME: cache attack
encoder.text_token match, kind.to_sym unless match.empty?
encoder.text_token match, :operator if match = scan(/\)/)
@@ -39,6 +40,7 @@ module Scanners
else
raise 'CodeRay bug: This case should not be reached.'
end
+ # FIXME: cache attack
kind = kind.to_sym
opened_tokens << kind
encoder.begin_group kind