Esempio n. 1
0
ASTType *ASTUserType::getBaseType(){
    Identifier *base = getBaseIdentifier();
    if(base) {
        return base->getDeclaredType();
    }
    return NULL;
}
Esempio n. 2
0
 /**
  * Retrieve the base identifier for the most recently
  * included stylesheet.  This will return the same value
  * as getBaseIdentifier(), if no include is being
  * processed.
  *
  * @return string for base identifier
  */
 const XalanDOMString&
 getCurrentIncludeBaseIdentifier() const
 {
     return m_includeStack.empty() == true ? getBaseIdentifier() : m_includeStack.back();
 }