Пример #1
0
		private Identifier([SuppressMessage("Microsoft.Globalization", "CA1303")] string text, IdentifierFlags flags)
		{
			if (text == null)
				throw ExceptionBuilder.ArgumentNull("text");

			_text = text;
			_flags = flags;
		}
Пример #2
0
        private Identifier([SuppressMessage("Microsoft.Globalization", "CA1303")] string text, IdentifierFlags flags)
        {
            if (text == null)
            {
                throw ExceptionBuilder.ArgumentNull("text");
            }

            _text  = text;
            _flags = flags;
        }
Пример #3
0
 public static bool IsExternOrAbstract(IdentifierFlags Flags)
 {
     return((Flags & IdentifierFlags.Extern) != 0 || (Flags & IdentifierFlags.Abstract) != 0);
 }
Пример #4
0
 public FlagModifier(CodeString Code, IdentifierFlags Flags)
     : base(Code)
 {
     this.Flags = Flags;
 }