diff options
author | murphy <murphy@rubychan.de> | 2006-03-21 14:46:34 +0000 |
---|---|---|
committer | murphy <murphy@rubychan.de> | 2006-03-21 14:46:34 +0000 |
commit | a3b4ad06b992bd418a1d34bfb271c09fd9bedf11 (patch) | |
tree | 722d341f4065b4614b2cfc55cee6ccd3c66fb69a /lib/coderay/scanner.rb | |
parent | 13255135d7539fd542cf831d6a98f1ba8a5d43ae (diff) | |
download | coderay-a3b4ad06b992bd418a1d34bfb271c09fd9bedf11.tar.gz |
CodeRay::Duo added for cool caching!
bench/caching.rb added t“for demonstrating this.
HTML Encoder: creates unwrapped output by default (still problems with that.)
Numerizing changed (doesn't try to prevent nesting errors)
Speedup: "::String" is faster.
Diffstat (limited to 'lib/coderay/scanner.rb')
-rw-r--r-- | lib/coderay/scanner.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/coderay/scanner.rb b/lib/coderay/scanner.rb index 33bcb09..5ff07a0 100644 --- a/lib/coderay/scanner.rb +++ b/lib/coderay/scanner.rb @@ -115,6 +115,16 @@ module CodeRay # More mnemonic accessor name for the input string.
alias code string
+ def reset
+ super
+ reset_tokens
+ end
+
+ def string= str
+ super
+ reset_tokens
+ end
+
# Scans the code and returns all tokens in a Tokens object.
def tokenize options = {}
options = @options.merge({}) #options
@@ -158,6 +168,11 @@ module CodeRay "#{self.class}#scan_tokens not implemented."
end
+ def reset_tokens
+ @tokens.clear
+ @cached_tokens = nil
+ end
+
# Scanner error with additional status information
def raise_inspect msg, tokens, ambit = 30
raise ScanError, <<-EOE % [
|