-
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.
- Loading branch information
Showing
417 changed files
with
1,979 additions
and
486 deletions.
There are no files selected for viewing
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-Compiler.package/BPCompiler.class/instance/keywords.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 @@ | ||
private | ||
keywords | ||
|
||
^ #(bpProbe bpReplace bpAssert exampleNamed) | ||
^ #(bpProbe bpReplace bpAssert bpProfilingProbe bpTypeProbe exampleNamed) |
2 changes: 1 addition & 1 deletion
2
packages/Babylonian-Compiler.package/BPCompiler.class/instance/parse..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,6 +1,6 @@ | ||
private | ||
parse: code | ||
|
||
^ BPSmalltalkGrammar | ||
^ PEGParserBPSmalltalk new | ||
match: code | ||
startingFrom: #MethodDeclaration |
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
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
packages/Babylonian-Compiler.package/BPReferenceRewriter.class/instance/Reference.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,6 @@ | ||
as yet unclassified | ||
Reference: aNode with: identifier | ||
|
||
^ (argumentNames includes: identifier interval contents asSymbol) | ||
ifTrue: [self value: identifier] | ||
ifFalse: ['(self bpResolveReferenceDynamically: #' , identifier interval contents , ' in: thisContext)'] |
4 changes: 4 additions & 0 deletions
4
...an-Compiler.package/BPReferenceRewriter.class/instance/blockArgument.with.and.and.and..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 @@ | ||
as yet unclassified | ||
blockArgument: aNode with: some and: more and: moree and: evenMore | ||
argumentNames add: aNode interval contents copyWithoutFirst asSymbol. | ||
^ aNode interval contents |
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ initialize-release | |
initialize | ||
|
||
super initialize. | ||
dictionary := IdentityDictionary new. | ||
argumentNames := Set new. |
7 changes: 7 additions & 0 deletions
7
packages/Babylonian-Compiler.package/BPReferenceRewriter.class/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,7 @@ | ||
{ | ||
"class" : { | ||
}, | ||
"instance" : { | ||
"Reference:with:" : "pre 1/10/2023 17:50", | ||
"blockArgument:with:and:and:and:" : "pre 1/10/2023 17:51", | ||
"initialize" : "pre 1/10/2023 17:37" } } |
14 changes: 14 additions & 0 deletions
14
packages/Babylonian-Compiler.package/BPReferenceRewriter.class/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,14 @@ | ||
{ | ||
"category" : "Babylonian-Compiler", | ||
"classinstvars" : [ | ||
], | ||
"classvars" : [ | ||
], | ||
"commentStamp" : "", | ||
"instvars" : [ | ||
"argumentNames" ], | ||
"name" : "BPReferenceRewriter", | ||
"pools" : [ | ||
], | ||
"super" : "OhmSmalltalkSourceRewriter", | ||
"type" : "normal" } |
4 changes: 4 additions & 0 deletions
4
...ges/Babylonian-Compiler.package/BPSourceRewriter.class/instance/bpProfilingProbe.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,4 @@ | ||
rewrite rules | ||
bpProfilingProbe: annotation with: originalExpressionSourceNode | ||
|
||
^ annotation instrumentationCallFor: (self value: originalExpressionSourceNode) |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Compiler.package/BPSourceRewriter.class/instance/bpTypeProbe.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,4 @@ | ||
rewrite rules | ||
bpTypeProbe: annotation with: originalExpressionSourceNode | ||
|
||
^ annotation instrumentationCallFor: (self value: originalExpressionSourceNode) |
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
3 changes: 3 additions & 0 deletions
3
packages/Babylonian-Core.package/BPAbstractExample.class/README.md
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,3 @@ | ||
A Babylonian Example is a source of concrete data to illustrate source code. | ||
|
||
Currently, an example is always associated with a method, even if the example refers to a global source of information, each example in a method is its own instance. You can activate each individual instance. |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/class/bpExamplePragmaPrefix.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 @@ | ||
constants | ||
bpExamplePragmaPrefix | ||
"Should be overridden by subclasses" | ||
^ 'noExample' |
File renamed without changes.
16 changes: 16 additions & 0 deletions
16
packages/Babylonian-Core.package/BPAbstractExample.class/class/exampleColors.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,16 @@ | ||
constants | ||
exampleColors | ||
|
||
"These are color brewer colors: https://colorbrewer2.org" | ||
^ #('a6cee3' | ||
'1f78b4' | ||
'b2df8a' | ||
'33a02c' | ||
'fb9a99' | ||
'e31a1c' | ||
'fdbf6f' | ||
'ff7f00' | ||
'cab2d6' | ||
'6a3d9a') | ||
collect: [:colorHexString | | ||
Color fromString: colorHexString] |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ serialization | |
asPragma | ||
|
||
<bpRelevantMethod> | ||
^ self subclassResponsibility | ||
self subclassResponsibility. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/currentTrace.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 @@ | ||
tracing | ||
currentTrace | ||
|
||
^ self traceInformation trace |
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
packages/Babylonian-Core.package/BPAbstractExample.class/instance/ensureTerminatedProcess.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,3 @@ | ||
tracing | ||
ensureTerminatedProcess | ||
self traceInformation terminateTracingProcess. |
6 changes: 6 additions & 0 deletions
6
packages/Babylonian-Core.package/BPAbstractExample.class/instance/exampleName..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 @@ | ||
accessing | ||
exampleName: aStringOrText | ||
|
||
self subclassResponsibility. | ||
|
||
|
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/exampleName.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 @@ | ||
accessing | ||
exampleName | ||
|
||
self subclassResponsibility. |
File renamed without changes.
3 changes: 3 additions & 0 deletions
3
packages/Babylonian-Core.package/BPAbstractExample.class/instance/expectedResult..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,3 @@ | ||
accessing | ||
expectedResult: aString | ||
self subclassResponsibility. |
3 changes: 3 additions & 0 deletions
3
packages/Babylonian-Core.package/BPAbstractExample.class/instance/expectedResult.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,3 @@ | ||
accessing | ||
expectedResult | ||
self subclassResponsibility. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions
4
...age/BPExample.class/instance/isActive..st → ...stractExample.class/instance/isActive..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
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/isActive.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 @@ | ||
accessing | ||
isActive | ||
|
||
self subclassResponsibility. |
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/method..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 @@ | ||
accessing | ||
method: anObject | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/method.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 @@ | ||
accessing | ||
method | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/morphClass.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 @@ | ||
ui | ||
morphClass | ||
|
||
self subclassResponsibility. |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ tracing | |
removeTrace | ||
|
||
self ensureTerminatedProcess. | ||
traceInformation trace: nil. | ||
self traceInformation trace: nil. |
3 changes: 3 additions & 0 deletions
3
packages/Babylonian-Core.package/BPAbstractExample.class/instance/resumeTracing.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,3 @@ | ||
tracing | ||
resumeTracing | ||
^ self traceInformation resumeProcess |
2 changes: 1 addition & 1 deletion
2
...ackage/BPExample.class/instance/runOn..st → ...PAbstractExample.class/instance/runOn..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 @@ | ||
executing | ||
runOn: initialState | ||
|
||
^ self subclassResponsibility | ||
self subclassResponsibility. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
15 changes: 15 additions & 0 deletions
15
packages/Babylonian-Core.package/BPAbstractExample.class/instance/runWithTimeoutOn..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,15 @@ | ||
executing | ||
runWithTimeoutOn: initialState | ||
| complete semaphore | | ||
semaphore := Semaphore new. | ||
complete := false. | ||
|
||
self startWatchdog: [ | ||
semaphore waitTimeoutMSecs: self timeout. | ||
"We sadly cannot simply ask self tracingIsStillRunning as the values rely | ||
on this method's return value which is not done at this point. So uglyish complete workaround" | ||
complete ifFalse: [self suspendTracingProcess]]. | ||
|
||
[ ^ self runOn: initialState] ensure: [ | ||
complete := true. | ||
semaphore signal] |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/setIsActive..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 @@ | ||
accessing | ||
setIsActive: aBoolean | ||
|
||
self subclassResponsibility. |
6 changes: 6 additions & 0 deletions
6
packages/Babylonian-Core.package/BPAbstractExample.class/instance/setUpScript..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 @@ | ||
accessing | ||
setUpScript: aStringOrSymbol | ||
|
||
self subclassResponsibility. | ||
|
||
|
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/setUpScript.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 @@ | ||
accessing | ||
setUpScript | ||
|
||
self subclassResponsibility. |
7 changes: 7 additions & 0 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
private | ||
startWatchdog: watchdogBlock | ||
|
||
| watchdog | | ||
watchdog := watchdogBlock newProcess. | ||
watchdog priority: Processor timingPriority-1. | ||
watchdog resume. |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/suspendTracingProcess.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 @@ | ||
tracing | ||
suspendTracingProcess | ||
|
||
^ self traceInformation suspendProcess |
6 changes: 6 additions & 0 deletions
6
packages/Babylonian-Core.package/BPAbstractExample.class/instance/tearDownScript..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 @@ | ||
accessing | ||
tearDownScript: aStringOrSymbol | ||
|
||
self subclassResponsibility. | ||
|
||
|
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/tearDownScript.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 @@ | ||
accessing | ||
tearDownScript | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
timeout: aMSNumber | ||
|
||
self subclassResponsibility. |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
accessing | ||
timeout | ||
|
||
self subclassResponsibility. |
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
packages/Babylonian-Core.package/BPAbstractExample.class/instance/trace.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 @@ | ||
tracing | ||
trace | ||
|
||
<bpRelevantMethod> | ||
^ self traceInformation trace: ([self execute] bpTraceForExample: self) |
11 changes: 11 additions & 0 deletions
11
packages/Babylonian-Core.package/BPAbstractExample.class/instance/traceInBackground.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,11 @@ | ||
tracing | ||
traceInBackground | ||
|
||
<bpRelevantMethod> | ||
| traceAndProcess | | ||
self ensureTerminatedProcess. | ||
|
||
traceAndProcess := [self execute] bpTraceInBackgroundForExample: self. | ||
self traceInformation | ||
trace: traceAndProcess first; | ||
tracingProcess: traceAndProcess second. |
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/traceInformation.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 @@ | ||
accessing | ||
traceInformation | ||
|
||
self subclassResponsibility. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
packages/Babylonian-Core.package/BPAbstractExample.class/instance/tracingIsStillRunning.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 @@ | ||
tracing | ||
tracingIsStillRunning | ||
|
||
^ self traceInformation tracingIsStillRunning |
4 changes: 4 additions & 0 deletions
4
...ges/Babylonian-Core.package/BPAbstractExample.class/instance/tracingProcessIsSuspended.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 @@ | ||
tracing | ||
tracingProcessIsSuspended | ||
|
||
^ self traceInformation isProcessSuspended |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.