Пример #1
0
        public SimpleMode(NvdlIncludedMode mode, NvdlCompileContext ctx)
        {
            FillLocation(mode);

            // name doesn't matter here.
            SimplifyPhase1(mode, ctx);
        }
Пример #2
0
        private NvdlIncludedMode ReadIncludedMode()
        {
            NvdlIncludedMode el = new NvdlIncludedMode();

            FillLocation(el);
            el.Name = reader.GetAttribute("name");
            ReadModeCommon(el);
            return(el);
        }
Пример #3
0
		private NvdlIncludedMode ReadIncludedMode ()
		{
			NvdlIncludedMode el = new NvdlIncludedMode ();
			FillLocation (el);
			el.Name = reader.GetAttribute ("name");
			ReadModeCommon (el);
			return el;
		}
Пример #4
0
		public SimpleMode (NvdlIncludedMode mode, NvdlCompileContext ctx)
		{
			FillLocation (mode);

			// name doesn't matter here.
			SimplifyPhase1 (mode, ctx);
		}