Show
Ignore:
Timestamp:
08/20/08 13:23:52 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35853

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/BAL/OWBAL/Concretizations/Types/WK/BCbalValuePrivateWK.h

    r438 r447  
    6161        } 
    6262 
    63         BalType type() const; 
     63        bool isUndefined() const; 
     64        bool isNull() const; 
     65        bool isUndefinedOrNull() const; 
     66        bool isBoolean() const; 
    6467        bool isNumber() const; 
    6568        bool isString() const; 
     69        bool isGetterSetter() const; 
    6670        bool isObject() const; 
    6771 
     
    9195}; 
    9296 
    93 inline BalType BalValuePrivate::type() const 
    94 
    95     return (BalType)m_val->type(); 
     97 
     98inline bool BalValuePrivate::isUndefined() const 
     99
     100    return m_val->isUndefined(); 
     101
     102 
     103inline bool BalValuePrivate::isNull() const 
     104
     105    return m_val->isNull(); 
     106
     107 
     108inline bool BalValuePrivate::isUndefinedOrNull() const 
     109
     110    return m_val->isUndefinedOrNull(); 
     111
     112 
     113inline bool BalValuePrivate::isBoolean() const 
     114
     115    return m_val->isBoolean(); 
    96116} 
    97117 
     
    104124{ 
    105125    return m_val->isString(); 
     126} 
     127 
     128inline bool BalValuePrivate::isGetterSetter() const 
     129{ 
     130    return m_val->isGetterSetter(); 
    106131} 
    107132