Beispiel #1
0
        internal void BeginScope(string ns, bool catchScope)
        {
            IdentificationTable symbols = (IdentificationTable)namespaces [ns];

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

            symbols.BeginScope(catchScope);
        }
Beispiel #2
0
 internal static void BeginScope()
 {
     infos.BeginScope();
     local_script_functions.BeginScope();
 }