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/Common/BCbal_objectCommon.cpp

    r288 r447  
    5454} 
    5555 
    56 BalType BalValue::type() const 
    57 
    58     return d->type(); 
     56bool BalValue::isUndefined() const 
     57
     58    return d->isUndefined(); 
     59
     60 
     61bool BalValue::isNull() const 
     62
     63    return d->isNull(); 
     64
     65 
     66bool BalValue::isUndefinedOrNull() const 
     67
     68    return d->isUndefinedOrNull(); 
     69
     70 
     71bool BalValue::isBoolean() const 
     72
     73    return d->isBoolean(); 
    5974} 
    6075 
     
    6782{ 
    6883    return d->isString(); 
     84} 
     85 
     86bool BalValue::isGetterSetter() const 
     87{ 
     88    return d->isGetterSetter(); 
    6989} 
    7090