예제 #1
0
파일: slr.py 프로젝트: strangemonad/cplr
 def __str__(self):
    return "SYNTAX %s" % CompilationError.__str__(self)
예제 #2
0
 def __str__(self):
    return "'%s' - PREVIOUSLY DEFINED TYPE %s" % \
           (self.__featureName, CompilationError.__str__(self))
예제 #3
0
파일: sbc.py 프로젝트: strangemonad/cplr
 def __str__(self):
    # XXX come back and figure out printing of erors.
    return "SYNTAX %s" % CompilationError.__str__(self)
예제 #4
0
파일: lexer.py 프로젝트: strangemonad/cplr
 def __str__(self):
    # XXX come back and figure out printing of erors.
    return "UNEXPECTED SYMBOL %s" % CompilationError.__str__(self)
예제 #5
0
 def __str__(self):
    return "UNDEFINED SYMBOL %s" % CompilationError.__str__(self)