git/GitTreewalkModeType.st
author convert-repo
Sat, 08 Jun 2019 03:28:26 +0000
changeset 873 e7944a5cb335
parent 481 0cfef855baa2
permissions -rw-r--r--
update tags

"{ Package: 'stx:libscm/git' }"

SharedPool subclass:#GitTreewalkModeType
	instanceVariableNames:''
	classVariableNames:'TREEWALK_PRE TREEWALK_POST'
	poolDictionaries:''
	category:'SCM-Git-Core-Internal-Constants'
!


!GitTreewalkModeType class methodsFor:'initialization'!

initialize

    TREEWALK_PRE := 0.
    TREEWALK_POST := 1.
! !

!GitTreewalkModeType class methodsFor:'constants'!

TREEWALK_POST

    ^TREEWALK_POST
!

TREEWALK_PRE

    ^TREEWALK_PRE
! !

!GitTreewalkModeType class methodsFor:'documentation'!

version_GIT
    "Never, ever change this method. Ask JV or CG why"
    ^thisContext method mclass theNonMetaclass instVarNamed: #revision
!

version_SVN
    ^ '$Id$'
! !

GitTreewalkModeType initialize!