Changeset 249187 in webkit
- Timestamp:
- Aug 27, 2019, 6:22:37 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
bindings/scripts/CodeGeneratorJS.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r249183 r249187 1 2019-08-27 Said Abou-Hallawa <sabouhallawa@apple.com> 2 3 Unreviewed. Build fix after r249175. 4 5 Fix the condition which generates the declaration of vm in 6 GenerateGetOwnPropertySlotByIndex. 7 8 * bindings/scripts/CodeGeneratorJS.pm: 9 (GenerateGetOwnPropertySlotByIndex): 10 1 11 2019-08-27 Justin Fan <justin_fan@apple.com> 2 12 -
trunk/Source/WebCore/bindings/scripts/CodeGeneratorJS.pm
r249175 r249187 737 737 push(@$outputArray, "bool ${className}::getOwnPropertySlotByIndex(JSObject* object, ExecState* state, unsigned index, PropertySlot& slot)\n"); 738 738 push(@$outputArray, "{\n"); 739 if ($namedGetterOperation || $interface->extendedAttributes->{Plugin} ) {739 if ($namedGetterOperation || $interface->extendedAttributes->{Plugin} || ($indexedGetterOperation && $indexedGetterOperation->extendedAttributes->{MayThrowException})) { 740 740 push(@$outputArray, " VM& vm = state->vm();\n"); 741 741 }
Note:
See TracChangeset
for help on using the changeset viewer.