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
/
Platform
/
osx
/
ApplicationStart.sc
blob
d24dd13bd906a4e2d88b7e943d3e18bc75b843cc
1
ApplicationStart : StartUp {
2
classvar <>objects;
3
4
*run {
5
this.objects.do({ arg item; item.doOnApplicationStart; });
6
}
7
}
8
9
+ Function {
10
doOnApplicationStart {
11
this.try{|error|
12
"ApplicationStart: an error has occurred.".postln;
13
error.reportError;
14
"Thrown during function:".postln;
15
this.postcs;
16
}
17
}
18
}