Compare commits
2 Commits
88b0edfe6a
...
1ddbeb64c2
| Author | SHA1 | Date | |
|---|---|---|---|
| 1ddbeb64c2 | |||
| 90277406e8 |
@@ -17,6 +17,7 @@ namespace Convention.RScript.Runner
|
|||||||
{
|
{
|
||||||
depth = jumpResult.Item1;
|
depth = jumpResult.Item1;
|
||||||
lastLayer = jumpResult.Item2;
|
lastLayer = jumpResult.Item2;
|
||||||
|
context.CurrentRuntimePointer = target;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -267,9 +267,16 @@ namespace Convention.RScript
|
|||||||
|
|
||||||
public int StepCount { get; private set; }
|
public int StepCount { get; private set; }
|
||||||
|
|
||||||
|
#if DEBUG
|
||||||
|
public List<RScriptSentence> StepStack = new();
|
||||||
|
#endif
|
||||||
|
|
||||||
internal object RunNextStep(ExpressionParser parser)
|
internal object RunNextStep(ExpressionParser parser)
|
||||||
{
|
{
|
||||||
StepCount++;
|
StepCount++;
|
||||||
|
#if DEBUG
|
||||||
|
StepStack.Add(CurrentSentence);
|
||||||
|
#endif
|
||||||
var sentence = CurrentSentence;
|
var sentence = CurrentSentence;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user