SmalltalkChunkFileSourceReader.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 13 Jun 2018 14:39:23 +0000
branchjv
changeset 23108 77cd6e1625e1
parent 23107 40173e082cbc
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     1
"
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     2
 COPYRIGHT (c) 2009 by eXept Software AG
23107
40173e082cbc Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18068
diff changeset
     3
 COPYRIGHT (c) 2009 Jan Vrany
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     4
              All Rights Reserved
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     5
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     6
 This software is furnished under a license and may be used
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     7
 only in accordance with the terms of that license and with the
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     8
 inclusion of the above copyright notice.   This software may not
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     9
 be provided or otherwise made available to, or used by, any
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    10
 other person.  No title to or ownership of the software is
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    11
 hereby transferred.
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    12
"
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    13
"{ Package: 'stx:libbasic' }"
3e5291372dea initial checkin
fm
parents:
diff changeset
    14
3e5291372dea initial checkin
fm
parents:
diff changeset
    15
AbstractSourceFileReader subclass:#SmalltalkChunkFileSourceReader
3e5291372dea initial checkin
fm
parents:
diff changeset
    16
	instanceVariableNames:''
3e5291372dea initial checkin
fm
parents:
diff changeset
    17
	classVariableNames:''
3e5291372dea initial checkin
fm
parents:
diff changeset
    18
	poolDictionaries:''
15420
27e52ae49b81 class: AbstractSourceFileWriter
Claus Gittinger <cg@exept.de>
parents: 15051
diff changeset
    19
	category:'Kernel-Classes-Support'
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    20
!
3e5291372dea initial checkin
fm
parents:
diff changeset
    21
3e5291372dea initial checkin
fm
parents:
diff changeset
    22
!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    23
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    24
copyright
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    25
"
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    26
 COPYRIGHT (c) 2009 by eXept Software AG
23107
40173e082cbc Copyright updates
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 18068
diff changeset
    27
 COPYRIGHT (c) 2009 Jan Vrany
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    28
              All Rights Reserved
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    29
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    30
 This software is furnished under a license and may be used
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    31
 only in accordance with the terms of that license and with the
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    33
 be provided or otherwise made available to, or used by, any
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    34
 other person.  No title to or ownership of the software is
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    35
 hereby transferred.
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    36
"
14408
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    37
!
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    38
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    39
documentation
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    40
"
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    41
    I know how to read smalltalk chunk file format
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    42
"
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    43
! !
3e5291372dea initial checkin
fm
parents:
diff changeset
    44
3e5291372dea initial checkin
fm
parents:
diff changeset
    45
!SmalltalkChunkFileSourceReader methodsFor:'fileIn'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    46
3e5291372dea initial checkin
fm
parents:
diff changeset
    47
fileInStream: aStream
15051
0ec118c3189c class: SmalltalkChunkFileSourceReader
Claus Gittinger <cg@exept.de>
parents: 15047
diff changeset
    48
    ^ aStream fileIn
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    49
3e5291372dea initial checkin
fm
parents:
diff changeset
    50
    "Modified: / 16-08-2009 / 10:00:48 / Jan Vrany <vranyj1@fel.cvut.cz>"
3e5291372dea initial checkin
fm
parents:
diff changeset
    51
! !
3e5291372dea initial checkin
fm
parents:
diff changeset
    52
3e5291372dea initial checkin
fm
parents:
diff changeset
    53
!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    54
3e5291372dea initial checkin
fm
parents:
diff changeset
    55
version
15420
27e52ae49b81 class: AbstractSourceFileWriter
Claus Gittinger <cg@exept.de>
parents: 15051
diff changeset
    56
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.9 2013-06-23 22:22:40 cg Exp $'
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    57
!
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    58
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    59
version_CVS
15420
27e52ae49b81 class: AbstractSourceFileWriter
Claus Gittinger <cg@exept.de>
parents: 15051
diff changeset
    60
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.9 2013-06-23 22:22:40 cg Exp $'
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    61
!
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    62
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    63
version_SVN
15420
27e52ae49b81 class: AbstractSourceFileWriter
Claus Gittinger <cg@exept.de>
parents: 15051
diff changeset
    64
    ^'$Id: SmalltalkChunkFileSourceReader.st,v 1.9 2013-06-23 22:22:40 cg Exp $'
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    65
! !
15047
263efb772952 class: SmalltalkChunkFileSourceReader
Claus Gittinger <cg@exept.de>
parents: 14408
diff changeset
    66