Beispiel #1
0
        /// <summary>
        /// using                                       = "using" namespace NL
        /// </summary>
        private UsingNode parseUsing()
        {
            if (!check(LexemType.Using))
                return null;

            var nsp = ensure(parseNamespace, ParserMessages.NamespaceExpected);
            var node = new UsingNode {Namespace = nsp.FullSignature};

            return node;
        }
Beispiel #2
0
 protected bool Equals(UsingNode other)
 {
     return string.Equals(Namespace, other.Namespace);
 }