コード例 #1
0
 public void Visit(EndActEntry instruction)
 {
     executeInstruction(() =>
     {
         Visit(new EndMappedProperty());
         _entries.Pop();
     });
 }
コード例 #2
0
        public void Visit(EndActEntry instruction)
        {
            var entry = _entries.Pop();

            if (entry.IsVerbose && !_showAll)
            {
                _privileges.Clear();
                return;
            }

            executeInstruction(() => _activityCodes.Add(entry.Code));
            _privileges.Clear();
        }