示例#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
 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)