RESOLVED FIXED 7616
get all references to KJS::Node out of internal.h
https://bugs.webkit.org/show_bug.cgi?id=7616
Summary get all references to KJS::Node out of internal.h
Darin Adler
Reported 2006-03-05 11:51:34 PST
While working on removing the "Impl" suffix from class names in WebCore, I discovered a conflict between KJS::Node and WebCore::Node. This happens because KJS::Node is exposed to WebCore. But it should not be. The best fix would be to not use "internal.h" at all in WebCore. This is impractical at the moment because it's used for a number of different reasons. Instead, I factored out the only thing in "internal.h" that needs KJS::Node out into a separate file. It's the parser, and the new file is "Parser.h". This fits with our future direction for JavaScriptCore of naming files after the classes in them.
Attachments
patch with change log (49.96 KB, patch)
2006-03-05 11:53 PST, Darin Adler
mjs: review+
Darin Adler
Comment 1 2006-03-05 11:53:54 PST
Created attachment 6875 [details] patch with change log
Note You need to log in before you can comment on or make changes to this bug.