Changeset 167964 in webkit for trunk/Source/JavaScriptCore/parser/SourceCode.h
- Timestamp:
- Apr 29, 2014, 3:23:17 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/SourceCode.h
r165676 r167964 104 104 int length() const { return m_endChar - m_startChar; } 105 105 106 SourceCode subExpression(unsigned openBrace, unsigned closeBrace, int firstLine, int startColumn) ;106 SourceCode subExpression(unsigned openBrace, unsigned closeBrace, int firstLine, int startColumn) const; 107 107 108 108 private: … … 119 119 } 120 120 121 inline SourceCode SourceCode::subExpression(unsigned openBrace, unsigned closeBrace, int firstLine, int startColumn) 121 inline SourceCode SourceCode::subExpression(unsigned openBrace, unsigned closeBrace, int firstLine, int startColumn) const 122 122 { 123 123 ASSERT(provider()->source()[openBrace] == '{');
Note:
See TracChangeset
for help on using the changeset viewer.