Skip to content

Commit

Permalink
Implement squotEqual: for AbstractSound
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusDoe committed Oct 17, 2023
1 parent 11ec583 commit b6610ad
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*Squot-Mapper-comparing
squotEqual: anObject
self == anObject ifTrue: [^ true].
(anObject isKindOf: AbstractSound) ifFalse: [^ false].
self duration = anObject duration ifFalse: [^ false].
^ self samples = anObject samples
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"class" : {
},
"instance" : {
"squotEqual:" : "mad 9/21/2023 13:34" } }
2 changes: 2 additions & 0 deletions src/Squot.package/AbstractSound.extension/properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
"name" : "AbstractSound" }

0 comments on commit b6610ad

Please sign in to comment.