Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __repr__( self ):
inout = []
if self.isInbound(): inout.append( "in" )
if self.isOutbound: inout.append( "out" )
return "".join( inout ) + " " + Declaration.__repr__( self )
def __repr__( self ):
return "const " + Declaration.__repr__( self )