Esempio n. 1
0
        public override void EnterWait_ms_command([NotNull] CrawlLangParser.Wait_ms_commandContext context)
        {
            int           amount        = Convert.ToInt32(context.wait_amount().GetText());
            WaitMsCommand waitMsCommand = new WaitMsCommand(amount, _ExecutionEngine.WaitMs);

            _CurrentBlock.Add(waitMsCommand);
        }
 public abstract override void ExitWait_ms_command([NotNull] CrawlLangParser.Wait_ms_commandContext context);