Changeset 183935 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.h
- Timestamp:
- May 7, 2015, 11:01:46 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.h
r183615 r183935 1453 1453 } 1454 1454 1455 ALWAYS_INLINE JSObject* Register::function() const 1456 { 1457 if (!jsValue()) 1458 return 0; 1455 ALWAYS_INLINE JSObject* Register::object() const 1456 { 1459 1457 return asObject(jsValue()); 1460 1458 } 1461 1459 1462 ALWAYS_INLINE Register Register::withCallee(JSObject* callee) 1463 { 1464 Register r; 1465 r = JSValue(callee); 1466 return r; 1460 ALWAYS_INLINE Register& Register::operator=(JSObject* object) 1461 { 1462 u.value = JSValue::encode(JSValue(object)); 1463 return *this; 1467 1464 } 1468 1465
Note:
See TracChangeset
for help on using the changeset viewer.