Exemple #1
0
 public LuaStackFrame(LuaThread thread, string frameName, string filename, int startLine, int endLine, int lineNo, int argCount, int frameId, FrameKind kind)
 {
     _thread    = thread;
     _frameName = frameName;
     _filename  = filename;
     _argCount  = argCount;
     _lineNo    = lineNo;
     _frameId   = frameId;
     _startLine = startLine;
     _endLine   = endLine;
     _kind      = kind;
 }
Exemple #2
0
 public ThreadEventArgs(LuaThread thread)
 {
     _thread = thread;
 }
Exemple #3
0
 public BreakpointHitEventArgs(LuaBreakpoint breakpoint, LuaThread thread)
 {
     _breakpoint = breakpoint;
     _thread     = thread;
 }
 public ExceptionRaisedEventArgs(LuaThread thread, LuaException exception, bool isUnhandled)
 {
     _thread      = thread;
     _exception   = exception;
     _isUnhandled = isUnhandled;
 }
Exemple #5
0
 public DjangoStackFrame(LuaThread thread, string frameName, string filename, int startLine, int endLine, int lineNo, int argCount, int frameId, string sourceFile, int sourceLine)
     : base(thread, frameName, filename, startLine, endLine, lineNo, argCount, frameId, FrameKind.Django)
 {
     _sourceFile = sourceFile;
     _sourceLine = sourceLine;
 }
Exemple #6
0
 public OutputEventArgs(LuaThread thread, string output)
 {
     _thread = thread;
     _output = output;
 }