Skip to content

Commit

Permalink
implemented #argument for parallel node
Browse files Browse the repository at this point in the history
  • Loading branch information
cdelaunay committed May 23, 2024
1 parent 101ff63 commit 0244e00
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 0 additions & 5 deletions source/FingerBoard-Core/FBActivation.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,6 @@ FBActivation >> events [
^ self flowInstance eventsOfActivation: self
]

{ #category : #accessing }
FBActivation >> flow [
^ executor flow
]

{ #category : #accessing }
FBActivation >> id [

Expand Down
5 changes: 5 additions & 0 deletions source/FingerBoard-Core/FBBaseActivation.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ FBBaseActivation >> executor: aFBFlowExecutor [
executor := aFBFlowExecutor
]

{ #category : #accessing }
FBBaseActivation >> flow [
^ executor flow
]

{ #category : #events }
FBBaseActivation >> flowInstance [
^ executor flowInstance
Expand Down
7 changes: 6 additions & 1 deletion source/FingerBoard-Core/FBParallelActivation.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ Class {
#category : #'FingerBoard-Core-Model'
}

{ #category : #accessing }
FBParallelActivation >> argument [
^ arguments at: executor index
]

{ #category : #accessing }
FBParallelActivation >> argument: anObject [
arguments at: executor index put: anObject
Expand Down Expand Up @@ -37,7 +42,7 @@ FBParallelActivation >> printOn: aStream [

{ #category : #evaluating }
FBParallelActivation >> value [
^ values
^ values
]

{ #category : #accessing }
Expand Down

0 comments on commit 0244e00

Please sign in to comment.