Skip to content

Commit e054e91

Browse files
committed
Fix: NullReference in stack evaluation in xamarin
1 parent 7a689c2 commit e054e91

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

NeoLua/Exceptions.cs

+10-10
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ private string GetChunkName()
309309
{
310310
var chunkName = info.ChunkName;
311311
var methodName = Method.Name;
312-
312+
313313
return methodName.StartsWith(chunkName)
314314
? chunkName
315315
: chunkName + "#" + methodName;
@@ -330,19 +330,19 @@ public LuaStackFrameType Type
330330
} // func Type
331331

332332
/// <summary></summary>
333-
public string MethodName { get { return info == null ? Method.Name : GetChunkName(); } }
333+
public string MethodName => info == null ? Method.Name : GetChunkName();
334334
/// <summary></summary>
335-
public MethodBase Method { get { return frame.GetMethod(); } }
335+
public MethodBase Method => frame.GetMethod();
336336
/// <summary></summary>
337-
public int ILOffset { get { return frame.GetILOffset(); } }
337+
public int ILOffset => frame.GetILOffset();
338338
/// <summary></summary>
339-
public int NativeOffset { get { return frame.GetNativeOffset(); } }
339+
public int NativeOffset => frame.GetNativeOffset();
340340
/// <summary></summary>
341-
public string FileName { get { return info == null ? frame.GetFileName() : info.FileName; } }
341+
public string FileName => info?.FileName ?? frame.GetFileName();
342342
/// <summary></summary>
343-
public int ColumnNumber { get { return info == null ? frame.GetFileColumnNumber() : info.Column; } }
343+
public int ColumnNumber => info?.Column ?? frame.GetFileColumnNumber();
344344
/// <summary></summary>
345-
public int LineNumber { get { return info == null ? frame.GetFileLineNumber() : info.Line; } }
345+
public int LineNumber => info == null ? frame.GetFileLineNumber() : info.Line;
346346

347347
string ILuaDebugInfo.ChunkName => MethodName;
348348
int ILuaDebugInfo.Line => LineNumber;
@@ -392,7 +392,7 @@ public void UpdateStackTrace(LuaStackFrame[] newStackTrace)
392392
public IEnumerator<LuaStackFrame> GetEnumerator()
393393
{
394394
var length = Count;
395-
for (int i = 0; i < length; i++)
395+
for (var i = 0; i < length; i++)
396396
yield return stackTrace[i];
397397
} // func GetEnumerator
398398

@@ -562,7 +562,7 @@ public static void UnwindException(Exception ex, Func<ILuaDebugInfo> createDebug
562562

563563
// add trace point
564564
luaFrames.Add(new LuaStackFrame(trace.GetFrame(trace.FrameCount - 1), createDebugInfo()));
565-
565+
566566
currentData.UpdateStackTrace(luaFrames.ToArray());
567567
} // func UnwindException
568568
} // class LuaExceptionData

NeoLua/Lua.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ public static LuaChunk GetChunkFromMethodName(string name)
470470
/// <param name="mi"></param>
471471
/// <returns></returns>
472472
public static LuaChunk GetChunkFromMethodInfo(MethodBase mi)
473-
=> GetChunkFromMethodName(mi.Name);
473+
=> mi != null ? GetChunkFromMethodName(mi.Name) : null;
474474

475475
#endregion
476476

NeoLua/LuaDebug.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public Expression GetLineInfoExpression(DebugInfoExpression exprDebugInfo)
124124
var oldFileName = FileNameConstant.Value as string;
125125
var newFileName = exprDebugInfo.Document?.FileName;
126126
if (oldFileName != newFileName)
127-
FileNameConstant = Expression.Constant(newFileName);
127+
FileNameConstant = Expression.Constant(newFileName, typeof(string));
128128

129129
if (exprDebugInfo.StartLine == 16707566)
130130
{

0 commit comments

Comments
 (0)