Skip to content

Commit

Permalink
Merge pull request #15 from svenvc/master
Browse files Browse the repository at this point in the history
Update Zinc
  • Loading branch information
svenvc committed May 30, 2024
2 parents 0954816 + bd1f945 commit e734e4b
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
testing
isAbstract

^ self == ZnCharacterEncoder
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
testing
isAbstract

^ self == ZnEncodedReadStream
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
accessing
collectionSpecies
^ self subclassResponsibility
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
testing
isAbstract

^ self == ZnEncodedStream
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
initialization
reset

^ stream reset
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
testing
isAbstract

^ self == ZnEncodedWriteStream

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SystemOrganization addCategory: #'Zinc-Character-Encoding-Core'!
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
tests
testReset

| stream |
stream := ZnCharacterReadStream on: 'abc' asByteArray readStream.
self assert: stream next equals: $a.
stream reset.
self assert: stream next equals: $a

0 comments on commit e734e4b

Please sign in to comment.