Changeset 180460 in webkit for trunk/Source/JavaScriptCore/runtime/JSObject.cpp
- Timestamp:
- Feb 20, 2015, 2:54:31 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSObject.cpp
r180173 r180460 2 2 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 3 3 * Copyright (C) 2001 Peter Kelly ([email protected]) 4 * Copyright (C) 2003 , 2004, 2005, 2006, 2008, 2009, 2012, 2013, 2014Apple Inc. All rights reserved.4 * Copyright (C) 2003-2006, 2008, 2009, 2012-2015 Apple Inc. All rights reserved. 5 5 * Copyright (C) 2007 Eric Seidel ([email protected]) 6 6 * … … 35 35 #include "GetterSetter.h" 36 36 #include "IndexingHeaderInlines.h" 37 #include "JSCatchScope.h" 37 38 #include "JSFunction.h" 39 #include "JSFunctionNameScope.h" 38 40 #include "JSGlobalObject.h" 39 41 #include "Lookup.h" … … 1619 1621 { 1620 1622 return jsCast<JSObject*>(cell); 1623 } 1624 1625 bool JSObject::isCatchScopeObject() const 1626 { 1627 return inherits(JSCatchScope::info()); 1628 } 1629 1630 bool JSObject::isFunctionNameScopeObject() const 1631 { 1632 return inherits(JSFunctionNameScope::info()); 1621 1633 } 1622 1634
Note:
See TracChangeset
for help on using the changeset viewer.