Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ internal static InstructionFieldUsage GetFieldUsage(this OpCode op)
case OpCode.Scalar:
case OpCode.IterUpd:
case OpCode.IterPrep:
case OpCode.NewTable:
case OpCode.Concat:
case OpCode.LessEq:
case OpCode.Less:
Expand All @@ -44,6 +43,7 @@ internal static InstructionFieldUsage GetFieldUsage(this OpCode op)
case OpCode.ToBool:
return InstructionFieldUsage.None;
case OpCode.Pop:
case OpCode.NewTable:
case OpCode.Copy:
case OpCode.TblInitI:
case OpCode.ExpTuple:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace MoonSharp.Interpreter.Execution.VM
sealed partial class Processor
{
const ulong DUMP_CHUNK_MAGIC = 0x1A0D234E4F4F4D1D;
const int DUMP_CHUNK_VERSION = 0x150;
const int DUMP_CHUNK_VERSION = 0x151;

internal static bool IsDumpStream(Stream stream)
{
Expand Down
Loading