Blamite.Blam.Scripting.Compiler.ScriptCompiler.EnterCond C# (CSharp) Метод

EnterCond() публичный Метод

public EnterCond ( HS_Gen1Parser.CondContext context ) : void
context HS_Gen1Parser.CondContext
Результат void
        public override void EnterCond(HS_Gen1Parser.CondContext context)
        {
            if (_debug)
            {
                _logger.Cond(context, CompilerContextAction.Enter);
            }

            // Tell the groups what type to expect.
            _condReturnType = _expectedTypes.PopType();

            // Push the index to the first group, so that we can open it later on.
            _condIndeces.Push(_expressions.Count);
        }