3 REGRESSION(r101445): [V8] Generated code for custom getters and setters
4 with the [Supplemental] IDL is wrong
5 https://bugs.webkit.org/show_bug.cgi?id=76034
6
7 Reviewed by NOBODY (OOPS!).
8
9 This patch fixes the class name of the implementation of custom getters
10 and setters, as follows.
11
12 Previous V8TestInterface.cpp:
13 // Attribute 'supplementalStr3'
14 {"supplementalStr3", V8TestSupplemental::supplementalStr3AccessorGetter, V8TestSupplemental::supplementalStr3AccessorSetter, ...},
15
16 New V8TestInterface.cpp:
17 // Attribute 'supplementalStr3'
18 {"supplementalStr3", V8TestInterface::supplementalStr3AccessorGetter, V8TestInterface::supplementalStr3AccessorSetter, ...},
19
20 Test: bindings/scripts/test/TestInterface.idl
21 bindings/scripts/test/TestSupplemental.idl
22
23 * bindings/scripts/CodeGeneratorV8.pm:
24 (GenerateSingleBatchedAttribute):
25 * bindings/scripts/test/V8/V8TestInterface.cpp:
26
272012-01-10 Kentaro Hara <haraken@chromium.org>
28