Made methods class level methods again

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@445 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 1e3b5b1f
......@@ -2,7 +2,7 @@
require 'simplecc'
rescue LoadError
class Continuation #:nodoc:
def create(*args, &block)
def self.create(*args, &block)
cc = nil; result = callcc {|c| cc = c; block.call(cc) if block and args.empty?}
result ||= args
return *[cc, *result]
......@@ -36,7 +36,7 @@ class Binding #:nodoc:
# If you don't do this an Exception will be raised. Because of
# the way that Binding.of_caller is implemented it has to be
# done this way.
def of_caller(&block)
def self.of_caller(&block)
old_critical = Thread.critical
Thread.critical = true
count = 0
......
......@@ -2,7 +2,7 @@
require 'simplecc'
rescue LoadError
class Continuation #:nodoc:
def create(*args, &block)
def self.create(*args, &block)
cc = nil; result = callcc {|c| cc = c; block.call(cc) if block and args.empty?}
result ||= args
return *[cc, *result]
......@@ -36,7 +36,7 @@ class Binding #:nodoc:
# If you don't do this an Exception will be raised. Because of
# the way that Binding.of_caller is implemented it has to be
# done this way.
def of_caller(&block)
def self.of_caller(&block)
old_critical = Thread.critical
Thread.critical = true
count = 0
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册