示例#1
0
        internal static StyleIdentifierNode IdentifierNode(string name)
        {
            StyleIdentifierNode idNode = s_IdentifierPool.Get();

            idNode.name = name;
            idNode.type = StyleASTNodeType.Identifier;
            return(idNode);
        }
示例#2
0
 protected bool Equals(StyleIdentifierNode other)
 {
     return(string.Equals(name, other.name));
 }