Skip to content

Commit

Permalink
eliminate dependency on tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LinqLover committed Nov 19, 2022
1 parent 961495b commit 908e39a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ exampleSimple

| object cursor |
cursor := TDBCursor traceForBlock:
[object := TDBTestObject new.
object plonk: 1.
object griffle: 2.
object plonk: 3.
object griffle: 5].
[object := Array new: 2.
object at: 1 put: 1.
object at: 2 put: 2.
object at: 1 put: 3.
object at: 2 put: 5].

(cursor
object: object
collect: [:obj | obj plonk])
collect: [:obj | obj first])
explore.

(cursor
object: object
collect: [:obj | [obj plonk + obj griffle] ifError: [:ex | ex]]) explore.
collect: [:obj | [obj first + obj second] ifError: [:ex | ex]]) explore.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"exampleParseRegexDemo0" : "ct 6/3/2022 16:55",
"exampleParseRegexDemo1" : "ct 6/3/2022 16:55",
"exampleParseRegexDemo2" : "ct 6/3/2022 16:55",
"exampleSimple" : "ct 6/3/2022 16:55",
"exampleSimple" : "ct 11/19/2022 01:35",
"exampleSubmorphCount" : "ct 6/3/2022 16:55",
"examplesTimeIndex" : "ct 5/14/2022 21:24",
"forMemory:atTimes:" : "ct 5/12/2022 12:32",
Expand Down

1 comment on commit 908e39a

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.