コード例 #1
0
ファイル: context.cs プロジェクト: Ein/monodevelop
		public CompilerContext (ReflectionMetaImporter metaImporter, Report report)
		{
			this.meta_importer = metaImporter;
			this.report = report;

			this.attributes = new PredefinedAttributes ();
			this.root = new GlobalRootNamespace ();
		}
コード例 #2
0
		public static void Reset ()
		{
			Instance = new GlobalRootNamespace ();
		}
コード例 #3
0
ファイル: namespace.cs プロジェクト: lewurm/benchmarker
		public static void Reset ()
		{
			root_namespaces = new ListDictionary ();
			Global = new GlobalRootNamespace ();
			root_namespaces ["global"] = Global;
		}