コード例 #1
0
ファイル: slr.py プロジェクト: strangemonad/cplr
 def __str__(self):
    return "SYNTAX %s" % CompilationError.__str__(self)
コード例 #2
0
ファイル: type_constructor.py プロジェクト: strangemonad/cplr
 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
ファイル: symbol_collector.py プロジェクト: strangemonad/cplr
 def __str__(self):
    return "UNDEFINED SYMBOL %s" % CompilationError.__str__(self)