Reviewed by Eric Seidel.
Add export symbols to parser headers.
https://bugs.webkit.org/show_bug.cgi?id=27551
* parser/SourceProviderCache.h:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@88374
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
Reviewed by Eric Seidel.
+ Add export symbols to parser headers.
+ https://bugs.webkit.org/show_bug.cgi?id=27551
+
+ * parser/SourceProviderCache.h:
+
+2011-06-08 Kevin Ollivier <kevino@theolliviers.com>
+
+ Reviewed by Eric Seidel.
+
Add export symbols to interpreter headers.
https://bugs.webkit.org/show_bug.cgi?id=27551
class SourceProviderCache {
public:
SourceProviderCache() : m_contentByteSize(0) {}
- ~SourceProviderCache();
+ JS_EXPORT_PRIVATE ~SourceProviderCache();
- void clear();
- unsigned byteSize() const;
+ JS_EXPORT_PRIVATE void clear();
+ JS_EXPORT_PRIVATE unsigned byteSize() const;
void add(int sourcePosition, PassOwnPtr<SourceProviderCacheItem>, unsigned size);
const SourceProviderCacheItem* get(int sourcePosition) const { return m_map.get(sourcePosition); }