repo.or.cz
/
supercollider.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
class library: Reset has been renamed to OnError
[supercollider.git]
/
SCClassLibrary
/
JITLib
/
Patterns
/
extFunction.sc
blob
4af75ac4cbc3b66b61b73560fd4c38fb8b851c05
1
+Object {
2
valueFuncProxy {
3
^this
4
}
5
6
reduceFuncProxy {
7
^this
8
}
9
10
postString {
11
^this.asString
12
}
13
}
14
15
+AbstractFunction {
16
reduceFuncProxy { arg args;
17
^this.valueArray(args).valueFuncProxy(args)
18
}
19
20
}
21
22
+Function {
23
postString {
24
^this.asCompileString
25
}
26
}
27
+UnaryOpFunctionProxy {
28
postString {
29
^a.postString ++ "." ++ selector
30
}
31
}
32
+BinaryOpFunctionProxy {
33
postString {
34
^a.postString + selector.asBinOpString + b.postString
35
}
36
}