class library: Reset has been renamed to OnError
[supercollider.git] / SCClassLibrary / JITLib / Patterns / extFunction.sc
blob4af75ac4cbc3b66b61b73560fd4c38fb8b851c05
1 +Object {
2         valueFuncProxy {
3                 ^this
4         }
6         reduceFuncProxy {
7                 ^this
8         }
10         postString {
11                 ^this.asString
12         }
15 +AbstractFunction {
16         reduceFuncProxy { arg args;
17                 ^this.valueArray(args).valueFuncProxy(args)
18         }
22 +Function {
23         postString {
24                 ^this.asCompileString
25         }
27 +UnaryOpFunctionProxy {
28         postString {
29                 ^a.postString ++ "." ++ selector
30         }
32 +BinaryOpFunctionProxy {
33         postString {
34                 ^a.postString + selector.asBinOpString + b.postString
35         }