repo.or.cz
/
rbx.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Temporary tag for this failure. Updated CI spec coming.
[rbx.git]
/
kernel
/
core
/
channel.rb
blob
198c3f6282dd74e046ca8cf23fff85c3a91545dd
1
# depends on: class.rb
2
3
class Channel
4
alias_method :<<, :send
5
6
def inspect
7
"#<Channel:0x%x @waiting=%p @value=%p>" % [object_id, waiting, value]
8
end
9
end