예제 #1
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __le__(self, other):
     raise interpreterError("Command is unorderable!")
예제 #2
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __mod__(self, other):
     raise interpreterError("Tried to mod a command!")
예제 #3
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __pow__(self, other):
     raise interpreterError("Tried to pow a command!")
예제 #4
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __mul__(self, other):
     raise interpreterError("Tried to multiply a command!")
예제 #5
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __truediv__(self, other):
     raise interpreterError("Tried to divide a command!")
예제 #6
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __sub__(self, other):
     raise interpreterError("Tried to subtract a boolean!")
예제 #7
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __sub__(self, other):
     raise interpreterError("Tried to subtract a command!")
예제 #8
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __add__(self, other):
     if type(self) == type(other):
         return type(self)(self.token + other.token, False)
     raise interpreterError("Tried to add incompatible types!")
예제 #9
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __pow__(self, other):
     raise interpreterError("Tried to pow a string!")
예제 #10
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __mod__(self, other):
     raise interpreterError("Tried to mod a string!")
예제 #11
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __truediv__(self, other):
     raise interpreterError("Tried to divide a string!")
예제 #12
0
파일: tokens.py 프로젝트: Bradcomp/StaPLe
 def __mul__(self, other):
     raise interpreterError("Tried to multiply a string!")