@@ -309,7 +309,7 @@ private string GetChunkName()
309
309
{
310
310
var chunkName = info . ChunkName ;
311
311
var methodName = Method . Name ;
312
-
312
+
313
313
return methodName . StartsWith ( chunkName )
314
314
? chunkName
315
315
: chunkName + "#" + methodName ;
@@ -330,19 +330,19 @@ public LuaStackFrameType Type
330
330
} // func Type
331
331
332
332
/// <summary></summary>
333
- public string MethodName { get { return info == null ? Method . Name : GetChunkName ( ) ; } }
333
+ public string MethodName => info == null ? Method . Name : GetChunkName ( ) ;
334
334
/// <summary></summary>
335
- public MethodBase Method { get { return frame . GetMethod ( ) ; } }
335
+ public MethodBase Method => frame . GetMethod ( ) ;
336
336
/// <summary></summary>
337
- public int ILOffset { get { return frame . GetILOffset ( ) ; } }
337
+ public int ILOffset => frame . GetILOffset ( ) ;
338
338
/// <summary></summary>
339
- public int NativeOffset { get { return frame . GetNativeOffset ( ) ; } }
339
+ public int NativeOffset => frame . GetNativeOffset ( ) ;
340
340
/// <summary></summary>
341
- public string FileName { get { return info == null ? frame . GetFileName ( ) : info . FileName ; } }
341
+ public string FileName => info ? . FileName ?? frame . GetFileName ( ) ;
342
342
/// <summary></summary>
343
- public int ColumnNumber { get { return info == null ? frame . GetFileColumnNumber ( ) : info . Column ; } }
343
+ public int ColumnNumber => info ? . Column ?? frame . GetFileColumnNumber ( ) ;
344
344
/// <summary></summary>
345
- public int LineNumber { get { return info == null ? frame . GetFileLineNumber ( ) : info . Line ; } }
345
+ public int LineNumber => info == null ? frame . GetFileLineNumber ( ) : info . Line ;
346
346
347
347
string ILuaDebugInfo . ChunkName => MethodName ;
348
348
int ILuaDebugInfo . Line => LineNumber ;
@@ -392,7 +392,7 @@ public void UpdateStackTrace(LuaStackFrame[] newStackTrace)
392
392
public IEnumerator < LuaStackFrame > GetEnumerator ( )
393
393
{
394
394
var length = Count ;
395
- for ( int i = 0 ; i < length ; i ++ )
395
+ for ( var i = 0 ; i < length ; i ++ )
396
396
yield return stackTrace [ i ] ;
397
397
} // func GetEnumerator
398
398
@@ -562,7 +562,7 @@ public static void UnwindException(Exception ex, Func<ILuaDebugInfo> createDebug
562
562
563
563
// add trace point
564
564
luaFrames . Add ( new LuaStackFrame ( trace . GetFrame ( trace . FrameCount - 1 ) , createDebugInfo ( ) ) ) ;
565
-
565
+
566
566
currentData . UpdateStackTrace ( luaFrames . ToArray ( ) ) ;
567
567
} // func UnwindException
568
568
} // class LuaExceptionData
0 commit comments