Changeset 39697 in webkit for trunk/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Jan 7, 2009, 5:46:14 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/parser/Nodes.h
r39534 r39697 2 2 * Copyright (C) 1999-2000 Harri Porten ([email protected]) 3 3 * Copyright (C) 2001 Peter Kelly ([email protected]) 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 5 5 * Copyright (C) 2007 Cameron Zwarich ([email protected]) 6 6 * Copyright (C) 2007 Maks Orlovich … … 2096 2096 2097 2097 void setFeatures(CodeFeatures features) { m_features = features; } 2098 CodeFeatures features() { return m_features; } 2099 2098 2100 bool usesEval() const { return m_features & EvalFeature; } 2099 2101 bool usesArguments() const { return m_features & ArgumentsFeature; } … … 2155 2157 } 2156 2158 2159 EvalCodeBlock& bytecodeForExceptionInfoReparse(ScopeChainNode*) JSC_FAST_CALL; 2160 2157 2161 private: 2158 2162 EvalNode(JSGlobalData*, SourceElements*, VarStack*, FunctionStack*, const SourceCode&, CodeFeatures, int numConstants) JSC_FAST_CALL; … … 2217 2221 ScopeNode::deref(); 2218 2222 } 2223 2224 CodeBlock& bytecodeForExceptionInfoReparse(ScopeChainNode* scopeChain) JSC_FAST_CALL; 2219 2225 2220 2226 private:
Note:
See TracChangeset
for help on using the changeset viewer.