-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feature/instance-probes
- Loading branch information
Showing
97 changed files
with
323 additions
and
239 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
packages/Babylonian-Compiler.package/CSPartialMethod.extension/instance/^equals.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*Babylonian-Compiler | ||
= anotherPartialMethod | ||
"see #hash" | ||
|
||
^ anotherPartialMethod class == self class | ||
and: [self basicLayers = anotherPartialMethod basicLayers | ||
and: [self selector = anotherPartialMethod selector | ||
and: [self methodClass name = anotherPartialMethod methodClass name]]] |
5 changes: 5 additions & 0 deletions
5
packages/Babylonian-Compiler.package/CSPartialMethod.extension/instance/hash.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*Babylonian-Compiler | ||
hash | ||
"see #=" | ||
|
||
^ (self basicLayers hash bitXor: self selector hash) bitXor: self class name hash |
6 changes: 6 additions & 0 deletions
6
packages/Babylonian-Compiler.package/CSPartialMethod.extension/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"=" : "sp 8/23/2023 14:35", | ||
"hash" : "sp 8/23/2023 14:36" } } |
2 changes: 2 additions & 0 deletions
2
packages/Babylonian-Compiler.package/CSPartialMethod.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
"name" : "CSPartialMethod" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 3 additions & 4 deletions
7
packages/Babylonian-Core.package/BPAbstractExample.class/instance/startWatchdog..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
private | ||
startWatchdog: watchdogBlock | ||
|
||
| watchdog | | ||
watchdog := watchdogBlock newProcess. | ||
watchdog priority: Processor timingPriority-1. | ||
watchdog resume. | ||
watchdogBlock | ||
forkAt: Processor timingPriority-1 | ||
named: 'watchdog for ' , self exampleName. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
packages/Babylonian-Core.package/BPExample.class/instance/timeout.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
accessing | ||
timeout | ||
|
||
^ timeout ifNil: [timeout := 30000] | ||
^ timeout ifNil: [timeout := 5000] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
packages/Babylonian-Core.package/BPExamples.class/instance/update.with..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
change notifications | ||
update: anAspect with: anObject | ||
|
||
anAspect = #exampleIsActive ifTrue: [ | ||
^ self changed: #activeExamples]. | ||
|
||
anAspect = #newTrace ifTrue: [ | ||
^ self changed: #tracesChanged]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPReferencingExample.class/instance/addDependent..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dependents access | ||
addDependent: aDependent | ||
|
||
referencedExample addDependent: aDependent. |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPReferencingExample.class/instance/removeDependent..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dependents access | ||
removeDependent: aDependent | ||
|
||
referencedExample removeDependent: aDependent. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../instance/allBabylonianInternalClasses.st → ...ass/class/allBabylonianInternalClasses.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
packages/Babylonian-Core.package/BPTraceValue.class/class/ignoredClassesInStack.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
as yet unclassified | ||
ignoredClassesInStack | ||
|
||
^ IgnoredClassesInStack ifNil: [IgnoredClassesInStack := { Symbol. | ||
DynamicVariable class. | ||
ActiveEventVariable class. | ||
CSProcessContextInformation. | ||
CSMethodObject. | ||
CSLayeredMethod. | ||
CSPartialMethod. | ||
TestCase. | ||
TestResult. | ||
BPProbeLogTest. | ||
BPExample. | ||
BPAbstractExample. | ||
MorphicEventDispatcher. | ||
}, self allBabylonianInternalClasses] |
21 changes: 21 additions & 0 deletions
21
packages/Babylonian-Core.package/BPTraceValue.class/class/ignoredMessagesInStack.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
as yet unclassified | ||
ignoredMessagesInStack | ||
|
||
^ IgnoredMessagesInStack ifNil: [IgnoredMessagesInStack := {MethodReference class: BlockClosure selector: #newProcess. | ||
MethodReference class: BPExample selector: #traceInBackground. | ||
MethodReference class: BlockClosure selector: #on:do:. | ||
MethodReference class: BPExample selector: #traceAsyncNotifying:. | ||
MethodReference class: BlockClosure selector: #bpTraceInBackgroundForExample:. | ||
MethodReference class: BlockClosure selector: #bpTraceWith:. | ||
MethodReference class: Symbol selector: #withLayerDo:. | ||
MethodReference class: Array selector: #withLayersDo:. | ||
MethodReference class: CSProcessContextInformation selector: #withLayers:do:. | ||
MethodReference class: BlockClosure selector: #ensure:. | ||
MethodReference class: DynamicVariable class selector: #value:during:. | ||
MethodReference class: BPExample selector: #traceAsyncNotifying:. | ||
MethodReference class: BPExample selector: #execute. | ||
MethodReference class: BPExample selector: #executeSynchronously. | ||
MethodReference class: BPMethodExample selector: #runOn:. | ||
MethodReference class: CSMethodObject selector: #run:with:in:. | ||
MethodReference class: CSLayeredMethod selector: #valueWithReceiver:arguments:. | ||
MethodReference class: CSPartialMethod selector: #valueWithReceiver:arguments:.}] |
15 changes: 1 addition & 14 deletions
15
packages/Babylonian-Core.package/BPTraceValue.class/instance/ignoredClassesInStack.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,4 @@ | ||
private | ||
ignoredClassesInStack | ||
|
||
^ { Symbol. | ||
DynamicVariable class. | ||
ActiveEventVariable class. | ||
CSProcessContextInformation. | ||
CSMethodObject. | ||
CSLayeredMethod. | ||
CSPartialMethod. | ||
TestCase. | ||
TestResult. | ||
BPProbeLogTest. | ||
BPExample. | ||
BPAbstractExample. | ||
MorphicEventDispatcher. | ||
}, self allBabylonianInternalClasses | ||
^ self class ignoredClassesInStack |
19 changes: 1 addition & 18 deletions
19
packages/Babylonian-Core.package/BPTraceValue.class/instance/ignoredMessagesInStack.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,4 @@ | ||
private | ||
ignoredMessagesInStack | ||
|
||
^ {MethodReference class: BlockClosure selector: #newProcess. | ||
MethodReference class: BPExample selector: #traceInBackground. | ||
MethodReference class: BlockClosure selector: #on:do:. | ||
MethodReference class: BPExample selector: #traceAsyncNotifying:. | ||
MethodReference class: BlockClosure selector: #bpTraceInBackgroundForExample:. | ||
MethodReference class: BlockClosure selector: #bpTraceWith:. | ||
MethodReference class: Symbol selector: #withLayerDo:. | ||
MethodReference class: Array selector: #withLayersDo:. | ||
MethodReference class: CSProcessContextInformation selector: #withLayers:do:. | ||
MethodReference class: BlockClosure selector: #ensure:. | ||
MethodReference class: DynamicVariable class selector: #value:during:. | ||
MethodReference class: BPExample selector: #traceAsyncNotifying:. | ||
MethodReference class: BPExample selector: #execute. | ||
MethodReference class: BPExample selector: #executeSynchronously. | ||
MethodReference class: BPMethodExample selector: #runOn:. | ||
MethodReference class: CSMethodObject selector: #run:with:in:. | ||
MethodReference class: CSLayeredMethod selector: #valueWithReceiver:arguments:. | ||
MethodReference class: CSPartialMethod selector: #valueWithReceiver:arguments:.} | ||
^ self class ignoredMessagesInStack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/Behavior.extension/instance/bpSnapshot.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*Babylonian-Core | ||
bpSnapshot | ||
|
||
^ self |
5 changes: 5 additions & 0 deletions
5
packages/Babylonian-Core.package/Behavior.extension/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"bpSnapshot" : "pre 8/22/2023 16:22" } } |
2 changes: 2 additions & 0 deletions
2
packages/Babylonian-Core.package/Behavior.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
"name" : "Behavior" } |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/Context.extension/instance/bpSnapshot.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*Babylonian-Core | ||
bpSnapshot | ||
|
||
^ self copy |
5 changes: 5 additions & 0 deletions
5
packages/Babylonian-Core.package/Context.extension/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"bpSnapshot" : "pre 8/23/2023 12:49" } } |
2 changes: 2 additions & 0 deletions
2
packages/Babylonian-Core.package/Context.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
"name" : "Context" } |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/Parser.extension/instance/bpSnapshot.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*Babylonian-Core | ||
bpSnapshot | ||
|
||
^ self copy |
6 changes: 6 additions & 0 deletions
6
packages/Babylonian-Core.package/Parser.extension/instance/postCopy.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
*Babylonian-Core | ||
postCopy | ||
|
||
super postCopy. | ||
parseNode := parseNode copy. | ||
|
6 changes: 6 additions & 0 deletions
6
packages/Babylonian-Core.package/Parser.extension/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"bpSnapshot" : "pre 8/23/2023 12:18", | ||
"postCopy" : "pre 8/23/2023 12:19" } } |
2 changes: 2 additions & 0 deletions
2
packages/Babylonian-Core.package/Parser.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
"name" : "Parser" } |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/TestResult.extension/instance/bpSnapshot.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*Babylonian-Core | ||
bpSnapshot | ||
|
||
^ self copy |
5 changes: 5 additions & 0 deletions
5
packages/Babylonian-Core.package/TestResult.extension/methodProperties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"bpSnapshot" : "pre 8/23/2023 12:20" } } |
2 changes: 2 additions & 0 deletions
2
packages/Babylonian-Core.package/TestResult.extension/properties.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
{ | ||
"name" : "TestResult" } |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/TranscriptStream.extension/instance/bpSnapshot.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
*Babylonian-Core | ||
bpSnapshot | ||
|
||
^ self copy |
Oops, something went wrong.