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.h

    r243 r447  
    3737class BalValuePrivate; 
    3838 
    39 enum BalType { 
    40     UnspecifiedType   = 0, 
    41     NumberType        = 1, 
    42     BooleanType       = 2, 
    43     UndefinedType     = 3, 
    44     NullType          = 4, 
    45     StringType        = 5, 
    46     ObjectType        = 6, 
    47     GetterSetterType  = 7 
    48 }; 
    49  
    5039class BalValue { 
    5140    public: 
     
    5443        ~BalValue(); 
    5544 
    56         BalType type() const; 
     45        bool isUndefined() const; 
     46        bool isNull() const; 
     47        bool isUndefinedOrNull() const; 
     48        bool isBoolean() const; 
    5749        bool isNumber() const; 
    5850        bool isString() const; 
     51        bool isGetterSetter() const; 
    5952        bool isObject() const; 
    6053