Beispiel #1
0
        /// <summary>
        /// Create a new child Symbol context and enters it
        /// </summary>
        public void CreateContext(string id = null, CtxKey key = default(CtxKey), bool shadowing = true)
        {
            var ctx = new SymbolContext <SymbolT, CtxKey>(id, key, shadowing);

            current.AddChild(ctx);
            numContexts++;
            EnterContext(ctx);
        }