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
cmake build system: visiblity support for clang
[supercollider.git]
/
SCClassLibrary
/
Common
/
Control
/
asTarget.sc
blob
3fa2f9d151247e247a007ea0c5be31c5879d71e4
1
+Server {
2
asTarget { ^Group.basicNew(this, 1) }
3
asNodeID { ^0 }
4
}
5
6
+Node {
7
asTarget { ^this }
8
asNodeID { ^nodeID }
9
}
10
11
+Nil {
12
asTarget { ^Server.default.asTarget }
13
asNodeID { ^this }
14
}
15
16
+Integer {
17
asTarget { ^Group.basicNew(Server.default, this) }
18
asNodeID { ^this }
19
}