Skip to content

Commit

Permalink
Check removed
Browse files Browse the repository at this point in the history
  • Loading branch information
ackava committed Oct 26, 2023
1 parent 9707995 commit ede4eff
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions YantraJS.Core/Core/JSContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,10 @@ public void Update()
System.Diagnostics.Debug.WriteLine($"{Function} at {Line}, {Column}");
}

[MethodImpl(MethodImplOptions.AggressiveInlining)]
public void Step(int line, int column)
{
// pop..
if (this != context.Top)
context.Top = this;
context.Top = this;
this.Line = line;
this.Column = column;
}
Expand Down

0 comments on commit ede4eff

Please sign in to comment.