Changeset 136261 in webkit for trunk/Source/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Nov 30, 2012, 1:09:21 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Nodes.h
r128234 r136261 47 47 class JSScope; 48 48 class ScopeNode; 49 class SourceProviderCacheItem; 49 50 50 51 typedef unsigned CodeFeatures; … … 1425 1426 FunctionNameIsInScopeToggle functionNameIsInScopeToggle() { return m_functionNameIsInScopeToggle; } 1426 1427 1428 void setFunctionStart(int functionStart) { m_functionStart = functionStart; } 1429 int functionStart() const { return m_functionStart; } 1430 1427 1431 static const bool scopeIsFunction = true; 1428 1432 … … 1435 1439 FunctionNameIsInScopeToggle m_functionNameIsInScopeToggle; 1436 1440 RefPtr<FunctionParameters> m_parameters; 1441 int m_functionStart; 1437 1442 }; 1438 1443
Note:
See TracChangeset
for help on using the changeset viewer.