Exemplo n.º 1
0
        internal void EndScope(string ns)
        {
            IdentificationTable symbols = (IdentificationTable)namespaces [ns];

            if (symbols == null)
            {
                throw new Exception(ns + " does not exist");
            }

            symbols.EndScope();
        }
Exemplo n.º 2
0
 internal static void EndScope()
 {
     infos.EndScope();
     local_script_functions.EndScope();
 }