Changeset 175396 in webkit for trunk/Source/JavaScriptCore/parser/Nodes.h
- Timestamp:
- Oct 30, 2014, 4:50:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/Nodes.h
r174821 r175396 133 133 int lineNo() const { return m_position.line; } 134 134 int startOffset() const { return m_position.offset; } 135 int endOffset() const { return m_endOffset; } 135 136 int lineStartOffset() const { return m_position.lineStartOffset; } 136 137 const JSTextPosition& position() const { return m_position; } 138 void setEndOffset(int offset) { m_endOffset = offset; } 137 139 138 140 protected: 139 141 JSTextPosition m_position; 142 int m_endOffset; 140 143 }; 141 144
Note:
See TracChangeset
for help on using the changeset viewer.