SmalltalkChunkFileSourceReader.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 22 Sep 2015 16:28:42 +0100
branchjv
changeset 18759 c1217211909c
parent 18068 3e841ddcb18a
child 23107 40173e082cbc
permissions -rw-r--r--
Changed identification strings to contain jv-branch ...to make explicit that this distribution is not the official one used by eXept and therefore that eXept is not to be blamed in case of any problem.
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
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     3
              All Rights Reserved
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     4
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     5
 This software is furnished under a license and may be used
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     6
 only in accordance with the terms of that license and with the
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
     9
 other person.  No title to or ownership of the software is
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    10
 hereby transferred.
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    11
"
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
3e5291372dea initial checkin
fm
parents:
diff changeset
    13
3e5291372dea initial checkin
fm
parents:
diff changeset
    14
AbstractSourceFileReader subclass:#SmalltalkChunkFileSourceReader
3e5291372dea initial checkin
fm
parents:
diff changeset
    15
	instanceVariableNames:''
3e5291372dea initial checkin
fm
parents:
diff changeset
    16
	classVariableNames:''
3e5291372dea initial checkin
fm
parents:
diff changeset
    17
	poolDictionaries:''
15420
27e52ae49b81 class: AbstractSourceFileWriter
Claus Gittinger <cg@exept.de>
parents: 15051
diff changeset
    18
	category:'Kernel-Classes-Support'
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    19
!
3e5291372dea initial checkin
fm
parents:
diff changeset
    20
3e5291372dea initial checkin
fm
parents:
diff changeset
    21
!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    22
12049
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    23
copyright
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    24
"
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    25
 COPYRIGHT (c) 2009 by eXept Software AG
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    26
              All Rights Reserved
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    27
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    28
 This software is furnished under a license and may be used
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    29
 only in accordance with the terms of that license and with the
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    31
 be provided or otherwise made available to, or used by, any
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    32
 other person.  No title to or ownership of the software is
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    33
 hereby transferred.
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    34
"
14408
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    35
!
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    36
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    37
documentation
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
    I know how to read smalltalk chunk file format
c3830b8e8abe added: #documentation
Claus Gittinger <cg@exept.de>
parents: 12179
diff changeset
    40
"
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    41
! !
3e5291372dea initial checkin
fm
parents:
diff changeset
    42
3e5291372dea initial checkin
fm
parents:
diff changeset
    43
!SmalltalkChunkFileSourceReader methodsFor:'fileIn'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    44
3e5291372dea initial checkin
fm
parents:
diff changeset
    45
fileInStream: aStream
15051
0ec118c3189c class: SmalltalkChunkFileSourceReader
Claus Gittinger <cg@exept.de>
parents: 15047
diff changeset
    46
    ^ aStream fileIn
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    47
3e5291372dea initial checkin
fm
parents:
diff changeset
    48
    "Modified: / 16-08-2009 / 10:00:48 / Jan Vrany <vranyj1@fel.cvut.cz>"
3e5291372dea initial checkin
fm
parents:
diff changeset
    49
! !
3e5291372dea initial checkin
fm
parents:
diff changeset
    50
3e5291372dea initial checkin
fm
parents:
diff changeset
    51
!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!
3e5291372dea initial checkin
fm
parents:
diff changeset
    52
3e5291372dea initial checkin
fm
parents:
diff changeset
    53
version
15420
27e52ae49b81 class: AbstractSourceFileWriter
Claus Gittinger <cg@exept.de>
parents: 15051
diff changeset
    54
    ^ '$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
    55
!
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    56
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    57
version_CVS
15420
27e52ae49b81 class: AbstractSourceFileWriter
Claus Gittinger <cg@exept.de>
parents: 15051
diff changeset
    58
    ^ '$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
    59
!
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    60
b07e6e19bef5 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 12010
diff changeset
    61
version_SVN
15420
27e52ae49b81 class: AbstractSourceFileWriter
Claus Gittinger <cg@exept.de>
parents: 15051
diff changeset
    62
    ^'$Id: SmalltalkChunkFileSourceReader.st,v 1.9 2013-06-23 22:22:40 cg Exp $'
11961
3e5291372dea initial checkin
fm
parents:
diff changeset
    63
! !
15047
263efb772952 class: SmalltalkChunkFileSourceReader
Claus Gittinger <cg@exept.de>
parents: 14408
diff changeset
    64