RESOLVED FIXED75082
REGRESSION(r102987): Fix the filename prefix of the generated empty .h and .cpp files for [Supplemental] IDLs
https://bugs.webkit.org/show_bug.cgi?id=75082
Summary REGRESSION(r102987): Fix the filename prefix of the generated empty .h and .c...
Kentaro Hara
Reported 2011-12-22 06:05:39 PST
In bug 74481, we changed generate-bindings.pl so that it generates empty .h and .cpp files for the [Supplemental] IDLs. However, the filename prefix of those .h and .cpp files is wrong. Current behavior: generator=JS => JS*.h, JS*.cpp generator=V8 => V8*.h, V8*.cpp generator=ObjC => ObjC*.h, ObjC*.cpp generator=GObject => GObject*.h, GObject*.cpp generator=CPP => CPP*.h, CPP*.cpp Expected behavior: generator=JS => JS*.h, JS*.cpp generator=V8 => V8*.h, V8*.cpp generator=ObjC => DOM*.h, DOM*.cpp generator=GObject => WebKitDOM*.h, WebKitDOM*.cpp generator=CPP => WebDOM*.h, WebDOM*.cpp
Attachments
Patch (2.70 KB, patch)
2011-12-22 06:13 PST, Kentaro Hara
no flags
Patch (8.64 KB, patch)
2011-12-24 10:42 PST, Kentaro Hara
no flags
Patch (8.59 KB, patch)
2011-12-24 11:10 PST, Kentaro Hara
no flags
Kentaro Hara
Comment 1 2011-12-22 06:13:41 PST
Adam Barth
Comment 2 2011-12-22 09:27:58 PST
Comment on attachment 120314 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=120314&action=review > Source/WebCore/bindings/scripts/generate-bindings.pl:258 > + my $prefix = ""; > + if ($generator eq "JS") { > + $prefix = "JS"; > + } elsif ($generator eq "V8") { > + $prefix = "V8"; > + } elsif ($generator eq "ObjC") { > + $prefix = "DOM"; > + } elsif ($generator eq "GObject") { > + $prefix = "WebKitDOM"; > + } elsif ($generator eq "CPP") { > + $prefix = "WebDOM"; > + } else { > + die "Unknown generator: $generator\n"; > + } Yuck! Can we ask the generator what it's prefix should be rather than hardcoding a list of all the generator subclasses?
Kentaro Hara
Comment 3 2011-12-24 10:42:04 PST
Kentaro Hara
Comment 4 2011-12-24 11:10:55 PST
Kentaro Hara
Comment 5 2011-12-24 11:12:17 PST
(In reply to comment #2) > (From update of attachment 120314 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=120314&action=review > > Yuck! Can we ask the generator what it's prefix should be rather than hardcoding a list of all the generator subclasses? Done.
WebKit Review Bot
Comment 6 2011-12-25 22:16:32 PST
Comment on attachment 120500 [details] Patch Clearing flags on attachment: 120500 Committed r103678: <http://trac.webkit.org/changeset/103678>
WebKit Review Bot
Comment 7 2011-12-25 22:16:37 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.