- Timestamp:
- 08/20/08 13:23:52 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/BAL/OWBAL/Concretizations/Types/WK/BCbalValuePrivateWK.h
r438 r447 61 61 } 62 62 63 BalType type() const; 63 bool isUndefined() const; 64 bool isNull() const; 65 bool isUndefinedOrNull() const; 66 bool isBoolean() const; 64 67 bool isNumber() const; 65 68 bool isString() const; 69 bool isGetterSetter() const; 66 70 bool isObject() const; 67 71 … … 91 95 }; 92 96 93 inline BalType BalValuePrivate::type() const 94 { 95 return (BalType)m_val->type(); 97 98 inline bool BalValuePrivate::isUndefined() const 99 { 100 return m_val->isUndefined(); 101 } 102 103 inline bool BalValuePrivate::isNull() const 104 { 105 return m_val->isNull(); 106 } 107 108 inline bool BalValuePrivate::isUndefinedOrNull() const 109 { 110 return m_val->isUndefinedOrNull(); 111 } 112 113 inline bool BalValuePrivate::isBoolean() const 114 { 115 return m_val->isBoolean(); 96 116 } 97 117 … … 104 124 { 105 125 return m_val->isString(); 126 } 127 128 inline bool BalValuePrivate::isGetterSetter() const 129 { 130 return m_val->isGetterSetter(); 106 131 } 107 132
