Changeset 243609 in webkit for trunk/Source/JavaScriptCore/parser/SourceCodeKey.h
- Timestamp:
- Mar 28, 2019, 10:50:19 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/parser/SourceCodeKey.h
r240511 r243609 111 111 StringView string() const { return m_sourceCode.view(); } 112 112 113 StringView host() const { return m_sourceCode.provider().url().host(); } 114 113 115 bool operator==(const SourceCodeKey& other) const 114 116 { … … 118 120 && m_functionConstructorParametersEndPosition == other.m_functionConstructorParametersEndPosition 119 121 && m_name == other.m_name 122 && host() == other.host() 120 123 && string() == other.string(); 121 124 }
Note:
See TracChangeset
for help on using the changeset viewer.