Jurassic.Compiler.DynamicILGenerator.UnconditionalBranch C# (CSharp) Method

UnconditionalBranch() private method

Puts the stack into an indeterminate state.
private UnconditionalBranch ( ) : void
return void
        private void UnconditionalBranch()
        {
            // Unconditional branches mean the contents of the stack are indeterminate.
            this.stackIsIndeterminate = true;
        }
DynamicILGenerator