コード例 #1
0
        internal void EndScope(string ns)
        {
            IdentificationTable symbols = (IdentificationTable)namespaces [ns];

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

            symbols.EndScope();
        }
コード例 #2
0
ファイル: TypeManager.cs プロジェクト: mayatforest/Refractor
 internal static void EndScope()
 {
     infos.EndScope();
     local_script_functions.EndScope();
 }