Changeset 191145 in webkit for trunk/Source/JavaScriptCore/parser/SourceProvider.h
- Timestamp:
- Oct 15, 2015, 4:02:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/SourceProvider.h
r191135 r191145 50 50 } 51 51 52 const String& url() const { return m_url; } 53 const String& sourceURL() const { return m_sourceURL; } 54 const String& sourceMappingURL() const { return m_sourceMappingURL; } 55 52 const String& url() { return m_url; } 56 53 TextPosition startPosition() const { return m_startPosition; } 57 54 intptr_t asID() … … 66 63 67 64 private: 68 template <typename T> friend class Parser;69 70 void setSourceURL(const String& sourceURL) { m_sourceURL = sourceURL; }71 void setSourceMappingURL(const String& sourceMappingURL) { m_sourceMappingURL = sourceMappingURL; }72 65 73 66 JS_EXPORT_PRIVATE void getID(); … … 75 68 76 69 String m_url; 77 String m_sourceURL;78 String m_sourceMappingURL;79 70 TextPosition m_startPosition; 80 71 bool m_validated : 1;
Note:
See TracChangeset
for help on using the changeset viewer.