Changeset 157615 in webkit
- Timestamp:
- Oct 17, 2013, 5:52:54 PM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
bindings/scripts/CodeGeneratorJS.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r157613 r157615 1 2013-10-17 Alexey Proskuryakov <ap@apple.com> 2 3 Don't add an include for return type of a [Custom] function in generated bindings code 4 https://bugs.webkit.org/show_bug.cgi?id=122972 5 6 Reviewed by Sam Weinig. 7 8 * bindings/scripts/CodeGeneratorJS.pm: (GenerateImplementation): Don't. 9 1 10 2013-10-17 Andreas Kling <akling@apple.com> 2 11 -
trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm
r157486 r157615 2331 2331 if ($numFunctions > 0) { 2332 2332 foreach my $function (@{$interface->functions}) { 2333 AddIncludesForTypeInImpl($function->signature->type);2334 2335 2333 my $isCustom = HasCustomMethod($function->signature->extendedAttributes); 2336 2334 my $isOverloaded = $function->{overloads} && @{$function->{overloads}} > 1; … … 2338 2336 2339 2337 next if $isCustom && $isOverloaded && $function->{overloadIndex} > 1; 2338 2339 AddIncludesForTypeInImpl($function->signature->type) unless $isCustom; 2340 2340 2341 2341 my $functionName = GetFunctionName($className, $function);
Note:
See TracChangeset
for help on using the changeset viewer.