renamed Collection.st to Collect.st

This commit is contained in:
hyunghwan.chung
2016-05-18 14:53:20 +00:00
parent 38ccdbed9d
commit 04ccebe9b4
6 changed files with 43 additions and 8 deletions

View File

@ -246,8 +246,7 @@
}
#include 'Collection.st'.
## #include 'Collec~1.st'.
#include 'Collect.st'.
#class(#pointer) CompiledMethod(Object)
{

View File

@ -58,13 +58,13 @@
s2 := Semaphore new.
t1 := [
10000 timesRepeat: ['BLOCK #1' dump].
100 timesRepeat: ['BLOCK #1' dump].
##s2 critical: [
## 10 timesRepeat: ['BLOCK #1' dump ]
##]
] newProcess.
t2 := [
10000 timesRepeat: ['BLOCK #2' dump].
100 timesRepeat: ['BLOCK #2' dump].
##s2 critical: [
## 10 timesRepeat: ['BLOCK #2' dump. ]
##].