Skip to content

Instantly share code, notes, and snippets.

@akyoto
Created November 23, 2012 21:11
Show Gist options
  • Save akyoto/4137341 to your computer and use it in GitHub Desktop.
Save akyoto/4137341 to your computer and use it in GitHub Desktop.
*** STACK TRACE: ***
File "/home/eduard/Projects/flua/src/flua/Tools/IDE/Threads/OutputCompilerThread.py", line 48, in run
self.outputCompiler.compile(self.ppFile, silent = True)
*** EXCEPTION: ***
Traceback (most recent call last):
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputCompiler.py", line 359, in genericCompile
cppOut.compile()
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/cpp/CPPOutputFile.py", line 117, in compile
self.body += self.parseChilds(self.codeNode, "\t" * self.currentTabLevel, self.lineLimiter)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputFile.py", line 1268, in parseChilds
line = parseExpr(node)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputFile.py", line 1415, in parseExpr
return func(node)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputFileHandler.py", line 246, in handleAssign
value = self.parseExpr(op2, False)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputFile.py", line 1295, in parseExpr
expr = self.parseExpr(node, True)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputFile.py", line 1415, in parseExpr
return func(node)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputFileHandler.py", line 469, in handleNew
classObj = self.getClass(typeName)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputFile.py", line 1108, in getClass
raise CompilerException("Class „%s“ has not been defined [Error code 3]" % (className))
flua.Compiler.Utils.Debug.CompilerException: Class „PlayerData“ has not been defined [Error code 3]
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/home/eduard/Projects/flua/src/flua/Tools/IDE/Threads/OutputCompilerThread.py", line 48, in run
self.outputCompiler.compile(self.ppFile, silent = True)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputCompiler.py", line 327, in compile
self.genericCompile(inpFile, outFile, silent)
File "/home/eduard/Projects/flua/src/flua/Compiler/Output/BaseOutputCompiler.py", line 364, in genericCompile
raise OutputCompilerException(e.getMsg(), self.lastParsedFile, self.lastParsedFile.inpFile)
flua.Compiler.Utils.Debug.OutputCompilerException:
--------------------------------------------------------------------------------
In /home/eduard/Projects/flua/src/eurbach/Save.flua
--------------------------------------------------------------------------------
<assign depth="0" id="4">
<value>p</value>
<value>
<new>
<type>PlayerData</type>
<parameters>
<parameter>flua_string_1</parameter>
</parameters>
</new>
</value>
</assign>
--------------------------------------------------------------------------------
p = PlayerData("Test")
--------------------------------------------------------------------------------
Class „PlayerData“ has not been defined [Error code 3]
--------------------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment