Jint.ExecutionVisitor.ResetContinueIfPresent C# (CSharp) Method

ResetContinueIfPresent() protected method

Called by a loop to stop the "continue" keyword escalation
protected ResetContinueIfPresent ( string label ) : void
label string
return void
        protected void ResetContinueIfPresent(string label)
        {
            if (continueStatement != null && continueStatement.Label == label) {
                continueStatement = null;
            }
        }