Changeset 212692 in webkit for trunk/Source/JavaScriptCore/interpreter/CallFrame.h
- Timestamp:
- Feb 20, 2017, 5:51:05 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/interpreter/CallFrame.h
r212665 r212692 2 2 * Copyright (C) 1999-2001 Harri Porten ([email protected]) 3 3 * Copyright (C) 2001 Peter Kelly ([email protected]) 4 * Copyright (C) 2003 , 2007-2008, 2011, 2013-2016Apple Inc. All rights reserved.4 * Copyright (C) 2003-2017 Apple Inc. All rights reserved. 5 5 * 6 6 * This library is free software; you can redistribute it and/or … … 120 120 AtomicStringTable* atomicStringTable() const { return vm().atomicStringTable(); } 121 121 const CommonIdentifiers& propertyNames() const { return *vm().propertyNames; } 122 const MarkedArgumentBuffer& emptyList() const { return *vm().emptyList; }122 const ArgList& emptyList() const { return *vm().emptyList; } 123 123 Interpreter* interpreter() { return vm().interpreter; } 124 124 Heap* heap() { return &vm().heap; }
Note:
See TracChangeset
for help on using the changeset viewer.